Agile Planning
Generate lean agile release plans with sprint schedules and roadmaps.
Overview
This skill creates structured release plans for agile projects. It generates:
- Sprint schedules with unique codes (SPRINT-001, SPRINT-002, etc.)
- Tasks with ticket codes (T-001, T-002, etc.) for granular tracking
- Roadmaps showing timeline and milestones
- Dependencies and release checkpoints
Use this when planning product releases, organizing work into sprints, or communicating timelines to stakeholders.
Instructions
Step 1: Gather Context
Before generating a plan, collect:
- Project scope: What are we building?
- Timeline: How many weeks/months?
- Team size: Number of developers
- Sprint duration: Typically 2 weeks
- Key milestones: Alpha, beta, production dates
- Priorities: Must-have vs nice-to-have features
Step 2: Structure Sprints
Create sprints with:
- Unique codes: SPRINT-001, SPRINT-002, SPRINT-003 (sequential, zero-padded)
- Sprint theme: Descriptive name (e.g., "Payment Integration", "UI Polish")
- Duration: Start and end dates
- Goal: One-sentence sprint objective
- Tasks: 3-5 concrete tasks per sprint, each with unique ticket code (T-001, T-002, etc.)
- Dependencies: What blocks this sprint or depends on it
Task Numbering:
- Use format: T-001, T-002, T-003 (zero-padded, sequential across entire release)
- Each task gets a unique code that persists throughout the project
- Never reuse task codes
Sprint Duration Guidelines:
- 2 weeks (most common) = 10 working days
- Plan for 80% capacity (reserve 20% for meetings, bugs, unexpected)
- Balance workload across sprints
Sprint Themes:
Use clear, goal-oriented themes:
- Foundation, Setup, Infrastructure
- Core Features, MVP Development
- Integration, API Development
- Testing, Bug Fixes, Optimization
- Beta Launch, Production Release
Step 3: Build Roadmap
Group sprints into timeline view:
- By Quarter: Q1 2025, Q2 2025, etc.
- By Month: January, February, March
- By Phase: Foundation → Features → Launch
Include major milestones:
- Alpha release dates
- Beta release dates
- Production launch
- Key feature completions
Step 4: Format Output
Use this structure:
# Release Plan: [Project Name] v[Version]
**Release Goal**: [One sentence]
**Timeline**: [Start] - [End] ([X] sprints)
**Team**: [Number] developers
## Sprints
### SPRINT-001: [Theme]
**Duration**: [Start Date] - [End Date]
**Goal**: [What this sprint achieves]
**Tasks**:
- T-001: [Task description] [ ]
- T-002: [Task description] [ ]
- T-003: [Task description] [ ]
**Dependencies**: [If any]
### SPRINT-002: [Theme]
**Duration**: [Start Date] - [End Date]
**Goal**: [What this sprint achieves]
**Tasks**:
- T-004: [Task description] [ ]
- T-005: [Task description] [ ]
## Roadmap
### Q1 2025
- **SPRINT-001**: [Key achievement]
- **SPRINT-002**: [Key achievement]
### Q2 2025
- **SPRINT-003**: [Key achievement]
## Milestones
- **[Date]**: Alpha release (SPRINT-00X)
- **[Date]**: Beta release (SPRINT-00X)
- **[Date]**: Production launch (SPRINT-00X)
Step 5: Validate Plan
Check:
- ✓ Sprint codes are sequential and unique (SPRINT-001, SPRINT-002, etc.)
- ✓ Task codes are sequential and unique (T-001, T-002, etc.)
- ✓ Tasks are specific and measurable
- ✓ Dependencies are identified
- ✓ Timeline is realistic
- ✓ Milestones align with sprint schedule
Best Practices
Sprint Planning:
- Keep tasks specific: "T-001: Stripe SDK integration" not "T-001: work on payments"
- Limit to 3-5 tasks per sprint
- Front-load risky/complex work
- Include buffer sprint for testing
Task Numbering:
- Always use 3 digits: T-001, not T-1
- Sequential across entire release (T-001, T-002... T-050)
- Never reuse codes, even if task is cancelled
Dependencies:
- Identify early: "Requires SPRINT-001 API endpoints"
- Schedule dependent sprints sequentially
- Document external dependencies (APIs, design assets)
Roadmap:
- Focus on outcomes, not tasks
- Highlight major milestones
- Keep it stakeholder-friendly
- Update after each sprint
Code Conventions:
- Sprints: Always use 3 digits (SPRINT-001, not SPRINT-1)
- Tasks: Always use 3 digits (T-001, not T-1)
- Sequential numbering: Task codes continue across all sprints
- Never reuse codes (sprints or tasks)
Examples
Example 1: E-commerce Platform (6 sprints)
# Release Plan: E-commerce Platform v2.0
**Release Goal**: Launch new checkout system with multiple payment options
**Timeline**: Jan 1 - Mar 15, 2025 (6 sprints)
**Team**: 3 developers
## Sprints
### SPRINT-001: Payment Foundation
**Duration**: Jan 1 - Jan 14
**Goal**: Setup payment infrastructure and API integrations
**Tasks**:
- T-001: Stripe SDK integration [ ]
- T-002: Payment database schema design [ ]
- T-003: Payment API endpoints [ ]
- T-004: Shipping cost calculator [ ]
**Dependencies**: None
---
### SPRINT-002: Checkout UI
**Duration**: Jan 15 - Jan 28
**Goal**: Build responsive checkout flow
**Tasks**:
- T-005: Guest checkout form [ ]
- T-006: Address autosave feature [ ]
- T-007: Mobile responsive layout [ ]
- T-008: Form validation logic [ ]
**Dependencies**: Requires SPRINT-001 payment API (T-003)
---
### SPRINT-003: PayPal Integration
**Duration**: Jan 29 - Feb 11
**Goal**: Add PayPal as payment option
**Tasks**:
- T-009: PayPal SDK setup [ ]
- T-010: Payment method selector UI [ ]
- T-011: Order confirmation emails [ ]
- T-012: Transaction logging system [ ]
**Dependencies**: Requires SPRINT-001 infrastructure (T-002, T-003)
---
### SPRINT-004: Testing & Polish
**Duration**: Feb 12 - Feb 25
**Goal**: Ensure production readiness
**Tasks**:
- T-013: End-to-end testing suite [ ]
- T-014: Bug fixes from QA [ ]
- T-015: Performance optimization [ ]
- T-016: Security review and fixes [ ]
**Dependencies**: All features complete (T-001 through T-012)
---
### SPRINT-005: Beta Launch
**Duration**: Feb 26 - Mar 11
**Goal**: Soft launch to beta users
**Tasks**:
- T-017: Beta deployment to staging [ ]
- T-018: User feedback collection system [ ]
- T-019: Analytics and tracking setup [ ]
- T-020: Critical bug fixes [ ]
**Dependencies**: SPRINT-004 testing complete (T-013)
---
### SPRINT-006: Production Release
**Duration**: Mar 12 - Mar 15
**Goal**: Full production rollout
**Tasks**:
- T-021: Production deployment [ ]
- T-022: Monitoring and alerting setup [ ]
- T-023: User documentation [ ]
- T-024: Team handoff and training [ ]
**Dependencies**: Beta success metrics met (T-017, T-018)
## Roadmap
### Q1 2025
- **SPRINT-001**: Payment infrastructure complete
- **SPRINT-002**: Checkout UI launched
- **SPRINT-003**: PayPal support added
- **SPRINT-004**: Testing complete, production-ready
- **SPRINT-005**: Beta launch successful
- **SPRINT-006**: Full production release
## Milestones
- **Feb 25**: Alpha release (internal testing)
- **Feb 26**: Beta release (limited users)
- **Mar 12**: Production launch (all users)
Example 2: Mobile App MVP (4 sprints)
# Release Plan: Fitness Tracker App v1.0
**Release Goal**: Launch MVP with core tracking features
**Timeline**: 8 weeks (4 sprints)
**Team**: 2 developers
## Sprints
### SPRINT-001: User Foundation
**Duration**: Week 1-2
**Goal**: User accounts and authentication
**Tasks**:
- T-001: Firebase authentication setup [ ]
- T-002: User profile creation flow [ ]
- T-003: Profile editing functionality [ ]
- T-004: Avatar upload feature [ ]
### SPRINT-002: Activity Tracking
**Duration**: Week 3-4
**Goal**: Core fitness tracking features
**Tasks**:
- T-005: Step counter integration [ ]
- T-006: Manual activity logging interface [ ]
- T-007: Activity history view [ ]
- T-008: Basic statistics dashboard [ ]
### SPRINT-003: Data Visualization
**Duration**: Week 5-6
**Goal**: Charts and progress tracking
**Tasks**:
- T-009: Daily activity charts [ ]
- T-010: Weekly summary view [ ]
- T-011: Goal progress indicators [ ]
- T-012: Achievement badges system [ ]
### SPRINT-004: Launch Prep
**Duration**: Week 7-8
**Goal**: Polish and release
**Tasks**:
- T-013: App store assets creation [ ]
- T-014: Beta testing coordination [ ]
- T-015: Critical bug fixes [ ]
- T-016: Production deployment [ ]
## Roadmap
### Month 1
- SPRINT-001: User system live
- SPRINT-002: Activity tracking functional
### Month 2
- SPRINT-003: Data visualization complete
- SPRINT-004: MVP launched to app stores
## Milestones
- **Week 6**: Beta testing begins
- **Week 8**: App store submission
- **Week 9**: Public launch
Reference Files
For more detailed guidance:
- Sprint planning: See references/sprint-guide.md
- Template: See references/template.md
When to Use
Use this skill when:
- Starting a new product release
- Planning quarterly roadmaps
- Breaking down large projects into sprints
- Communicating timelines to stakeholders
- Organizing backlog into time-boxed iterations
- Creating sprint schedules for agile teams
1---2name: agile-planning3description: Generate agile release plans with sprints and roadmaps using unique sprint codes. Use when creating sprint schedules, product roadmaps, release planning, or when user mentions agile planning, sprints, roadmap, or release plans.4---56# Agile Planning78Generate lean agile release plans with sprint schedules and roadmaps.910## Overview1112This skill creates structured release plans for agile projects. It generates:13- Sprint schedules with unique codes (SPRINT-001, SPRINT-002, etc.)14- Tasks with ticket codes (T-001, T-002, etc.) for granular tracking15- Roadmaps showing timeline and milestones16- Dependencies and release checkpoints1718Use this when planning product releases, organizing work into sprints, or communicating timelines to stakeholders.1920## Instructions2122### Step 1: Gather Context2324Before generating a plan, collect:25- **Project scope**: What are we building?26- **Timeline**: How many weeks/months?27- **Team size**: Number of developers28- **Sprint duration**: Typically 2 weeks29- **Key milestones**: Alpha, beta, production dates30- **Priorities**: Must-have vs nice-to-have features3132### Step 2: Structure Sprints3334Create sprints with:35- **Unique codes**: SPRINT-001, SPRINT-002, SPRINT-003 (sequential, zero-padded)36- **Sprint theme**: Descriptive name (e.g., "Payment Integration", "UI Polish")37- **Duration**: Start and end dates38- **Goal**: One-sentence sprint objective39- **Tasks**: 3-5 concrete tasks per sprint, each with unique ticket code (T-001, T-002, etc.)40- **Dependencies**: What blocks this sprint or depends on it4142**Task Numbering**:43- Use format: T-001, T-002, T-003 (zero-padded, sequential across entire release)44- Each task gets a unique code that persists throughout the project45- Never reuse task codes4647**Sprint Duration Guidelines**:48- 2 weeks (most common) = 10 working days49- Plan for 80% capacity (reserve 20% for meetings, bugs, unexpected)50- Balance workload across sprints5152**Sprint Themes**:53Use clear, goal-oriented themes:54- Foundation, Setup, Infrastructure55- Core Features, MVP Development56- Integration, API Development57- Testing, Bug Fixes, Optimization58- Beta Launch, Production Release5960### Step 3: Build Roadmap6162Group sprints into timeline view:63- **By Quarter**: Q1 2025, Q2 2025, etc.64- **By Month**: January, February, March65- **By Phase**: Foundation → Features → Launch6667Include major milestones:68- Alpha release dates69- Beta release dates70- Production launch71- Key feature completions7273### Step 4: Format Output7475Use this structure:7677```markdown78# Release Plan: [Project Name] v[Version]7980**Release Goal**: [One sentence]81**Timeline**: [Start] - [End] ([X] sprints)82**Team**: [Number] developers8384## Sprints8586### SPRINT-001: [Theme]87**Duration**: [Start Date] - [End Date]88**Goal**: [What this sprint achieves]8990**Tasks**:91- T-001: [Task description] [ ]92- T-002: [Task description] [ ]93- T-003: [Task description] [ ]9495**Dependencies**: [If any]9697### SPRINT-002: [Theme]98**Duration**: [Start Date] - [End Date]99**Goal**: [What this sprint achieves]100101**Tasks**:102- T-004: [Task description] [ ]103- T-005: [Task description] [ ]104105## Roadmap106107### Q1 2025108- **SPRINT-001**: [Key achievement]109- **SPRINT-002**: [Key achievement]110111### Q2 2025112- **SPRINT-003**: [Key achievement]113114## Milestones115- **[Date]**: Alpha release (SPRINT-00X)116- **[Date]**: Beta release (SPRINT-00X)117- **[Date]**: Production launch (SPRINT-00X)118```119120### Step 5: Validate Plan121122Check:123- ✓ Sprint codes are sequential and unique (SPRINT-001, SPRINT-002, etc.)124- ✓ Task codes are sequential and unique (T-001, T-002, etc.)125- ✓ Tasks are specific and measurable126- ✓ Dependencies are identified127- ✓ Timeline is realistic128- ✓ Milestones align with sprint schedule129130## Best Practices131132**Sprint Planning**:133- Keep tasks specific: "T-001: Stripe SDK integration" not "T-001: work on payments"134- Limit to 3-5 tasks per sprint135- Front-load risky/complex work136- Include buffer sprint for testing137138**Task Numbering**:139- Always use 3 digits: T-001, not T-1140- Sequential across entire release (T-001, T-002... T-050)141- Never reuse codes, even if task is cancelled142143**Dependencies**:144- Identify early: "Requires SPRINT-001 API endpoints"145- Schedule dependent sprints sequentially146- Document external dependencies (APIs, design assets)147148**Roadmap**:149- Focus on outcomes, not tasks150- Highlight major milestones151- Keep it stakeholder-friendly152- Update after each sprint153154**Code Conventions**:155- Sprints: Always use 3 digits (SPRINT-001, not SPRINT-1)156- Tasks: Always use 3 digits (T-001, not T-1)157- Sequential numbering: Task codes continue across all sprints158- Never reuse codes (sprints or tasks)159160## Examples161162### Example 1: E-commerce Platform (6 sprints)163164```markdown165# Release Plan: E-commerce Platform v2.0166167**Release Goal**: Launch new checkout system with multiple payment options168**Timeline**: Jan 1 - Mar 15, 2025 (6 sprints)169**Team**: 3 developers170171## Sprints172173### SPRINT-001: Payment Foundation174**Duration**: Jan 1 - Jan 14175**Goal**: Setup payment infrastructure and API integrations176177**Tasks**:178- T-001: Stripe SDK integration [ ]179- T-002: Payment database schema design [ ]180- T-003: Payment API endpoints [ ]181- T-004: Shipping cost calculator [ ]182183**Dependencies**: None184185---186187### SPRINT-002: Checkout UI188**Duration**: Jan 15 - Jan 28189**Goal**: Build responsive checkout flow190191**Tasks**:192- T-005: Guest checkout form [ ]193- T-006: Address autosave feature [ ]194- T-007: Mobile responsive layout [ ]195- T-008: Form validation logic [ ]196197**Dependencies**: Requires SPRINT-001 payment API (T-003)198199---200201### SPRINT-003: PayPal Integration202**Duration**: Jan 29 - Feb 11203**Goal**: Add PayPal as payment option204205**Tasks**:206- T-009: PayPal SDK setup [ ]207- T-010: Payment method selector UI [ ]208- T-011: Order confirmation emails [ ]209- T-012: Transaction logging system [ ]210211**Dependencies**: Requires SPRINT-001 infrastructure (T-002, T-003)212213---214215### SPRINT-004: Testing & Polish216**Duration**: Feb 12 - Feb 25217**Goal**: Ensure production readiness218219**Tasks**:220- T-013: End-to-end testing suite [ ]221- T-014: Bug fixes from QA [ ]222- T-015: Performance optimization [ ]223- T-016: Security review and fixes [ ]224225**Dependencies**: All features complete (T-001 through T-012)226227---228229### SPRINT-005: Beta Launch230**Duration**: Feb 26 - Mar 11231**Goal**: Soft launch to beta users232233**Tasks**:234- T-017: Beta deployment to staging [ ]235- T-018: User feedback collection system [ ]236- T-019: Analytics and tracking setup [ ]237- T-020: Critical bug fixes [ ]238239**Dependencies**: SPRINT-004 testing complete (T-013)240241---242243### SPRINT-006: Production Release244**Duration**: Mar 12 - Mar 15245**Goal**: Full production rollout246247**Tasks**:248- T-021: Production deployment [ ]249- T-022: Monitoring and alerting setup [ ]250- T-023: User documentation [ ]251- T-024: Team handoff and training [ ]252253**Dependencies**: Beta success metrics met (T-017, T-018)254255## Roadmap256257### Q1 2025258- **SPRINT-001**: Payment infrastructure complete259- **SPRINT-002**: Checkout UI launched260- **SPRINT-003**: PayPal support added261- **SPRINT-004**: Testing complete, production-ready262- **SPRINT-005**: Beta launch successful263- **SPRINT-006**: Full production release264265## Milestones266- **Feb 25**: Alpha release (internal testing)267- **Feb 26**: Beta release (limited users)268- **Mar 12**: Production launch (all users)269```270271### Example 2: Mobile App MVP (4 sprints)272273```markdown274# Release Plan: Fitness Tracker App v1.0275276**Release Goal**: Launch MVP with core tracking features277**Timeline**: 8 weeks (4 sprints)278**Team**: 2 developers279280## Sprints281282### SPRINT-001: User Foundation283**Duration**: Week 1-2284**Goal**: User accounts and authentication285286**Tasks**:287- T-001: Firebase authentication setup [ ]288- T-002: User profile creation flow [ ]289- T-003: Profile editing functionality [ ]290- T-004: Avatar upload feature [ ]291292### SPRINT-002: Activity Tracking293**Duration**: Week 3-4294**Goal**: Core fitness tracking features295296**Tasks**:297- T-005: Step counter integration [ ]298- T-006: Manual activity logging interface [ ]299- T-007: Activity history view [ ]300- T-008: Basic statistics dashboard [ ]301302### SPRINT-003: Data Visualization303**Duration**: Week 5-6304**Goal**: Charts and progress tracking305306**Tasks**:307- T-009: Daily activity charts [ ]308- T-010: Weekly summary view [ ]309- T-011: Goal progress indicators [ ]310- T-012: Achievement badges system [ ]311312### SPRINT-004: Launch Prep313**Duration**: Week 7-8314**Goal**: Polish and release315316**Tasks**:317- T-013: App store assets creation [ ]318- T-014: Beta testing coordination [ ]319- T-015: Critical bug fixes [ ]320- T-016: Production deployment [ ]321322## Roadmap323324### Month 1325- SPRINT-001: User system live326- SPRINT-002: Activity tracking functional327328### Month 2329- SPRINT-003: Data visualization complete330- SPRINT-004: MVP launched to app stores331332## Milestones333- **Week 6**: Beta testing begins334- **Week 8**: App store submission335- **Week 9**: Public launch336```337338## Reference Files339340For more detailed guidance:341- **Sprint planning**: See [references/sprint-guide.md](references/sprint-guide.md)342- **Template**: See [references/template.md](references/template.md)343344## When to Use345346Use this skill when:347- Starting a new product release348- Planning quarterly roadmaps349- Breaking down large projects into sprints350- Communicating timelines to stakeholders351- Organizing backlog into time-boxed iterations352- Creating sprint schedules for agile teams