Quickstart
Get from access request to your first orchestrated run using the web app. CLI automation and npm install come after the CLI package publishes.
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.
curl -X POST https://api.example.com/v1/intake/access-request \
-H "Content-Type: application/json" \
-d '{"name":"…","email":"…","company":"…","message":"Design partner request"}'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.
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.
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.
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
- API reference, live Fastify routes
- CLI reference, target commands (package not on npm yet)
- Security, subprocessors, retention, disclosure
- Design partners, why join before GA