Minimal bootstrap for the autonomous LLM development platform. No BS, just the core flow.
# Install dependencies
npm install
# Set environment variables
export CLAUDE_API_KEY="your-anthropic-api-key"
export TERRAGON_AUTH="JTgr3pSvWUN2bNmaO66GnTGo2wrk1zFf.fW4Qo8gvM1lTf%2Fis9Ss%2FJOdlSKJrnLR0CapMdm%2Bcy0U%3D"
# Copy sacred documents to your project
cp /path/to/CLAUDE.md .# Run a task through the system
npm run dev task "Add Discord bot integration"
# Initialize a new project
npm run dev init- Request → Classification → Validation
- Task decomposition into checkpoints
- Human approval gate
- Checkpoint execution via Claude
- Pass/fail testing
- Merge to production state
- Meta-Agent: Request classification and task decomposition
- Document Manager: Project.md, Task.md, Checkpoint.md handling
- Claude Proxy: Integration with Claude execution engine
- Principle Enforcer: Sacred document validation
- Simple CLI: Human approval gates
- All 72 helper agents (add them using the system itself)
- Fancy UI (build it through the system)
- Complex dependency graphs
- Automated retries and escalations
- Discord bot, voice input, etc.
Use the bootstrap to add its first enhancement:
npm run dev task "Add validation system for cross-document coherence"This will create the task, decompose it into checkpoints, and execute through Claude.
Every feature gets added through the system itself. No cowboy coding.