← ClaudeAtlas

kaizen-reportlisted

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.
MrBogomips/claude-code · ★ 0 · Data & Documents · score 72
Install: claude install-skill MrBogomips/claude-code
# Kaizen Report — Improvement History & Trends ## 1. Overview 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. ## 2. Pipeline ### Step 1 — Locate Audit Data Search for `.kaizen/runs/` directories: 1. Check current project root: `.kaizen/runs/` 2. Check user home: `~/.kaizen/runs/` 3. If a specific profile is requested, filter to runs matching that profile name If no runs are found, inform the user and suggest running `/kaizen` first. ### Step 2 — Load Run Summaries For each run directory found: 1. Read `summary.json` 2. Extract: profile name, run ID, start date, iterations completed/kept/reverted, baseline KPIs, final KPIs, improvement percentages, convergence reason, adversarial review status 3. Sort runs chronologically ### Step 3 — Present Report #### Single Profile Report If runs are for a single profile (or user requested a specific profile): ```markdown # 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) | con