Multi-agent DAG orchestration, purpose-built for enterprise engineering teams Learn more →

Quickstart

Last updated 2026-05-24·4 min read
Pre-betaCendriix has no GA customers yet. This guide reflects the design-partner preview, not every CLI command or workflow slug in older docs is shipped.

Get from access request to your first orchestrated run using the web app. CLI automation and npm install come after the CLI package publishes.

1

Request design-partner access

Apply as a design partner or book a walkthrough. We provision workspaces manually during pre-beta, there is no self-serve signup yet.

bash
curl -X POST https://api.example.com/v1/intake/access-request \
  -H "Content-Type: application/json" \
  -d '{"name":"…","email":"…","company":"…","message":"Design partner request"}'
2

Sign in to the app

Once provisioned, sign in at app.example.com with Cognito (email invite). Cendra, the run composer, and approval gates live in the Director workspace.

3

Connect cloud (preview)

BYO-cloud uses your AWS account. In preview, connect via the app Settings → Cloud providers UI, which calls POST /v1/cloud-providers. CloudFormation one-click templates and CLI workspace cloud connect are on the roadmap.

No source code leaves your VPCAgents execute in your cloud; the control plane stores metadata and audit pointers only.
4

Trigger a run

From the app, file a need in Cendra or start a run from the Runs panel. The API equivalent is POST /v1/runs with a workflow your workspace supports. Workflows like ship-from-ticket are design goals, confirm available slugs with your partner contact.

bash
curl -X POST https://api.example.com/v1/runs \
  -H "Authorization: Bearer <jwt>" \
  -H "Content-Type: application/json" \
  -d '{"workflow":"<your-workflow>","metadata":{"source":"quickstart"}}'

What's next

Become a design partner