Next
Determine the single most important next action based on priority and dependency analysis. Use when user asks "what should I do next", "/next", or at session startup to orient work on the highest-priority unblocked task.From its SKILL.md
npx -y skills add testfree2023/airein --skill nextAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.5 KB, 308 tokens by cl100k_base, as published. Nobody here has run it
What's Next?
Analyze the project state and recommend the single most important next action.
Process
- Read
docs/roadmap.mdto understand active work streams - For each active plan, read
docs/plans/P{NNN}-{slug}/progress.mdfor status and blockers - Check
docs/roadmap.md## Issues section for unresolved high-priority bugs - Determine the next action based on these rules:
- Blockers first: If any active plan is blocked by a bug, fix the bug
- Highest priority: Work on the plan with highest priority that is not blocked
- Dependencies: If Plan A blocks Plan B, finish A's current stage before starting B
- Quick wins: If a bug is trivial and a plan stage is complex, mention the bug as an alternative
Output
## Next Action
**Work on**: [Plan ID or Issue ID]
**Action**: [Specific next step]
**Why**: [Reasoning — priority, dependency, or blocker resolution]
**File to read first**: [Which progress.md, tasks.md, or code file to start with]
Rules
- Only recommend ONE action, not a list
- Be specific: "Implement stage 2 of P001" not "Continue working on auth"
- Include the file path so the session can start reading immediately
- Prefer
progress.mdas the entry point for plan status
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.