| name | next-steps |
| description | Produce a prioritized, actionable task list (<=20) from a repo summary with acceptance criteria, complexity, impact, and suggested branches/PRs. |
SKILL: next-steps
Summary
Generate a comprehensive but concise set (no more than 20) of prioritized next steps from summary.json. Items should cover fixes, enhancements, refactors, new features, and documentation. Each item must include acceptance criteria, a complexity score (1-5), an impact level (low|medium|high), and suggested branch/commit messages.
When to run
- Immediately after
review-repo completes.
Inputs
summary_path (required)
allow_insert_todos (bool, default: false)
allow_execute (bool, default: false)
max_tasks (int, default: 20)
Outputs
run/skills/next-steps/<timestamp>/tasks.json
run/skills/next-steps/<timestamp>/tasks.txt
- Optional SQL inserts into the
todos table when allowed.
Task schema (example)
{ "id":"add-ci-checks", "title":"Add CI checks to run scripts/setup.sh", "description":"...", "priority":1, "complexity":2, "impact":"medium", "files":["scripts/setup.sh"], "branch":"chore/add-ci-checks", "commit_msg":"chore(ci): add workflow to run scripts/setup.sh" }
Guidelines
- Produce a comprehensive but concise list (<= 20 items) that spans fixes, enhancements, refactors, new features, and documentation improvements.
- Each item must include: acceptance criteria, complexity (1-5), impact (low|medium|high), priority, affected files or globs, suggested branch name and commit message.
- Do not include time or duration estimates.