next-task
SolidDetermine and start the next task in the SwarmLLM build sequence
AI & Automation 27 stars
7 forks Updated today Apache-2.0
Install
Quality Score: 85/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Next Task Resolver
Determine what should be built next in the SwarmLLM project and begin working on it.
## Instructions
1. **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.md` for the prioritized roadmap
- Run `cargo check` to verify current compilation state
2. Identify the highest-priority incomplete item from NEXT_STEPS.md
3. Report what you're about to build:
```
Task: [description]
Files: [paths]
Dependencies: [what must exist first]
```
4. Implement the task following CLAUDE.md conventions
- Read `docs/ARCHITECTURE.md` for current architecture context
- Use `feature-dev:code-architect` agent (model: sonnet) for complex module design if the task involves 3+ interconnected files
- After writing each file, run `cargo check`
5. After implementation:
- Run `cargo check` to verify compilation
- Run `cargo clippy -- -D warnings`
- Run `cargo test`
- Report what was completed and what the NEXT task would be
Details
- Author
- enapt
- Repository
- enapt/SwarmLLM
- Created
- 6 months ago
- Last Updated
- today
- Language
- Rust
- License
- Apache-2.0
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
build-phase
Execute a specific SwarmLLM build phase from the dev spec
27 Updated today
enapt AI & Automation Listed
implement-next
Use after synthesis to dispatch the next ready task from the TASKS.md ledger through one subagent-driven implementation cycle, one task per invocation.
3 Updated 1 weeks ago
jsuvic AI & Automation Listed
implement-next-task
Select, claim, and set up the next eligible local task, then implement it through tdd-worker with TDD and focused validation while minimizing parent-context growth and avoidable wall time. Stops before review; the user then runs task-review, review-fix-worker, and finish-task manually.
18 Updated 1 months ago
SrdjanCoric