You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Autonomous Parallel EXecution β an AI-powered development orchestrator for large codebases. Takes a task in natural language, decomposes it into subtasks, executes them in parallel via LLM-powered workers, validates results, and commits changes.
π― Recent Updates (Feb 2026)
Git Changes UI β
Real-time monitoring of git status, branches, commits
# Start all services
docker compose up -d
# Check status
docker compose ps
# View logs
docker compose logs -f orchestrator
Run with Just
# Start system
just orch-up
# Run a task
just orch-run "Add description field to Tag model"# Index codebase into Qdrant
just orch-index
# View logs
just orch-logs orchestrator
# Stop
just orch-down
CLI Usage
# Full execution
python -m big_brain "Add CRUD endpoints for Playlist"# Dry run (analyze + decompose only)
python -m big_brain "Refactor auth module" --dry-run
# Verbose logging
python -m big_brain "Fix N+1 query in users page" --verbose
Services & Ports
Service
Container
Port
Health Check
Qdrant
orchestrator-qdrant
:7350
GET /readyz
MCP Server
orchestrator-hands
:7351
GET /health
Orchestrator API
orchestrator-brain
:7352
GET /health
UI
orchestrator-eye
:7353
GET /
API Endpoints
Route
Description
Core
GET /health
Health check
POST /tasks
Create a new task (with optional require_review)
GET /tasks
List tasks
GET /tasks/{id}
Get task details
POST /runs
Start a task run
GET /runs
List runs
GET /runs/{id}
Get run details
GET /stream/{run_id}
SSE stream for run progress
GET /skills
List available skills
GET /stats
Get usage statistics
GET /graph
Get graph structure
Graph Editor
POST /tasks/{id}/approve
Approve/reject plan
PUT /tasks/{id}/subtasks/{sid}
Update subtask
POST /tasks/{id}/subtasks
Create subtask
DELETE /tasks/{id}/subtasks/{sid}
Delete subtask
PUT /tasks/{id}/waves
Reorganize waves
Database
GET /database/stats
Database size, checkpoints, threads
GET /database/details
Thread list with checkpoint counts
POST /database/cleanup
Cleanup old checkpoints
Git Operations
GET /git/status
Git status (branch, files, ahead/behind)
GET /git/diff/{file}
Unified diff for file
GET /git/branches
List all branches
GET /git/commits
Commit history
GET /git/branch-diff
Changes in branch vs base
POST /git/checkout
Switch branch
DELETE /git/branches/{name}
Delete branch
GET /git/stash/list
List stash entries
POST /git/stash/push
Create stash
POST /git/stash/pop
Pop stash
POST /git/stash/apply
Apply stash
DELETE /git/stash/drop
Drop stash
Configuration
All configuration is via environment variables with sensible defaults: