Next
Light as air, firm as law. Spec-driven AI coding with hooks.
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.
2 things to look at
- 28 days oldThe repository was created 28 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 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.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.5 KB, 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