Multi-repo development summary and timeline skill — scans one or more git repositories and produces a combined summary table with first commit date, latest commit date, total commits, duration, and per-repo breakdowns. Optionally generates a detailed report with file counts, contributor stats, commit frequency, and an HTML timeline dashboard. Use this skill whenever the user asks for development stats, project timeline, commit history summary, how long a project has been in development, or wants a combined view across multiple repos — including: "berapa lama dah develop", "development summary", "commit stats", "project timeline", "how many commits", "summarise all repos", "ringkasan development", "statistik commit", "berapa commit semua repo", "timeline projek ni", "development report".
インストール
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Multi-repo development summary and timeline skill — scans one or more git repositories and produces a combined summary table with first commit date, latest commit date, total commits, duration, and per-repo breakdowns. Optionally generates a detailed report with file counts, contributor stats, commit frequency, and an HTML timeline dashboard. Use this skill whenever the user asks for development stats, project timeline, commit history summary, how long a project has been in development, or wants a combined view across multiple repos — including: "berapa lama dah develop", "development summary", "commit stats", "project timeline", "how many commits", "summarise all repos", "ringkasan development", "statistik commit", "berapa commit semua repo", "timeline projek ni", "development report".
Dev Summary — Multi-Repo Development Stats & Timeline
Scans git repositories and produces combined development summaries with commit
stats, timelines, and optional detailed reports.
Command Reference
Command
Purpose
/dev-summary quick
Quick summary table — dates + commit counts
/dev-summary detailed
Detailed report — files, contributors, frequency
/dev-summary timeline
HTML timeline dashboard with charts
/dev-summary quick
Generate a quick combined summary table for one or more repos.
Steps
Get repo paths — ask the user for repo paths if not provided. Accept:
Current directory (default)
Multiple paths (comma or space separated)
Glob patterns (e.g., ~/Projects/2026/*)
For each repo, extract:
# First commit date
git log --reverse --format="%ai" | head -1
# Latest commit date
git log --format="%ai" | head -1
# Total commits
git log --oneline | wc -l
Present combined table:
## Development Summary
| Repo | Mula | Latest | Commits |
|---|---|---|---|
| **repo-name** | DD Mon YYYY | DD Mon YYYY | N |
| **TOTAL** | **earliest** | **latest** | **sum** |
-**Duration**: N days (N weeks)
-**Average**: ~N commits/day across all repos
Run all repo scans in parallel — use parallel tool calls for each repo
to minimize wait time.
Notes
Repo name is derived from directory name
Dates formatted as DD Mon YYYY (e.g., 8 Jan 2026)
Duration calculated from earliest first commit to latest last commit
Average commits/day = total commits / duration days
/dev-summary detailed
Generate a detailed development report with file counts, contributors, and
commit frequency analysis.
Steps
Run quick summary first — get base stats from /dev-summary quick