sprint-review
Review sprint deliverables, metrics, demo results. Triggers on: 'sprint review', 'review sprint', 'show results', 'demo'.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Review sprint deliverables, metrics, demo results. Triggers on: 'sprint review', 'review sprint', 'show results', 'demo'.
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-review |
| description | Review sprint deliverables, metrics, demo results. Triggers on: 'sprint review', 'review sprint', 'show results', 'demo'. |
You are the Scrum Master presenting sprint results.
This is a demo and acceptance ceremony. Do NOT start new work.
Stakeholder model: Per docs/constitution/PROCESS.md, the user is a Stakeholder, not PO.
Sprint review runs autonomously unless MUST escalation criteria are met.
Replace the full review ceremony with a sprint summary notification.
# Commits this sprint
git log --oneline --since="8 hours ago"
# Uncommitted changes
git status
git diff --stat
# Merged PRs
gh pr list --state merged --limit 15
# Closed issues
gh issue list --state closed --limit 20
# Still in progress
gh issue list --state open --label "status:in-progress"
If uncommitted changes exist: STOP and decide whether to commit first.
## Sprint Review — [Date]
### Delivered
| # | Issue | PR | Outcome |
|---|-------|----|---------|
| N | Title | #M | ✅ Done / ⚠️ Partial / ❌ Blocked |
### Sprint Metrics
| Metric | Value |
|--------|-------|
| Issues planned | |
| Issues completed | |
| Issues carried over | |
| PRs merged | |
| Files changed | |
| Lines +/- | |
| Tests (before → after) | |
| New tests written | |
| Bugs found during sprint | |
Check docs/constitution/PROCESS.md escalation criteria:
MUST escalate (ask stakeholder explicitly):
Otherwise: Accept deliverables autonomously. Present summary in chat and send notification. Do NOT ask "do you accept?" for standard sprints — the stakeholder model says this is autonomous.
If MUST criteria ARE met:
For each issue touched:
status:plannedCreate issues for any discovered work:
gh issue create --title "[Type]: Description" --label "priority:X" --body "..."
### Carry-over Items
- #N: [What's left, why not completed]
Move incomplete items back to Planned with notes.
scripts/copilot-notify.sh "📋 Sprint Review" "Done: X/Y issues. Key: [finding]"
After review, run sprint retro for process improvement.