
Claude Dev Digest
- 1 repo stars
- Updated May 29, 2026
- abdelrahman-elkady/claude-dev-digest
claude-dev-digest is a Claude Code plugin that correlates your Claude Code sessions with GitHub PR activity to produce a structured dev-activity report.
About
claude-dev-digest is a Claude Code plugin that reports what you worked on by correlating your Claude Code sessions with your GitHub PR activity. It writes a structured report.json and a readable report.md grouped by repo and category. A developer uses it to answer questions like 'what did I work on this week?'. It auto-categorizes sessions and can enrich the report with Jira tickets when the Atlassian MCP is connected.
- Correlates Claude Code sessions with GitHub PR activity
- Outputs report.json and report.md dev digests
- Optionally enriches with Jira tickets via Atlassian MCP
Claude Dev Digest by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
claude-dev-digest capabilities & compatibility
- Capabilities
- activity reporting · session pr correlation · digest generation
- Works with
- github · jira · atlassian
- Use cases
- project management · documentation
- Pricing
- Free
/plugin marketplace add abdelrahman-elkady/claude-dev-digest/plugin install claude-dev-digest@claude-dev-digestAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 1 |
|---|---|
| Last updated | May 29, 2026 |
| Repository | abdelrahman-elkady/claude-dev-digest ↗ |
What it does
Correlate your Claude Code sessions with GitHub PR activity to produce a structured dev-activity digest report.
When should I use this skill?
When you want a report of what you worked on over a date range from your Claude Code sessions and GitHub PRs.
What you get
- report.json
- report.md
By the numbers
- 12 auto-categorized session types (implementation, debugging, refactor, etc.)
- default 7-day lookback
README.md
claude-dev-digest
A Claude Code plugin that shows you what you worked on. It correlates your Claude Code sessions with your GitHub PR activity and produces a structured report.
Prerequisites
- Claude Code, authenticated (run
/logininside Claude Code if prompted) ghCLI authenticated (gh auth login)- Python 3.8+
Install
In Claude Code, run:
/plugin marketplace add abdelrahman-elkady/claude-dev-digest
/plugin install claude-dev-digest@claude-dev-digest
To update later, run /plugin marketplace update claude-dev-digest.
Usage
In Claude Code, run:
/claude-dev-digest
Or just ask naturally -- "what did I work on this week?", "generate a dev digest", etc.
Options
/claude-dev-digest --days 14
/claude-dev-digest --from 2026-03-01 --to 2026-03-31
/claude-dev-digest --branches master,main,staging
/claude-dev-digest --format md
| Flag | Default | Description |
|---|---|---|
--days N |
7 |
How many days back to look |
--from / --to |
-- | Explicit date range (YYYY-MM-DD) |
--week-start DAY |
-- | Align to a weekday (e.g. sun) |
--user LOGIN |
current gh user |
GitHub user to report on |
--branches |
master,main |
Branches that count as "shipped" |
--output-dir PATH |
current directory (or ~/claude-dev-digest/ if Claude can't resolve it) |
Where to write output |
--format |
all |
json, md, or all |
--no-reviews |
off | Skip reviewed PRs |
What you get
The report is written to your current working directory by default (override with --output-dir):
report.json-- structured data with your sessions, PRs (authored + reviewed), how they correlate, Jira ticket IDs, and summary totalsreport.md-- a readable Markdown digest grouped by repo and category
Each session is auto-categorized (implementation, debugging, refactor, exploration, planning, docs, review, devops, testing, meta, ask, other) and linked to the PRs it contributed to.
If the Atlassian MCP is connected, Claude can also enrich the report with real Jira ticket summaries.
To visualize report.json in a browser, see weekly-report-visualizer.
Development
Install from a local checkout instead of GitHub:
/plugin marketplace add /absolute/path/to/claude-dev-digest
/plugin install claude-dev-digest@claude-dev-digest
Refresh the installed copy after editing:
/plugin marketplace update claude-dev-digest
Uninstall:
/plugin uninstall claude-dev-digest@claude-dev-digest
/plugin marketplace remove claude-dev-digest