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".
npx claudepluginhub signalcompose/claude-tools --plugin codeThis skill uses the workspace's default tool permissions.
Run a structured retrospective after shipping.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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.