Developer Tools

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.

Request Access
CLI

$ 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

REST API

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"

}

WEBSOCKET LIVE

[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 ✓

CLI command typedorqi jobs create submits a job and lists running jobs
REST API responds — POST /api/jobs returns 201 with the new job ID and status
WebSocket streams events — live status updates scroll as mini-jobs execute and complete

CLI

$ 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.

REST API

POST /api/jobs

GET /api/agents

PUT /api/config

GET /api/health

Complete programmatic access to all platform features.

Live Event Stream

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.

Shared typed API client

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.

Build on the platform

Request access to start integrating Orqista into your engineering workflows.

Request Early Access