Full programmatic
control.
Everything in the dashboard is available via CLI and API. Automate workflows, integrate with CI/CD, and build custom tooling on top of the platform.
Everything in the dashboard is available via CLI and API. Automate workflows, integrate with CI/CD, and build custom tooling on top of the platform.
$ orqi jobs create \
--title "Add auth" \
--project api
✓ Job created: JOB-042
✓ Workflow: feature
✓ Tracking...
$ orqi jobs list --status running
ID STATUS TITLE
JOB-042 RUNNING Add auth
JOB-039 DONE Fix login
POST /api/jobs 201
Content-Type: application/json
X-Api-Key: orq_••••••••
{
"title": "Add auth",
"project": "api",
"workflow": "feature"
}
← 201 Created
{
"id": "JOB-042",
"status": "pending"
}
[WS] connected
[WS] subscribe: JOB-042
[WS] job:pending
[WS] job:enriching
[WS] job:decomposing
[WS] job:executing
[WS] minijob:running code-ts
[WS] tool:file_read
[WS] tool:shell_exec
[WS] tool:git_commit
[WS] minijob:completed
[WS] job:delivering
[WS] job:completed ✓
orqi jobs create submits a job and lists running jobs $ orqi job create "Fix login bug"
$ orqi job list --status running
$ orqi job get abc-123
$ orqi types list
Full platform control from your terminal via the @orqista/cli package.
POST /api/jobs
GET /api/agents
PUT /api/config
GET /api/health
Complete programmatic access to all platform features.
subscribe: job.{{id}}
event: tool_executed
event: artifact_produced
Subscribe to job execution events as they happen — tool calls, artifact production, approval requests. Every state change delivered the moment it occurs.
A typed TypeScript client library powers both the CLI and dashboard. Use it in your own tools for consistent, type-safe API access with full autocompletion.
Related Features
Request access to start integrating Orqista into your engineering workflows.
Request Early Access