Loading...
Loading...
Create a personal GitHub coding retrospective from a date range and turn it into a short Markdown review. Research commit activity across accessible public and private repositories through the authenticated gh CLI, understand what the relevant repositories and subsystems are for, and write a prose retrospective with stats and highlights. Use when the user asks for a commit review, coding recap, engineering retrospective, GitHub activity story, weekly/monthly/yearly highlights, or a written summary of what their commits achieved.
npx skill4agent add jwa91/agentskills personal-commit-review--since--untilghgh api graphql -f query='query {
viewer {
login
contributionsCollection(from:"2026-03-01T00:00:00Z", to:"2026-03-07T23:59:59Z") {
totalCommitContributions
restrictedContributionsCount
commitContributionsByRepository(maxRepositories:25) {
repository {
nameWithOwner
description
isPrivate
url
primaryLanguage { name }
}
contributions(first:7) {
nodes { occurredAt commitCount }
}
}
}
}
}'uv run .agents/skills/personal-commit-review/scripts/collect_commit_review.py \
--since 2026-03-01 \
--until 2026-03-07 \
--output /tmp/commit-review.json \
--brief-out /tmp/commit-review-brief.mdgh repo view OWNER/REPO --json nameWithOwner,description,primaryLanguage,url
gh api --method GET repos/OWNER/REPO/commits -f author=USERNAME -f since=2026-03-01T00:00:00Z -f until=2026-03-07T23:59:59Z -f per_page=20
gh api --method GET repos/OWNER/REPO/commits/SHAtrnscrbgh auth status
gh api rate_limitgh auth refresh -s userscripts/collect_commit_review.py