MCP HubMCP Hub
Вернуться к навыкам

plan-sprint

pjt222
Обновлено 2 days ago
6 просмотров
17
2
17
Посмотреть на GitHub
Дизайнgeneral

О программе

Навык `plan-sprint` помогает разработчикам структурировать Scrum или гибкий спринт, уточняя элементы бэклога, устанавливая цель и рассчитывая пропускную способность команды для выбора работ. Он разбивает выбранные элементы на задачи и создает комплексный файл `SPRINT-PLAN.md`. Используйте его при запуске нового спринта, перепланировании после изменения объема работ или переходе от хаотичной работы к структурированному ритму.

Быстрая установка

Claude Code

Рекомендуется
Основной
npx skills add pjt222/agent-almanac -a claude-code
Команда плагинаАльтернативный
/plugin add https://github.com/pjt222/agent-almanac
Git клонированиеАльтернативный
git clone https://github.com/pjt222/agent-almanac.git ~/.claude/skills/plan-sprint

Скопируйте и вставьте эту команду в Claude Code для установки этого навыка

Документация

Plan a Sprint

Plan time-boxed sprint. Select refined backlog items up to team capacity. Define clear sprint goal. Decompose selected items into actionable tasks. Produces complete sprint plan that guides team work for sprint duration.

When Use

  • Starting new sprint in Scrum or agile project
  • Re-planning sprint after significant scope change
  • Transitioning from ad-hoc work to structured sprint cadence
  • After backlog grooming when items ready for sprint inclusion
  • Planning first sprint after project charter approval

Inputs

  • Required: Product backlog (prioritized, with estimates)
  • Required: Sprint duration (usually 1-2 weeks)
  • Required: Team members and availability
  • Optional: Previous sprint velocity (story points or items completed)
  • Optional: Sprint number and date range
  • Optional: Carry-over items from previous sprint

Steps

Step 1: Review and Refine Backlog Items

Read current BACKLOG.md. For each candidate item near top, verify it has:

  • Clear title and description
  • Acceptance criteria (testable conditions)
  • Estimate (story points or T-shirt size)
  • No unresolved blockers

Refine any items missing these elements. Split items estimated larger than half sprint capacity into smaller, manageable pieces.

Got: Top 10-15 backlog items "sprint-ready" with acceptance criteria and estimates.

If fail: Items lack acceptance criteria? Write them now. Items can't be estimated? Schedule refinement conversation. Select only ready items.

Step 2: Define Sprint Goal

Write single clear sprint goal — one sentence stating what sprint will achieve. Goal should be:

  • Achievable within sprint duration
  • Valuable to stakeholders
  • Testable (can verify it was met at sprint end)
**Sprint Goal**: [One sentence describing the objective]

Example: "Enable users to reset their password through email verification with two-factor authentication."

Got: Sprint goal articulated as one clear, testable sentence.

If fail: No coherent goal emerges? Backlog priorities may be scattered. Consult product owner — focus on single valuable outcome.

Step 3: Calculate Team Capacity

Compute available person-days per team member:

## Team Capacity
| Team Member | Available Days | Overhead (%) | Net Capacity |
|-------------|---------------|-------------|--------------|
| [Name] | [Sprint days - PTO] | 20% | [Available × 0.8] |
| [Name] | [Sprint days - PTO] | 20% | [Available × 0.8] |
| **Total** | | | **[Sum] person-days** |

Overhead accounts for meetings, reviews, ad-hoc requests (usually 15-25%).

Using story points? Use previous sprint velocity as capacity. First sprint? Use 60-70% of theoretical maximum.

Got: Capacity computed in person-days or story points. Assumptions documented.

If fail: No historical velocity? Be conservative — plan to 60% capacity. Adjust after sprint. Better under-commit and deliver than over-commit and fail.

Step 4: Select Items and Compose Sprint Backlog

Select items from top of product backlog until capacity reached. Decompose each selected item into tasks (2-8 hours each):

# Sprint Plan: Sprint [N]
## Document ID: SP-[PROJECT]-S[NNN]

### Sprint Details
- **Sprint Goal**: [From Step 2]
- **Duration**: [Start date] to [End date]
- **Capacity**: [From Step 3] person-days / [N] story points
- **Team**: [List team members]

### Sprint Backlog
| ID | Item | Points | Tasks | Assignee | Status |
|----|------|--------|-------|----------|--------|
| B-001 | [Item title] | 5 | 4 | [Name] | To Do |
| B-002 | [Item title] | 3 | 3 | [Name] | To Do |
| B-003 | [Item title] | 8 | 6 | [Name] | To Do |
| **Total** | | **16** | **13** | | |

### Task Breakdown

#### B-001: [Item title]
**Acceptance Criteria**: [From backlog item]

- [ ] Task 1: [Description] (4h, [Assignee])
- [ ] Task 2: [Description] (2h, [Assignee])
- [ ] Task 3: [Description] (4h, [Assignee])
- [ ] Task 4: [Description] (2h, [Assignee])

#### B-002: [Item title]
**Acceptance Criteria**: [From backlog item]

- [ ] Task 1: [Description] (3h, [Assignee])
- [ ] Task 2: [Description] (4h, [Assignee])
- [ ] Task 3: [Description] (2h, [Assignee])

#### B-003: [Item title]
**Acceptance Criteria**: [From backlog item]

- [ ] Task 1: [Description] (3h, [Assignee])
- [ ] Task 2: [Description] (4h, [Assignee])
- [ ] Task 3: [Description] (2h, [Assignee])
- [ ] Task 4: [Description] (3h, [Assignee])
- [ ] Task 5: [Description] (4h, [Assignee])
- [ ] Task 6: [Description] (2h, [Assignee])

### Risks and Dependencies
| Risk | Impact | Mitigation |
|------|--------|-----------|
| [Risk 1] | [Impact] | [Mitigation] |
| [Risk 2] | [Impact] | [Mitigation] |

### Carry-Over from Previous Sprint
| ID | Item | Reason | Remaining Effort |
|----|------|--------|-----------------|
| B-XXX | [Item] | [Reason] | [Hours/points] |

Got: Sprint backlog with items selected up to capacity. Each decomposed into tasks with time estimates.

If fail: Total points exceed capacity? Remove lowest-priority item. NEVER exceed capacity by more than 10%. Dependencies block sequencing? Re-order or defer items.

Step 5: Document Commitments and Save

Write sprint plan to SPRINT-PLAN.md (or SPRINT-PLAN-S[NNN].md for archival). Confirm:

  • Sprint goal achievable with selected items
  • No team member overallocated (>100% capacity)
  • Dependencies between items sequenced correctly
  • Carry-over items accounted for in capacity
  • All acceptance criteria copied from backlog items

Run final validation:

# Check that total task hours align with capacity
grep -A 100 "Task Breakdown" SPRINT-PLAN.md | grep -o '([0-9]*h' | sed 's/[^0-9]//g' | awk '{sum+=$1} END {print "Total hours:", sum}'

Got: SPRINT-PLAN.md created with complete sprint backlog and task breakdown. Total hours ≤80% of available person-days × 8 hours.

If fail: Commitments don't align with goal? Revisit item selection in Step 4. Task hours exceed capacity? Remove last item or decompose tasks more granularly.

Checks

  • Sprint goal is one clear, testable sentence
  • Team capacity computed with documented assumptions (overhead %, PTO accounted)
  • Selected items don't exceed capacity (points or person-days)
  • Every selected item has acceptance criteria copied into task breakdown
  • Every selected item decomposed into tasks (2-8 hours each)
  • No team member overallocated beyond 100% capacity
  • Carry-over items from previous sprint documented with remaining effort
  • Dependencies between items sequenced correctly
  • Risks and mitigations documented
  • SPRINT-PLAN.md file created and saved

Pitfalls

  • No sprint goal: Without goal, sprint just bag of tasks. Goal provides focus and basis for scope decisions mid-sprint.
  • Over-commitment: Planning to 100% capacity ignores interruptions, bugs, overhead. Plan to 70-80% to leave buffer for unexpected.
  • Tasks too large: Tasks over 8 hours hide complexity. Make progress tracking difficult. Decompose until tasks are 2-8 hours.
  • Ignore carry-over: Unfinished items from last sprint consume this sprint's capacity. Account for them explicitly in capacity calculations.
  • Sprint goal as item list: "Complete B-001, B-002, B-003" is not a goal. Goal describes outcome: "Users can reset their password through email verification."
  • No task ownership: Every task should have assignee at planning time. Surfaces capacity conflicts early.
  • Skip acceptance criteria: Tasks without acceptance criteria can't be tested. Copy acceptance criteria from backlog items into task breakdown section.

See Also

  • manage-backlog — maintain and prioritize product backlog that feeds sprint planning
  • draft-project-charter — provides project context and initial scope for first sprint
  • generate-status-report — report sprint progress and velocity to stakeholders
  • conduct-retrospective — review sprint execution and improve planning process
  • create-work-breakdown-structure — WBS work packages can feed backlog in hybrid agile-waterfall approaches

GitHub репозиторий

pjt222/agent-almanac
Путь: i18n/caveman/skills/plan-sprint
0
agentsagentskillsai-assisted-developmentclaude-codeskillsteams

Похожие навыки

executing-plans

Дизайн

Используйте навык executing-plans, когда у вас есть полный план реализации для выполнения контролируемыми партиями с контрольными точками проверки. Он загружает и критически анализирует план, затем выполняет задачи небольшими партиями (по умолчанию 3 задачи), сообщая о прогрессе между каждой партией для проверки архитектором. Это обеспечивает систематическую реализацию со встроенными контрольными точками проверки качества.

Просмотреть навык

requesting-code-review

Дизайн

Этот навык запускает суб-агента для ревью кода, который анализирует изменения в коде на соответствие требованиям перед дальнейшими действиями. Его следует использовать после завершения задач, реализации крупных функций или перед слиянием с основной веткой. Ревью помогает выявить проблемы на ранней стадии, сравнивая текущую реализацию с исходным планом.

Просмотреть навык

connect-mcp-server

Дизайн

Этот навык предоставляет разработчикам подробное руководство по подключению серверов MCP к Claude Code с использованием транспортов HTTP, stdio или SSE. Он охватывает установку, конфигурацию, аутентификацию и безопасность для интеграции внешних сервисов, таких как GitHub, Notion и пользовательские API. Используйте его при настройке интеграций MCP, конфигурации внешних инструментов или работе с Model Context Protocol от Claude.

Просмотреть навык

web-cli-teleport

Дизайн

Этот навык помогает разработчикам выбирать между веб-интерфейсом Claude Code и CLI на основе анализа задачи, а также обеспечивает бесшовное перемещение сессий между этими средами. Он оптимизирует рабочий процесс, управляя состоянием и контекстом сессии при переключении между веб-интерфейсом, CLI или мобильным приложением. Используйте его для сложных проектов, требующих различных инструментов на разных этапах работы.

Просмотреть навык