From code
This skill runs a post-sprint retrospective with Auditor and Researcher agents. It verifies process compliance, analyzes code quality, and records metrics. This skill should be used when the user says "振り返り", "retrospective", "retro".
How this skill is triggered — by the user, by Claude, or both
Slash command
/code:retrospectiveThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run a structured retrospective after shipping.
Run a structured retrospective after shipping.
Objectively verify the entire phase process. Check both output quality AND process compliance.
$ARGUMENTS (optional): Branch name to audit. If empty, uses current branch.
git branch --show-current
git log --oneline $(git merge-base HEAD <base>)..HEAD
git diff --stat $(git merge-base HEAD <base>)...HEAD
Identify the base branch (from PR target or parent feature branch).
Spawn 2 agents using the Task tool (subagent_type: "general-purpose", model: "<choose per task>") in parallel.
MANDATORY: Always specify an explicit model parameter. Choose the appropriate model based on task complexity (haiku for lightweight, sonnet for standard, opus for complex reasoning). Never omit model (default inherit may fail in parallel spawning).
Auditor and Researcher are independent — no inter-agent communication needed.
5-principle compliance verification. For detailed prompt, read ${CLAUDE_PLUGIN_ROOT}/skills/retrospective/references/auditor-prompt.md.
Output: PASS/PARTIAL/FAIL per principle with evidence.
Code quality and architecture analysis. For detailed prompt, read ${CLAUDE_PLUGIN_ROOT}/skills/retrospective/references/researcher-prompt.md.
Output: Strengths, Weaknesses, Recommendations, Metrics.
Integrate both agent reports:
docs/dev-cycle-learnings.md (see Learnings PDCA below)Based on Auditor/Researcher findings:
After fixes: code:review-commit via Skill tool + approve-review.sh + commit.
docs(retro): Phase N retrospective findings and improvements
git push origin <branch>
## Retrospective Complete
### Audit Summary
| Principle | Status | Notes |
|-----------|--------|-------|
| DDD/TDD/DRY/ISSUE/PROCESS | pass/partial/fail | ... |
Score: X/5
### Code Quality
- Strengths / Weaknesses / Recommendations
### Metrics
- New files, tests, coverage, review iterations
### Improvements Applied
- Learnings updated (N new, N merged, N resolved), memory updated, code fixes
For shared output language rules, read ${CLAUDE_PLUGIN_ROOT}/skills/_shared/output-rules.md.
docs/research/workflow-recording.mdFor detailed Learnings PDCA procedures (Project-Side optimization + Plugin-Side GitHub Issue suggestion), read ${CLAUDE_PLUGIN_ROOT}/skills/retrospective/references/learnings-pdca.md.
npx claudepluginhub signalcompose/claude-tools --plugin codeRuns context-aware retrospectives auto-gathering git metrics, learnings, away-logs, and handoffs into pre-populated tables for interactive or agent-summary review.
Reviews completed work to extract learnings, validate shipping, and promote insights. Activates after tasks, PR arcs, or sessions finish, or after 5+ PRs.
Analyzes git history for sprint retrospectives: velocity, commit patterns, test health, shipping cadence. Use after sprints, weekly, or progress reflection.