ghscope generates auditable activity reports for GitHub organisations and users.
It pulls commits, pull requests, issues and reviews through the GitHub GraphQL API, then aggregates them into human‑readable reports in Markdown, HTML, PDF, JSON and CSV.
The HTML export is a self‑contained dashboard with a sidebar, filters and per‑entity breakdowns; PDFs are generated from the same template for a print‑ready view.
ghscope targets Python 3.12+.
With uv (recommended):
uv add ghscopeWith pip:
pip install ghscopeghscope uses a GitHub fine‑grained personal access token.
The token must have:
- Repository access to the repos you want to analyse (ideally “All repositories” for the organisation).
- Scopes/permissions that allow reading:
- code
- pull requests
- issues
- organisation members (for org‑wide reports)
You can pass the token explicitly or via environment variables.
Checked in order:
--tokenCLI flagGH_FINE_GRAINED_TOKENGITHUB_TOKENGH_TOKEN
Once installed, a ghscope entrypoint is available on your PATH.
Basic help:
ghscope --help
ghscope report --helpGenerate a Markdown report for an organisation over a date range:
ghscope report \
--org Alievs-corp \
--since 2026-01-01 \
--until 2026-02-28 \
--format md \
--output ./report.mdGenerate an HTML dashboard:
ghscope report \
--org Alievs-corp \
--since 2026-01-01 \
--until 2026-02-28 \
--format html \
--output ./report.htmlGenerate a JSON export suitable for further processing:
ghscope report \
--org Alievs-corp \
--since 2026-01-01 \
--until 2026-02-28 \
--format json \
--output ./report.jsonGenerate a PDF (requires WeasyPrint and its system dependencies):
ghscope report \
--org Alievs-corp \
--since 2026-01-01 \
--until 2026-02-28 \
--format pdf \
--output ./report.pdfYou can also run reports for a single user:
ghscope report \
--user martian56 \
--since 2026-01-01 \
--until 2026-02-28 \
--format html \
--output ./user-report.html--org and --user can be combined; the tool will analyse all repos visible to the token in that scope.
The HTML output is a static, portable dashboard with:
- Overview: repository count, commit/PR/issue totals, lines changed, active/inactive contributors.
- Contributors: per‑user activity, sorted by total impact.
- Repositories: per‑repo summaries (commits, lines, PRs, issues, distinct contributors).
- Activity timeline: stacked bars per day (commits, PRs, issues).
- Pull requests, commits, issues: detailed tables with titles/messages, authors, counts and state.
There is a small filter bar at the top:
- Focus on contributor: pick a user to see only their work; all sections (overview, repos, timeline, PRs, commits, issues) realign to that view.
- Filter by text: search across titles and messages.
The page is fully static: no build step, no external assets, and it can be served from any static host or converted to PDF.
Depending on the format, ghscope exports:
-
Aggregates
- per‑user counts (commits, lines added/deleted, PRs opened/merged, issues opened/closed/assigned, reviews given/received)
- per‑repo counts (commits, lines, PRs, issues, contributor count)
- active vs inactive contributors
- daily activity buckets
-
Raw entities
- users
- repositories
- commits
- pull requests
- issues
The JSON export contains both the aggregates and the raw entities so you can reshape the data as needed.
- The reports only include repositories and members that the token can see. If you expect more data than appears in a report, check the token’s repo and organisation permissions first.
- For large organisations, keep an eye on GitHub GraphQL rate limits.
ghscopelogs remaining calls and the reset time when you run with--verbose.