Git-based CLI tool for coordinating parallel AI coding agents. Bash core + Node.js for task logic. Zero production dependencies.
npm test— run all testsnpm run lint:sh— shellcheck all bash scripts
bin/coordinator.sh— CLI entrypoint, dispatches subcommandsbin/agent-loop.sh— per-agent process looplib/tasks.js— task CRUD, dependency checking, claiminglib/prompt-builder.js— build prompts from task JSON + CLAUDE.mdtests/— tests usingnode:testbuilt-in
- Bash scripts: use
set -euo pipefail, quote all variables - Node.js: no external dependencies, use only built-ins
- Tests: use
node:testandnode:assert - All functions must be tested before implementation is considered complete