From workflow
Weekly retrospective. Review the past week's daily logs to identify patterns, wins, blockers, and accumulated tech debt.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workflow:weeklyThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run these steps to produce a weekly summary from the past 7 days.
Run these steps to produce a weekly summary from the past 7 days.
Check if .claude/daily-logs/ exists and list files from the past 7 days:
find .claude/daily-logs/ -name "*.md" -mtime -7 -type f | sort
Read each file found. If no daily logs exist, note that and proceed with git history only.
Run:
git log --oneline --since="7 days ago"
This gives the full picture even if daily logs are incomplete.
From the daily logs and git history, identify:
Patterns — What themes kept coming up? Were you repeatedly touching the same files or areas? Were there recurring types of work (bugfixes, features, refactors, reviews)?
Wins — What shipped? What was resolved? What PRs were merged? Any milestones hit?
Blockers — What slowed you down? Waiting on reviews? Flaky tests? Unclear requirements? External dependencies?
Tech Debt — What was explicitly deferred? What shortcuts were taken? What "TODO" or "FIXME" items were added?
For tech debt, also run:
git diff --unified=0 HEAD~50 | grep "^\+" | grep -iE "TODO|FIXME|HACK|WORKAROUND" || true
Adjust the depth if needed.
Ensure the directory exists:
mkdir -p .claude/weekly-logs
Determine the current ISO week:
date +%Y-W%V
Create the file .claude/weekly-logs/{YYYY-WNN}.md using the Write tool with this structure:
# Weekly Retrospective — {YYYY-WNN}
## Patterns
- ...
## Wins
- ...
## Blockers
- ...
## Tech Debt Accumulated
- ...
## Focus for Next Week
- ...
For the "Focus for Next Week" section: suggest priorities based on the blockers and tech debt identified. Ask the user to confirm or adjust.
End with a summary line:
Week in one sentence: {a single sentence capturing the week's theme}
Ask the user if the summary is accurate or if they want to add anything.
npx claudepluginhub artmin96/forge-studio --plugin workflowSummarizes git commit history into structured daily or weekly work reports for standups and project updates. Automatically categorizes commits and generates Markdown reports.
Runs weekly engineering retrospectives with git commit analysis, metrics, and period comparison. Activates on queries about shipped work.
Generates weekly engineering retrospectives from git history with per-person contributions, code quality metrics, and trend tracking.