Next Task Resolver
Determine what should be built next in the SwarmLLM project and begin working on it.
Instructions
Assess state (use haiku-model subagents in parallel for speed):
- Spawn Explore agent: scan
src/tree to inventory existing files - Read
docs/plans/NEXT_STEPS.mdfor the prioritized roadmap - Run
cargo checkto verify current compilation state
- Spawn Explore agent: scan
Identify the highest-priority incomplete item from NEXT_STEPS.md
Report what you're about to build:
Task: [description] Files: [paths] Dependencies: [what must exist first]Implement the task following CLAUDE.md conventions
- Read
docs/ARCHITECTURE.mdfor current architecture context - Use
feature-dev:code-architectagent (model: sonnet) for complex module design if the task involves 3+ interconnected files - After writing each file, run
cargo check
- Read
After implementation:
- Run
cargo checkto verify compilation - Run
cargo clippy -- -D warnings - Run
cargo test - Report what was completed and what the NEXT task would be
- Run