From kaizen
View improvement history and KPI trends from kaizen runs. Reads .kaizen/runs/ audit trail to show cross-run improvement trajectories, diminishing returns detection, and formatted KPI reports with delta tables. Use when user says 'kaizen report', 'kaizen history', 'improvement history', 'show kaizen results', 'KPI trends', 'how is improvement going', 'kaizen status', or wants to review past improvement loop outcomes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/kaizen:kaizen-reportThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill reads the `.kaizen/runs/` audit trail and presents improvement history, KPI trends, and actionable insights. It works with any profile's audit data.
This skill reads the .kaizen/runs/ audit trail and presents improvement history, KPI trends, and actionable insights. It works with any profile's audit data.
Search for .kaizen/runs/ directories:
.kaizen/runs/~/.kaizen/runs/If no runs are found, inform the user and suggest running /kaizen first.
For each run directory found:
summary.jsonIf runs are for a single profile (or user requested a specific profile):
# Kaizen Report: {profile-name}
## Overview
- **Total runs:** {count}
- **Date range:** {first run date} → {latest run date}
- **Total iterations:** {sum across runs} ({kept} kept, {reverted} reverted)
## KPI Trajectory
| Run | Date | {KPI 1} | {KPI 2} | ... | Iterations | Result |
|-----|------|---------|---------|-----|------------|--------|
| 001 | ... | baseline → final (Δ%) | ... | ... | N (K kept) | converged/budget/stopped |
| 002 | ... | baseline → final (Δ%) | ... | ... | N (K kept) | converged/budget/stopped |
## Cumulative Improvement
- **{KPI 1}:** {first baseline} → {latest final} ({total Δ%} total improvement)
- **{KPI 2}:** {first baseline} → {latest final} ({total Δ%} total improvement)
## Trend Analysis
- **Rate of improvement:** [accelerating / steady / diminishing returns]
- **Diminishing returns alert:** [if last 2+ runs had few kept iterations, flag this]
- **Recommendation:** [continue / shift focus / review profile]
## Adversarial Review Status
| Run | Verdict |
|-----|---------|
| ... | passed/flagged |
If runs span multiple profiles:
# Kaizen Overview — All Profiles
| Profile | Runs | Last Run | Best KPI Improvement | Status |
|---------|------|----------|---------------------|--------|
| {name} | N | {date} | {best Δ%} | active/converged |
For each KPI across sequential runs:
Present recommendation:
If the user asks about a specific run:
summary.json and adversarial-review.mdproposal.md files)Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub mrbogomips/claude-code --plugin kaizen