From anvil
Break a ROADMAP phase into a sprint with granular tickets by dispatching the pm-agent
How this skill is triggered — by the user, by Claude, or both
Slash command
/anvil:sprintThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a sprint from a ROADMAP phase.
Create a sprint from a ROADMAP phase.
phase (required) — the target phase by name, number, or prefix (e.g., MVP, 2, Phase 2, Auth System)Read docs/anvil/config.yml. If it doesn't exist:
"Anvil isn't configured for this project yet. Run
/anvil:initfirst."
Stop and wait.
Read ROADMAP.md at the project root. If it doesn't exist:
"No ROADMAP.md found. Run
/anvil:roadmapfirst to create the project roadmap."
Stop and wait.
Match the user's argument against phase names, numbers, and prefixes. If ambiguous, ask for clarification.
Look in docs/anvil/sprints/ for a directory matching this phase. If one exists:
"A sprint already exists for this phase at
docs/anvil/sprints/{dir}/. Do you want to regenerate it (this will overwrite existing tickets)?"
Stop and wait.
Read git.branch_prefix from config (default: feature/). Create a feature branch:
git checkout -b {branch_prefix}phase-{slug}
Where {slug} is the phase name in lowercase kebab-case.
Dispatch the pm-agent as a sub-agent with:
docs/anvil/config.ymlThe pm-agent will explore the codebase, create tickets, and write the sprint README.
After the pm-agent completes, present to the user:
git add docs/anvil/sprints/{directory}/
git commit -m "chore(sprint): generate {phase-name} sprint tickets"
npx claudepluginhub olino3/anvil --plugin anvilOrchestrates a full development sprint cycle from planning through PR. Use when advancing a project with automated multi-skill coordination.
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.