sprint-planlisted
Install: claude install-skill lethilu4796/claude-code-blueprint
Create a sprint plan for: $ARGUMENTS
1. **Analyze the requirement**: Understand scope, constraints, dependencies
2. **Check existing code**: Search codebase for related implementations that can be reused
3. **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)
4. **Sequence tasks**: Identify dependencies, mark blocking tasks, find parallelizable work
5. **Identify risks**: What could go wrong? What needs clarification?
6. **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