retro

Solid

Weekly engineering retrospective with persistent metrics — commit patterns, work sessions, code-quality trends. Triggers "retro", "retrospective", "weekly review", "how was my week", "engineering metrics", "velocity", "what did I ship", "show me my stats".

Code & Development 44 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
55
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Engineering Retrospective ## Product-aware helper ```bash # Claude Code ESCALATE_STATS_RUNNER="$HOME/.claude/src/scripts/escalate-stats.ts" CC_STATE_ROOT="$HOME/.claude" # Standalone Codex would resolve the helper as: # ESCALATE_STATS_RUNNER="${CODEX_HOME:-$HOME/.codex}/darkroom/source/src/scripts/escalate-stats.ts" ``` Codex must skip this Claude escalation telemetry entirely because the plugin does not expose a reliable manual state path. Do not infer or report an act-rate in Codex. **Claude-only marker:** standalone Codex must skip this command. `mkdir -p ~/.claude/tmp && echo "retro" > ~/.claude/tmp/heavy-skill-active && date -u +"%Y-%m-%dT%H:%M:%SZ" >> ~/.claude/tmp/heavy-skill-active` **This skill is self-contained.** Do not read CLAUDE.md or agent definitions. ## Arguments - `/retro` — last 7 days (default) - `/retro 24h` or `/retro 14d` or `/retro 30d` — custom window - `/retro compare` — current 7d vs prior 7d - `/retro compare 14d` — current 14d vs prior 14d **Validation:** Only accept arguments matching `\d+[dhw]`, `compare`, or `compare \d+[dhw]`. Reject anything else with usage instructions. --- ## Step 1: Gather Raw Data Fetch latest from remote, then run 5 parallel git commands: ```bash # Fetch latest git fetch origin main 2>/dev/null # 1. Commits with timestamps, subject, hash, and stats git log origin/main --since="WINDOW_START" --format="%H|%aI|%s" --shortstat # 2. Per-commit numstat for test vs production LOC breakdown # Test files: paths m...

Details

Author
darkroomengineering
Repository
darkroomengineering/cc-settings
Created
8 months ago
Last Updated
today
Language
TypeScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category