Documentation
README
Agent Orchestration Rules
When the user asks to implement something, use implementation agents to preserve main context.
The Pattern
Wrong - burns context:
Main: Read files โ Understand โ Make edits โ Report
(2000+ tokens consumed in main context)
Right - preserves context:
Main: Spawn agent("implement X per plan")
โ
Agent: Reads files โ Understands โ Edits โ Tests
โ
Main: Gets summary (~200 tokens)
When to Use Agents
This is the opening of the README. Read the full README on GitHub.