Claude-skill-registry gh-activity-report

Generate a plain-language activity report of your GitHub work for a given date range, including commits, pull requests, reviews, issues, and comments. Use this when you need to summarize what you've accomplished on GitHub for status updates, retrospectives, or tracking your work.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/gh-activity-report" ~/.claude/skills/majiayu000-claude-skill-registry-gh-activity-report && rm -rf "$T"
manifest: skills/data/gh-activity-report/SKILL.md
source content

GitHub activity report

This skill generates a markdown-friendly report of your GitHub activity over a date range using the

gh
CLI.

Usage

Run the bundled script with optional

START_DATE
and
END_DATE
(format:
YYYY-MM-DD
).

# Default: last 7 days
bash skills/gh-activity-report/activity-report.sh

# Specific range
bash skills/gh-activity-report/activity-report.sh 2026-01-01 2026-01-07

Requirements

  • gh
    (GitHub CLI) - must be authenticated (
    gh auth login
    )
  • jq
    - used for JSON counting and formatting

What It Does

  • Lists commits you authored in the date range.
  • Lists pull requests you created and merged.
  • Lists pull requests you reviewed.
  • Lists issues you created.
  • Prints simple summary counts for quick status updates.

How It Works

  • Uses
    gh search
    to query commits, PRs, and issues scoped to
    @me
    .
  • Uses platform-aware date defaults (macOS vs Linux) when you omit dates.
  • Formats output as readable markdown so you can paste it into status updates or pipe it into an LLM for summarization.

To generate a short natural-language summary, you can pipe the report into your preferred model:

bash skills/gh-activity-report/activity-report.sh 2026-01-01 2026-01-07 | claude "Summarize this in 2-3 sentences"