vibecoding for pros.
orchestrate your development workflow end to end —
define what you want built, agents handle the rest.
define multi-step workflows that match how your team works. agents follow the pipeline automatically, step by step.
each task runs in its own isolated environment. no conflicts, no pollution. multiple agents work in parallel without stepping on each other.
agents build up project knowledge and propose decisions as they work. your codebase learns and improves over time.
track tasks, agents, and progress in real time. every log, every action, every decision — visible and searchable.
every step is logged and verified. quality checks, test results, and artifacts are recorded on each task before it moves forward.
completed work gets analyzed and feeds back into new tasks — creating a self-perpetuating improvement cycle.
describe what you want built. attach a workflow to define how it gets done.
an available agent claims the task, works in isolation, and delivers results with full logs.
the workflow advances through quality checks and review. nothing lands without passing your gates.
completed work feeds back as knowledge. the next cycle starts smarter than the last.
implement → review → merge
the default development workflow. agent implements, human reviews, code ships.
implement → review → merge → dream
self-improving. after shipping, the agent posts follow-up task suggestions based on what it learned.
scope → gather → synthesize → document
research and documentation. scopes the problem, gathers information, synthesizes findings, and writes it up.
{
"title": "Standard Lifecycle",
"trigger_description": "implement → review → merge",
"steps": [
{
"name": "implement",
"instruction": "Implement the feature or fix described in the task spec.",
"budget": 12.0,
"allowed_tools": "full"
},
{
"name": "review",
"instruction": "Review the implementation for correctness and test coverage.",
"budget": 5.0,
"allowed_tools": "readonly"
},
{
"name": "merge",
"instruction": "Merge the working branch into main after a passing review.",
"budget": 2.5,
"allowed_tools": "merge"
}
]
}
each step configures model, budget, and tool access. post this to /api/v1/diraigent/playbooks to create it.
most ai coding tools are either unstructured — “just let the ai go” — or black-box saas you can’t inspect. diraigent gives you:
runs on your infra, your repos, your rules. your data never leaves your environment.
playbooks define repeatable multi-step workflows with a validated state machine. agents follow the pipeline — no improvising.
full trail of what every agent did, why, and what it produced. every action logged and searchable.
run diraigent on your own infrastructure in minutes.
works best with claude code —
the orchestra spawns claude code workers in isolated git worktrees for each task.
curl -LO https://www.diraigent.com/get/docker-compose.yml
curl -LO https://www.diraigent.com/get/.env.example
cp .env.example .env # set ANTHROPIC_API_KEY, GIT_REPO_URL
docker compose up -d # start api + web + postgres + nats
docker compose --profile agent up -d # start the orchestra
services:
postgres:
image: postgres:18-alpine
environment:
POSTGRES_DB: diraigent
POSTGRES_USER: diraigent
POSTGRES_PASSWORD: diraigent
ports:
- "5433:5432"
volumes:
- pgdata:/var/lib/postgresql/data
nats:
image: nats:latest
command: ["-js", "-sd", "/data"]
ports:
- "4222:4222"
api:
image: diraigent/api:latest
ports:
- "8082:8082"
environment:
HOST: 0.0.0.0
PORT: 8082
DATABASE_URL: postgres://diraigent:diraigent@postgres:5432/diraigent
DEV_USER_ID: ${DEV_USER_ID:-}
AUTH_JWKS_URL: ${AUTH_JWKS_URL:-}
NATS_URL: nats://nats:4222
CORS_ORIGINS: ${CORS_ORIGINS:-http://localhost:8080}
depends_on:
postgres: { condition: service_healthy }
nats: { condition: service_started }
web:
image: diraigent/web:latest
ports:
- "8080:80"
depends_on:
api: { condition: service_healthy }
orchestra:
image: diraigent/orchestra:latest
environment:
AGENT_ID: ${AGENT_ID}
ANTHROPIC_API_KEY: ${ANTHROPIC_API_KEY}
GIT_REPO_URL: ${GIT_REPO_URL}
DIRAIGENT_API: http://api:8082/api/v1/diraigent
NATS_URL: nats://nats:4222
volumes:
- orchestra-repo:/repo
depends_on:
api: { condition: service_healthy }
profiles:
- agent
volumes:
pgdata:
nats-data:
orchestra-repo: