원클릭으로
openup-retrospective
Generate iteration retrospective with feedback and action items
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate iteration retrospective with feedback and action items
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
One-command project setup for OpenUP - interactive initialization wizard
Mark a task as complete, update roadmap, commit changes, and prepare traceability logs
Execute an already-claimed lane's Operations boxes with script/judgment classification — script steps run directly with zero self-brief, judgment steps self-brief and execute. Handles only pick/resume; every other resolve path routes to /openup-next.
Run OpenUP Assess Results at iteration end — check evaluation criteria, demo only completed acceptance-tested work, feed discovered work back, and trigger the milestone review at a phase boundary
Run the phase milestone go/no-go — prepare derived evidence, pause for the human decision via an input-request, and record the milestone (never advance the phase itself)
Begin a new OpenUP iteration with proper phase context and task selection
| name | openup-retrospective |
| description | Generate iteration retrospective with feedback and action items |
| model | sonnet |
| fit | {"great":["end-of-iteration reflection","capturing patterns to feed forward"],"ok":["mid-iteration when blockers pile up and a reset is needed"],"poor":["single-task wrap-ups (use complete-task notes)","trivial iterations"]} |
| arguments | [{"name":"iteration_number","description":"Iteration to review (optional, defaults to current)","required":false},{"name":"include_metrics","description":"Include git metrics (true/false, default: true)","required":false}] |
Generate an iteration retrospective capturing what went well, what to improve, and action items.
If $ARGUMENTS[iteration_number] is provided, use it. Otherwise read docs/project-status.md for the current iteration number.
Read docs/project-status.md for: iteration goal, dates, team members, overall status.
Read docs/roadmap.md to identify: tasks planned, completed, not completed, and added during iteration. Note complexity, challenges, and successes for each.
Review these sources for patterns and issues:
docs/agent-logs/ - Agent run logsdocs/risk-list.md - Risks emerged or mitigateddocs/roadmap.md - Velocity (completed vs planned), blocked itemsThis is the step that closes the loop between per-feature success measures
(task-spec ## Success Measures, rubric criterion 12) and value
prioritization — without it, measures are write-only and the roadmap ordering
stays opinion-based.
docs/changes/archive/T-NNN/design.md) for
recorded success-measure grades + read-back dates (written by
/openup-complete-task step 1b). Skip n/a entries..claude/teammates/product-manager.md):
it consumes these verdicts to re-rank pending roadmap entries, updating each
moved entry's Value rationale to cite the evidence ("UC-12's measure
missed by 80% — demoting the follow-on entries below the X work"). The
re-rank is the product-manager's call; the retrospective only delivers the
evidence.$ARGUMENTS[include_metrics] == "true")# Commits in iteration period
git log --oneline --since="$start_date" --until="$end_date" | wc -l
# Lines changed
git diff --stat trunk...HEAD
# Active contributors
git shortlog -sn --since="$start_date" --until="$end_date"
Task metrics: tasks planned, tasks completed, completion rate (completed / planned * 100%).
Create docs/iteration-retrospectives/iteration-{n}-retrospective.md with sections:
Value rationale), or "no re-rank — evidence supports current order"In docs/project-status.md: add link to retrospective, note ongoing action items, update iteration status.
Running this retrospective satisfies the cadence, so reset the durable counter. This zeroes
.openup/retro.json and clears gates.retro_due in any live .openup/state.json:
python3 scripts/openup-state.py retro reset
After this, /openup-start-iteration will permit full-track starts again until 5 more
tasks complete. See state-file.md.
Returns: retrospective document path, counts of what went well / what to improve / action items, overall iteration rating, key metrics (if included).