Agent skill · Code Review & Quality

retro

Weekly engineering retrospective. Analyzes commit history, work patterns, and code quality metrics with persistent history and trend tracking. Use when asked to "weekly retro", "what did we ship", or "engineering retrospective". Proactively suggest at the end of a work week or sprint.

majiayu000github.com/majiayu000GitHub ↗
claude-codecan modify filesMIT
Install
npx skills add majiayu000/claude-skill-registry --skill retro-jovieinc-jovie --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 35 KB
Bundled scripts: none
Version: 2.0.0
Allowed tools: -Bash-Read-Write-Glob-AskUserQuestion
Path: skills/analysis/retro-jovieinc-jovie/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

Review
written from the skill's own SKILL.md · Aug 5, 2026

What it does

Generates a comprehensive weekly retrospective by analyzing commit history, work patterns, and code quality metrics. Identifies the user running the retro and then analyzes every contributor with per-person praise and growth opportunities. Designed for Claude Code users at senior IC/CTO level.

How it works

The skill parses the /retro command with optional time-window arguments to determine a 7, 24h, 14d, or 30d window (default 7 days). It computes midnight-aligned start dates for day/week units and uses git log queries with explicit --since timestamps. It fetches origin, identifies the current user, and then analyzes contributors, producing per-person praise and growth opportunities. It supports a compare mode to contrast current vs prior windows. It requires parsing arguments, calculating start dates, and running git commands like git log with --since and related filters. The exact steps include validating the argument, computing the window, gathering data, and formatting a report that highlights individual contributions and areas for improvement.

When to use it

Use when the user issues the /retro command (default last 7 days) to generate a weekly retrospective. Optional: /retro 24h, /retro 14d, /retro 30d, or /retro compare variants to compare windows.

What it can touch

This skill touches git data via commands like git fetch origin <default> --quiet and git log with --since, reads repository history, and analyzes per-contributor metrics. It requires access to the local git repository and network to fetch origin.

Caveats

The skill description specifies handling local time zones and midnight-aligned windows, and explicit formatting for --since dates. It relies on correct detection of the repository default branch name and the current user. It does not guarantee specific outcome quality; outputs depend on repository history and provided time window. License is MIT (as per frontmatter).

From the SKILL.md

<!-- AUTO-GENERATED from SKILL.md.tmpl — do not edit directly --> <!-- Regenerate: bun run gen:skill-docs --> ## Preamble (run first) ```bash _UPD=$(~/.claude/skills/gstack/bin/gstack-update-check 2>/dev/null || .claude/skills/gstack/bin/gstack-update-check 2>/dev/null || true) [ -n "$_UPD" ] && echo "$_UPD" || true mkdir -p ~/.gstack/sessions touch ~/.gstack/sessions/"$PPID" _SESSIONS=$(find ~/.gstack/sessions -mmin -120 -type f 2>/dev/null | wc -l | tr -d ' ') find ~/.gstack/sessions -mmin +120 -type f -delete 2>/dev/null || true _CONTRIB=$(~/.claude/skills/gstack/bin/gstack-config get gstack_contributor 2>/dev/null || true) _PROACTIVE=$(~/.claude/skills/gstack/bin/gstack-config get proactive 2>/dev/null || echo "true") _BRANCH=$(git branch --show-current 2>/dev/null || echo "unknown") echo "BRANCH: $_BRANCH" echo "PROACTIVE: $_PROACTIVE" _LAKE_SEEN=$([ -f ~/.gstack/.completeness-intro-seen ] && echo "yes" || echo "no") echo "LAKE_INTRO: $_LAKE_SEEN" _TEL=$(~/.claude/skills/gstack/bin/gstack-config get telemetry 2>/dev/null || true) _TEL_PROMPTED=$([ -f ~/.gstack/.telemetry-prompted ] && echo "yes" || echo "no") _TEL_START=$(date +%s) _SESSION_ID="$$-$(date +%s)" echo "TELEMETRY:

What's inside
Steps it walks through
  1. Preamble (run first)
  2. AskUserQuestion Format
  3. Completeness Principle — Boil the Lake
  4. Search Before Building
  5. Contributor Mode
  6. Completion Status Protocol
  7. Escalation
  8. Telemetry (run last)
  9. Detect default branch
  10. User-invocable
  11. Arguments
  12. Instructions
  13. Step 1: Gather Raw Data
  14. Step 2: Compute Metrics
Ships with 1 file
  • metadata.json
Commands it runs
mkdir -p ~/.gstack/sessions
touch ~/.gstack/sessions/"$PPID"
find ~/.gstack/sessions -mmin +120 -type f -delete 2>/dev/null || true
echo "BRANCH: $_BRANCH"
echo "PROACTIVE: $_PROACTIVE"
echo "LAKE_INTRO: $_LAKE_SEEN"
echo "TELEMETRY: ${_TEL:-off}"
echo "TEL_PROMPTED: $_TEL_PROMPTED"
mkdir -p ~/.gstack/analytics
open https://garryslist.org/posts/boil-the-ocean
More from claude-skill-registry
All skills →
About this skill
What does the retro skill do?

Weekly engineering retrospective. Analyzes commit history, work patterns, and code quality metrics with persistent history and trend tracking. Use when asked to "weekly retro", "what did we ship", or "engineering retrospective". Proactively suggest at the end of a work week or sprint.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill retro-jovieinc-jovie --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going