Claude-code-blueprint sprint-plan
MUST use when user describes a multi-step feature to build, says 'let's build', 'new project', 'let's implement', or when a task clearly requires more than 3 steps and no plan exists yet. Do NOT trigger for simple additions like adding a comment, renaming a variable, or single-file changes.
install
source · Clone the upstream repo
git clone https://github.com/faizkhairi/claude-code-blueprint
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/faizkhairi/claude-code-blueprint "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/sprint-plan" ~/.claude/skills/faizkhairi-claude-code-blueprint-sprint-plan && rm -rf "$T"
manifest:
skills/sprint-plan/SKILL.mdsource content
Create a sprint plan for: $ARGUMENTS
- Analyze the requirement: Understand scope, constraints, dependencies
- Check existing code: Search codebase for related implementations that can be reused
- Break into tasks:
- Each task should be independently deliverable
- Include file paths that will be modified or created
- Estimate size: S (< 1hr), M (1-4hr), L (4-8hr), XL (> 1 day)
- Sequence tasks: Identify dependencies, mark blocking tasks, find parallelizable work
- Identify risks: What could go wrong? What needs clarification?
- Output format:
Sprint Plan: [Feature Name]
Tasks
| # | Task | Size | Depends On | Files |
|---|---|---|---|---|
| 1 | ... | S | - | path/to/file |
Risks
- [Risk description and mitigation]
Definition of Done
- All tasks completed
- Tests written and passing
- Code reviewed
- Documentation updated
- No security vulnerabilities introduced