RE
retro
Data-driven retrospective from git history. Analyzes commits, contributors, and trends. Produces actionable reports.
Install
mkdir -p .claude/skills/retro-mrunreal && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/15880" && unzip -o skill.zip -d .claude/skills/retro-mrunreal && rm skill.zipInstalls to .claude/skills/retro-mrunreal
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Data-driven retrospective from git history. Analyzes commits, contributors, and trends. Produces actionable reports.116 chars · catalog descriptionno explicit “when” trigger
About this skill
/retro — Engineering Retrospective Workflow
Data-driven retrospective from git history. Analyzes commits, contributors, and trends. Produces actionable reports.
Usage
/retro — Last 7 days
/retro --days 14 — Last 14 days
/retro --since 2024-01-01 --until 2024-01-31 — Custom range
/retro --save — Save JSON snapshot for trend tracking
Procedure
1. Gather Data
Run git commands to collect commits, authors, file changes, and timestamps for the specified period.
2. Compute Metrics
- Commits (total + per-contributor)
- LOC added/removed, net change
- Test ratio (commits touching test files vs. total)
- Fix ratio (commits with "fix"/"bug" in message vs. total)
- Peak activity hours
- Biggest ship (largest change by scope)
3. Analyze Patterns
- Work focus distribution (features, fixes, refactoring, infra)
- Shipping cadence (regular vs. batched)
- Test-to-feature code ratio trends
- Contributor patterns
4. Produce Report
Use the template at templates/retro-report.md for output format.
5. Save Snapshot (optional, with --save)
Save a JSON snapshot for trend comparison across retros.
Scripts
- Windows:
scripts/retro.ps1 - Unix:
scripts/retro.sh
Agent Instructions
- Run the retro script for the user's platform to gather raw data.
- Analyze the data per the procedure above.
- Produce the report using the template.
- Always follow
.github/agents/retro.agent.mdfor persona and rules.