agile-planning
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.
Best use case
agile-planning is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
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.
Teams using agile-planning should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/agile-planning/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How agile-planning Compares
| Feature / Agent | agile-planning | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
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.
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
SKILL.md Source
# 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: ```markdown # 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) ```markdown # 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) ```markdown # 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](references/sprint-guide.md) - **Template**: See [references/template.md](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
Related Skills
sprint-planning-helper
Sprint Planning Helper - Auto-activating skill for Enterprise Workflows. Triggers on: sprint planning helper, sprint planning helper Part of the Enterprise Workflows skill category.
planning-disaster-recovery
Execute use when you need to work with backup and recovery. This skill provides backup automation and disaster recovery with comprehensive guidance and automation. Trigger with phrases like "create backups", "automate backups", or "implement disaster recovery".
analyzing-capacity-planning
This skill enables Claude to analyze capacity requirements and plan for future growth. It uses the capacity-planning-analyzer plugin to assess current utilization, forecast growth trends, and recommend scaling strategies. Use this skill when the user asks to "analyze capacity", "plan for growth", "forecast infrastructure needs", or requests a "capacity roadmap". It is also useful when the user mentions specific capacity metrics like CPU usage, memory, database storage, network bandwidth, or connection pool saturation. This skill is ideal for proactive infrastructure planning and preventing performance bottlenecks.
planning-oracle-to-postgres-migration-integration-testing
Creates an integration testing plan for .NET data access artifacts during Oracle-to-PostgreSQL database migrations. Analyzes a single project to identify repositories, DAOs, and service layers that interact with the database, then produces a structured testing plan. Use when planning integration test coverage for a migrated project, identifying which data access methods need tests, or preparing for Oracle-to-PostgreSQL migration validation.
gtm-enterprise-account-planning
Strategic account planning and execution for enterprise deals. Use when planning complex sales cycles, managing multiple stakeholders, applying MEDDICC qualification, tracking deal health, or building mutual action plans. Includes the "stale MAP equals dead deal" pattern.
task-planning
Plan and organize software development tasks effectively. Use when breaking down features, creating user stories, or planning sprints. Handles task breakdown, user stories, acceptance criteria, and backlog management.
planning
Transform ideas into actionable implementation plans. Combines Socratic questioning for requirements discovery with detailed task breakdown for zero-context engineers. Use before any feature development.
research-driven-planning
Loop 1 of the Three-Loop Integrated Development System. Research-driven requirements analysis with iterative risk mitigation through 5x pre-mortem cycles using multi-agent consensus. Feeds validated, risk-mitigated plans to parallel-swarm-implementation. Use when starting new features or projects requiring comprehensive planning with <3% failure confidence and evidence-based technology selection.
planning-workflow
Jeffrey Emanuel's comprehensive markdown planning methodology for software projects. The 85%+ time-on-planning approach that makes agentic coding work at scale. Includes exact prompts used.
planning-the-escape
逃离计划 - 最终章,Stella必须决定是否修复飞船返回地球,还是留在盖亚,这是艰难的抉择
project-planning
Generate initial project planning documents (PVS, ADR, Tech Spec, Roadmap) from a project concept description. Use when starting a new project, when docs/planning/ contains placeholder files, or when user requests project planning document generation.
planning-with-trello
Use when planning features, organizing sprints, or syncing work with Trello boards.