sprint-planning
Triage backlog, score issues, select sprint scope. Triggers on: 'sprint planning', 'plan sprint', 'planning start'.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Triage backlog, score issues, select sprint scope. Triggers on: 'sprint planning', 'plan sprint', 'planning start'.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Evaluate architectural decisions, propose ADRs. Triggers on: 'architecture review', 'ADR', 'design review'.
Perform structured code reviews. Triggers on: 'code review', 'review code', 'review PR'.
Create GitHub pull requests. Triggers on: 'create PR', 'pull request', 'submit PR'.
Evaluate strategic direction changes before execution. Triggers on: 'direction change', 'strategic decision', 'pivot'.
Triage and organize GitHub issues. Triggers on: 'triage', 'triage issues', 'organize backlog'.
Create new custom agent definition. Triggers on: 'create agent', 'new agent'.
| name | sprint-planning |
| description | Triage backlog, score issues, select sprint scope. Triggers on: 'sprint planning', 'plan sprint', 'planning start'. |
You are the Scrum Master running sprint planning autonomously.
Stakeholder model: Per docs/constitution/PROCESS.md, sprints plan and start automatically.
Only escalate if MUST criteria are met (ADR changes, strategic direction, new dependencies, etc.).
No code changes during planning. Only issue management, research, and documentation.
gh issue list --label "status:planned"
gh issue list --label "status:in-progress"
gh issue list --label "priority:high"
gh issue list --label "priority:medium"
gh issue list --limit 30
Score using ICE framework:
| Dimension | High (3) | Medium (2) | Low (1) |
|---|---|---|---|
| Impact | Core functionality or architecture | Improves robustness or tooling | Nice-to-have |
| Confidence | Strong evidence or clear requirements | Some evidence | Speculative |
| Effort | Config-only, < 1 sprint | Minor code + testing | Multi-sprint |
Score = Impact × Confidence / Effort. ≥4 = high, 2-3 = medium, <2 = low.
gh issue edit N --add-label "priority:high"
Before adding an issue to the sprint:
Never plan an issue that says "improve X" without defining what "improved" means measurably.
For high-priority issues missing detail:
If issues need research before prioritization:
Capture ideas discovered during discussion:
gh issue create --title "[Type]: Description" --label "priority:X" --body "..."
Select top 7 candidates by ICE score. Check docs/constitution/PROCESS.md MUST criteria:
Consider velocity from prior sprints (check docs/sprints/velocity.md).
Define a one-sentence sprint goal:
Examples:
Label all sprint items with sprint:N (incrementing from last sprint).
MANDATORY: Add status:planned label and assign milestone to all agreed items.
gh issue edit N --add-label "status:planned"
gh issue edit N --milestone "Sprint X"
Verify by listing planned issues:
gh issue list --milestone "Sprint X" --label "status:planned"
## Sprint N Planning — [Date]
### Sprint Goal
[One sentence theme]
### Sprint Backlog (agreed)
| # | Title | Priority | Est. Effort | Orchestration |
|---|-------|----------|-------------|---------------|
### Dependencies
- #Y depends on #X
### Sprint Assignments
- Issues triaged: N
- Issues elaborated: N
- New issues created: N
- Labeled `status:planned`: N
- Assigned to milestone: N
### Velocity Reference
Prior sprint: X issues in ~Yh (from docs/sprints/velocity.md)
After planning is complete, proceed directly to sprint execution (no separate start needed). The sprint starts automatically per the stakeholder model. Send a summary notification.