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".
Runs a post-sprint retrospective with parallel agents to audit compliance and analyze code quality.
/plugin marketplace add signalcompose/claude-tools/plugin install code@claude-toolsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
references/auditor-prompt.mdreferences/learnings-pdca.mdreferences/researcher-prompt.mdRun 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.
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.