Agent skill
retro
Weekly retrospective with developer stats, shipping streaks, test health trends, and growth opportunities. Use for weekly check-ins or when asked for a retrospective.
Install this agent skill to your Project
npx add-skill https://github.com/DenchHQ/DenchClaw/tree/main/skills/gstack/retro
SKILL.md
Retro — Weekly Retrospective
Structured weekly retrospective that combines quantitative data with qualitative reflection.
Related skills: ship | review | document-release
Data Collection
Git Stats (last 7 days)
git log --since="7 days ago" --oneline | wc -l # commits
git log --since="7 days ago" --shortstat --format="" | \
awk '/files? changed/ {f+=$1; i+=$4; d+=$6} END {print f, i, d}' # files, insertions, deletions
git log --since="7 days ago" --format="%an" | sort | uniq -c | sort -rn # per-person
PR Stats
gh pr list --state merged --search "merged:>$(date -v-7d +%Y-%m-%d)" --json number,title,additions,deletions
Test Health
# Run test suite and capture results
npm test 2>&1 | tail -5 # or equivalent for the project
Retrospective Format
WEEKLY RETRO: [Date Range]
═══════════════════════════════════════
📊 STATS
Commits: N
Lines added: N
Lines removed: N
Net LOC: N
PRs merged: N
Tests: N pass / N fail
🏃 VELOCITY
Shipping streak: N days (commits on consecutive days)
Biggest PR: #N — [title] (+X/-Y)
Most active area: [directory/module]
✅ WINS
- [What went well this week]
- [Features shipped, bugs fixed, improvements made]
⚠️ CONCERNS
- [What didn't go well]
- [Technical debt accumulated]
- [Tests skipped or coverage gaps]
📋 NEXT WEEK
- [Priorities for next week]
- [Deferred items from TODOS.md]
- [Tech debt to address]
═══════════════════════════════════════
Growth Opportunities
Flag patterns that suggest improvement areas:
- Low test coverage in active files — Files changed frequently but with few tests
- Large PRs — PRs with >500 lines suggest insufficient decomposition
- Long-lived branches — Branches open >5 days suggest integration risk
- Recurring bug areas — Same files in bug-fix commits suggest architectural issues
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
dench-integrations
Connected app integration recipes for Dench Integrations (Gmail, Slack, GitHub, Notion, Google Calendar, Linear, Stripe, YouTube, and 500+ more)
gstack-workflow
Structured AI-assisted development workflow with specialist roles — Think, Plan, Build, Review, Test, Ship, Reflect. Adapted from garrytan/gstack (MIT).
plan-ceo-review
CEO/founder-mode plan review. Rethink the problem, find the 10-star product, challenge premises. Four modes: SCOPE EXPANSION, SELECTIVE EXPANSION, HOLD SCOPE, SCOPE REDUCTION. Use when reviewing strategy, questioning scope, or before engineering review.
investigate
Systematic root-cause debugging. Four phases: investigate, analyze, hypothesize, implement. Iron Law: no fixes without root cause investigation first. Use when debugging errors, unexpected behavior, or troubleshooting.
design-consultation
Build a complete design system from scratch. Research the landscape, propose safe choices AND creative risks, generate DESIGN.md. Use when creating a new design system or establishing design foundations for a project.
land-and-deploy
Merge the PR, wait for CI and deploy, verify production health. Takes over after ship. One command from "approved" to "verified in production."
Didn't find tool you were looking for?