Multi-agent orchestration for CLI coding agents. Spawn parallel agents, verify their work, and merge results.
This project uses Bernstein for multi-agent orchestration. When working on tasks:
- State lives in `.sdd/`, not in agent memory. Read files there for context.
- Each agent gets a git worktree. Commit your work; the orchestrator merges it.
- The task server runs at http://127.0.0.1:8052. Use it to report progress.
- Complete tasks by calling POST /tasks/{id}/complete with a result summary.
- If blocked, call POST /tasks/{id}/block with a reason.
- Do not modify files outside your assigned scope (check task owned_files).
- Run tests before marking done. The janitor will verify your work.