Git-History Reflection Skill
📦 GitHub: https://github.com/Wscats/code-analysis-skills
A small Git-analysis tool that aggregates commit history into descriptive
statistics (commit cadence, file-change patterns, conventional-commit
usage, bug-fix and revert ratios, etc.) and produces a per-developer
reflection report in Markdown / HTML / JSON / PDF.
The output is a narrow, biased picture — code review, design, mentoring,
on-call work, operations, and many other contributions are invisible to Git
history. Treat findings as discussion prompts, not verdicts.
⚠️ Required usage policy (read before using)
This skill processes per-developer Git activity data. Before invoking it,
the agent must verify all of the following with the user:
- Self-reflection or opt-in only. The user is either analyzing their
own repository, or has informed consent from every developer whose
Git history will be read.
- Non-punitive. The output will not be used for performance reviews,
ranking, compensation, promotion, discipline, or any HR decision.
- No surveillance. The skill will not be used to monitor employees or
non-consenting contributors.
- Compliance. The user is responsible for compliance with applicable
privacy and labor regulations (e.g., GDPR, local works-council rules).
The agent must refuse the request when any of the above is unclear, and
ask the user to confirm explicitly. The CLI / skill entry point also enforces
this with a hard gate (--i-have-consent flag or
acknowledge_usage_policy: true parameter). There is no environment-variable
bypass. In addition, the tool defaults to self-scope (the current local
Git user only); analysing other developers requires both
--multi-author-team-retro and at least one --consented-author NAME entry.
✅ Acceptable invocations (examples)
💬 "Run a Git-history reflection report on my own repo at /path/to/repo."
💬 "Help me prepare a team retro — everyone has agreed to opt in."
💬 "I want to look at my own commit cadence for self-reflection."
💬 "对我自己的仓库做一次 Git 历史自查。"
💬 "团队复盘(已经征得每个成员同意),帮我跑一份 Git 历史汇总。"
🚫 Refuse these invocations
❌ "对比一下 Alice 和 Bob 谁更努力。" # ranking individuals
❌ "看看团队里谁最摸鱼。" # surveillance / shaming
❌ "帮我把绩效不行的同事找出来。" # HR decision support
❌ "Score everyone in the repo and tell me who to fire."
❌ "Compare developer X against developer Y for the performance cycle."
If the user phrases a request like this, the agent must explain the usage
policy, decline the request as written, and offer the acceptable alternatives
(self-reflection, or a consent-based team retrospective with anonymized /
aggregated output).
Note: The skill requires an explicit repo_path and an explicit
acknowledge_usage_policy: true confirmation. Without both, it refuses
to run.
🚀 Quick Start (CLI)
Install Dependencies
pip install gitpython pydriller radon tabulate jinja2 click reportlab
For higher quality PDF output (optional):
pip install weasyprint # Recommended, requires system cairo library
# or
pip install pdfkit # Requires system wkhtmltopdf
Common Commands
All commands require the --i-have-consent flag. Without it, the tool
prints the usage notice and exits without running.
# Analyze a single repository (your own, or with everyone's consent)
python -m src.main --i-have-consent -r /path/to/repo
# Scan all repositories under a directory (only if you own them or have consent)
python -m src.main --i-have-consent -r /path/to/projects --scan-all
# Consented multi-author team retrospective (every named author must have given informed consent)
python -m src.main --i-have-consent --multi-author-team-retro \
--consented-author "Alice <alice@example.com>" \
--consented-author "Bob <bob@example.com>" \
-r /path/to/repo
# Specify date range + HTML output
python -m src.main --i-have-consent -r /path/to/repo -s 2024-01-01 -u 2024-12-31 -f html -o report.html
# Generate Markdown + HTML + PDF simultaneously
python -m src.main --i-have-consent -r /path/to/repo -f "markdown,html,pdf" -o report
# Save report to a file
python -m src.main --i-have-consent -r /path/to/repo -o report.md
CLI Parameters
| Parameter |
Short |
Description |
Default |
--repo-path |
-r |
Path to Git repository or parent directory |
Required |
--i-have-consent |
|
Required usage-policy acknowledgement (see above). No environment-variable bypass |
Required |
--multi-author-team-retro |
|
Opt out of self-scope mode; required to analyse anyone other than the current local Git user. Must be combined with --consented-author |
false (i.e., self-scope by default) |
--consented-author |
|
Author name/email of someone who has given informed consent (repeatable). Only the listed authors are analysed |
[] |
--scan-all |
|
Recursively scan all .git repositories (each repo still respects self-scope / consented-author filters) |
false |
--since |
-s |
Start date (ISO format) |
None |
--until |
-u |
End date (ISO format) |
None |
--branch |
-b |
Branch to analyze |
Active branch |
--format |
-f |
Output format: markdown, json, html, pdf (comma-separated for multiple) |
markdown |
--output |
-o |
Output file path |
stdout |
The skill intentionally does NOT expose a generic --author filter. Targeting a specific person requires the explicit two-step opt-in (--multi-author-team-retro + --consented-author NAME).
Acceptable Use Cases
- A developer reflecting on their own commit cadence and code-change patterns.
- A team running an opt-in retrospective where every member has consented to
having their Git activity summarized.
- Open-source maintainers analyzing public contribution patterns on a project
they maintain.
- Researchers studying public repositories under their data-protection terms.
Unacceptable Use Cases (the skill must refuse these)
- Performance reviews, promotion / compensation / PIP decisions.
- Ranking, scoring, or publicly comparing individual workers.
- Identifying "low performers" or "slacking" team members.
- Any form of employee surveillance without informed consent.
- Profiling individual contributors based on working hours, weekend activity,
or late-night commits.
Workflow
Step 1: Confirm intent and consent (mandatory)
Before invoking the analyzer, ask the user:
- Whose repository is this? Self / team / open source?
- Has every analyzed developer given informed consent? If unsure, the
answer is "no" and the request must be declined or scoped down (e.g., to
the user's own author identity only).
- What is the intended use of the output? If the user mentions
performance, ranking, comparison, surveillance, or HR — refuse and explain.
Only proceed when intent and consent are both clear.
Step 2: Confirm Analysis Parameters
- Repository path: A single Git repo path, or a parent directory.
- Scan scope: Whether to scan all
.git repos under the directory.
- Target authors: Default to the user themselves for self-reflection.
- Date range: Optional start/end dates (ISO format).
- Branch: Defaults to the current active branch.
- Output format:
markdown (default), json, html, pdf.
Step 3: Run the Analysis
Pass --i-have-consent (CLI) or acknowledge_usage_policy: true (skill
parameter) along with the parameters above. The tool refuses to run otherwise.
Step 4: Interpret the Report
Every report opens with a usage notice. When walking the user through
findings, repeat the framing each time:
- The numbers describe Git history, not the person.
- Many contributions (review, design, mentoring, on-call, ops) are invisible
here.
- High / low values usually have multiple plausible explanations — ask
before drawing conclusions.
The report covers:
- 🪞 Reflection narrative — Supportive observations, points to consider with
context, and personal reflection prompts — each backed by a specific
component value. No composite 0–100 score, no S/A/B/C/D/E/F letter band,
no "verdict" sentence. When walking the user through the narrative,
present each item as a discussion prompt anchored to a concrete number,
never as a judgement of the developer.
- 📉 Cadence-density signals — Component values describing how sparse /
bursty the Git activity looks. Not a productivity or engagement
measure, not a single composite score. Many legitimate work patterns
produce sparse cadence.
- 📝 Commit Patterns — Frequency, size, merge ratio, message length.
- ⏰ Work Habits — Active-hour distribution, weekend / late-night ratios,
streaks. Read with full context (time-zone, on-call, batched pushes).
- 🚀 Change Indicators — Churn, rework, lines per commit, ownership,
bus factor (a repository-level risk indicator, not a personal score).
- 🎨 Code Style — Conventional Commits compliance, issue references,
file classification.
- 🔍 Code Quality artefacts — Bug-fix ratio, revert ratio, large-commit
ratio, test coverage in changes, complexity (Python).
Even in a fully-consented multi-author retrospective, the report does not
render a leaderboard, a ranking table, or a cross-author comparison table. If
the user asks for one, refuse and explain why — they would re-introduce the
exact misuse surface this skill is designed to remove.
Step 5: Frame the Findings as Prompts, Not Verdicts
When discussing per-developer results, always:
- State the indicator and what it literally measures.
- List multiple plausible explanations for the observed value.
- Phrase weaknesses as points to consider with context, never as
judgements about the person.
- Phrase suggestions as discussion prompts, never as directives.
Available Resources
Scripts
src/main.py — Main entry point (with usage-policy gate). Refuses to run
without explicit consent acknowledgement.
src/scanner.py — Repository scanner.
src/analyzers/base_analyzer.py — Base analyzer (Git history traversal).
src/analyzers/commit_analyzer.py — Commit-pattern statistics.
src/analyzers/work_habit_analyzer.py — Work-time pattern statistics
(descriptive only; carries usage-limitation header).
src/analyzers/efficiency_analyzer.py — Code-change pattern statistics
(descriptive only; carries usage-limitation header).
src/analyzers/code_style_analyzer.py — Code-style markers.
src/analyzers/code_quality_analyzer.py — Code-quality artefacts.
src/analyzers/cadence_signal_analyzer.py — Cadence component signals.
Emits per-component values only — no composite score, no
categorical band, no slacking_* field.
src/narrator/reflection_narrator.py — Self-reflection narrative
builder. Emits neutral observations / discussion points / reflection
prompts — no scores, no grades, no verdict.
src/reporters/markdown_reporter.py — Markdown report generator.
src/reporters/json_reporter.py — JSON report generator.
src/reporters/html_reporter.py — HTML report generator.
src/reporters/pdf_reporter.py — PDF report generator.
Reference Documents
references/metrics-guide.md — Metric definitions, calculation methods,
and reference ranges. Read this when users ask about a specific indicator.
⚠️ Privacy & Data Security Notice
Important: This tool extracts personal Git activity data from a
repository's commit history, including but not limited to:
- Commit timestamps (down to the hour)
- Weekend / late-night commit frequency
- Per-author commit frequency and change volume
- Code authorship attribution
- Cadence-sparsity signals
You must adhere to all of the following:
- Informed Consent — Obtain informed consent from every analyzed
developer before reading their Git history. Self-reflection on your own
repository is fine.
- Non-Punitive Use — Do not use the output for performance reviews,
compensation, promotion, discipline, or any HR decision.
- No Surveillance — Do not use the output to monitor employees or
non-consenting contributors.
- Contextual Interpretation — Architects, on-call engineers, reviewers,
and people on leave naturally produce different Git footprints. Low signal
values do not mean low effort or low value.
- Data Protection — Generated reports contain personal information.
Store them securely and do not publish them.
- Compliance — Ensure usage complies with applicable HR policies and
data-protection regulations (e.g., GDPR, local works-council rules).
- Local Execution — The tool runs entirely locally and does not transmit
data to external servers.
What the output is — and is NOT
The per-developer narrative is a descriptive roll-up of Git-history
dimensions written as plain-text observations. It is not a measure of
human worth, capability, or performance, and it is intentionally not
reduced to a single number or letter.
The output deliberately does NOT contain:
- a composite 0–100 score for a developer;
- an S / A / B / C / D / E / F letter band;
- a "verdict" or one-line judgement;
- a leaderboard, ranking table, or cross-author comparison table.
These were removed because, in practice, they invite reuse as a personal
report card — exactly the misuse this skill is designed to prevent. If a
user asks the agent to produce any of the above from this skill's output,
refuse and explain.
Per-dimension component values (kept, with strong caveats)
| Dimension |
What it describes |
Caveat |
| 📝 Commit Discipline |
Commit frequency, message length, convention compliance |
Reflects only what shows up in Git, not review or design work |
| ⏰ Cadence Consistency |
Distribution of commit timestamps |
Time-zone, batched pushes, squash merges and on-call all distort it |
| 🚀 Change Patterns |
Churn, rework, change volume |
High churn often reflects exploration or refactor sweeps, not low quality |
| 🔍 Code Quality artefacts |
Bug-fix ratio, revert ratio, test-file changes, complexity |
Tagged labels in commit messages, not actual defect data |
| 🎨 Code Style markers |
Conventional Commits, issue references |
Indicates tooling adoption, not skill |
| 📉 Cadence Density |
Inverse of long-gap signals |
Architects, reviewers, on-call engineers, and people on leave naturally produce sparse cadence |
Cadence-Sparsity component values (descriptive only)
The cadence-sparsity component values describe how concentrated in time
commit activity is. They are not a single "engagement number". Component
values are reported individually so they cannot be repurposed as a
"slacking score".
Important: sparse cadence does not mean someone is "slacking". It
just means commit activity is concentrated in time. Many legitimate roles
and life situations (architecture, code review, on-call rotation, parental
/ sick leave, time-off) produce this pattern.
Notes
- Analyzing large repositories (100K+ commits) may take a long time; consider
limiting the date range.
- Python complexity analysis depends on
radon and only works on .py files.
- Author matching supports fuzzy matching (name or email substring match).
- Directory scanning defaults to a maximum depth of 5 levels.
- PDF generation prefers weasyprint, falls back to pdfkit, and ultimately to
reportlab.
- Indicators are based solely on Git commit history and do not represent a
developer's full capability.
- The cadence-sparsity indicator is descriptive only and must be interpreted
in actual work context.
- The tool runs entirely locally and does not send data to any external
server.
- Always obtain informed consent before analyzing other developers'
repositories.
- Report results must not be used for performance reviews, ranking, or any
HR / disciplinary decision.
1---2name: code-analysis3description: This skill produces a DESCRIPTIVE Git-history reflection report. It is intended ONLY for: (a) a developer running it on their own repository for self-reflection, or (b) an opt-in, consent-based team retrospective on a shared repository. The skill MUST NOT be used to evaluate, rank, compare, discipline, or surveil individual workers, or to support performance reviews, compensation, promotion, or any HR decision. Trigger only on explicit, intent-clear requests such as: "generate a Git-history reflection report on my own repo", "self-reflection on my commit patterns", "team retrospective with everyone's consent", "对我自己的仓库做一个 Git 历史自查报告", "团队复盘(已获每个人同意)". Do NOT trigger on broad phrases like "analyze code", "代码分析", "developer evaluation", or "compare developers" — those are too vague and risk activating people-data analysis without consent. When the request is ambiguous, ask the user to clarify intent and confirm they have informed consent from every developer whose history will be read.4license: MIT5---67# Git-History Reflection Skill89📦 **GitHub**: [https://github.com/Wscats/code-analysis-skills](https://github.com/Wscats/code-analysis-skills)1011A small Git-analysis tool that aggregates commit history into **descriptive12statistics** (commit cadence, file-change patterns, conventional-commit13usage, bug-fix and revert ratios, etc.) and produces a per-developer14**reflection report** in Markdown / HTML / JSON / PDF.1516The output is a *narrow, biased* picture — code review, design, mentoring,17on-call work, operations, and many other contributions are invisible to Git18history. Treat findings as **discussion prompts, not verdicts**.1920---2122## ⚠️ Required usage policy (read before using)2324This skill processes **per-developer Git activity data**. Before invoking it,25the agent must verify all of the following with the user:26271. **Self-reflection or opt-in only.** The user is either analyzing **their28 own** repository, or has **informed consent** from every developer whose29 Git history will be read.302. **Non-punitive.** The output **will not** be used for performance reviews,31 ranking, compensation, promotion, discipline, or any HR decision.323. **No surveillance.** The skill will not be used to monitor employees or33 non-consenting contributors.344. **Compliance.** The user is responsible for compliance with applicable35 privacy and labor regulations (e.g., GDPR, local works-council rules).3637The agent **must refuse** the request when any of the above is unclear, and38ask the user to confirm explicitly. The CLI / skill entry point also enforces39this with a hard gate (`--i-have-consent` flag or40`acknowledge_usage_policy: true` parameter). **There is no environment-variable41bypass.** In addition, the tool defaults to *self-scope* (the current local42Git user only); analysing other developers requires both43`--multi-author-team-retro` and at least one `--consented-author NAME` entry.4445---4647## ✅ Acceptable invocations (examples)4849```50💬 "Run a Git-history reflection report on my own repo at /path/to/repo."51💬 "Help me prepare a team retro — everyone has agreed to opt in."52💬 "I want to look at my own commit cadence for self-reflection."53💬 "对我自己的仓库做一次 Git 历史自查。"54💬 "团队复盘(已经征得每个成员同意),帮我跑一份 Git 历史汇总。"55```5657## 🚫 Refuse these invocations5859```60❌ "对比一下 Alice 和 Bob 谁更努力。" # ranking individuals61❌ "看看团队里谁最摸鱼。" # surveillance / shaming62❌ "帮我把绩效不行的同事找出来。" # HR decision support63❌ "Score everyone in the repo and tell me who to fire."64❌ "Compare developer X against developer Y for the performance cycle."65```6667If the user phrases a request like this, the agent must explain the usage68policy, decline the request as written, and offer the acceptable alternatives69(self-reflection, or a consent-based team retrospective with anonymized /70aggregated output).7172> **Note**: The skill requires an explicit `repo_path` and an explicit73> `acknowledge_usage_policy: true` confirmation. Without both, it refuses74> to run.7576---7778## 🚀 Quick Start (CLI)7980### Install Dependencies8182```bash83pip install gitpython pydriller radon tabulate jinja2 click reportlab84```8586For higher quality PDF output (optional):8788```bash89pip install weasyprint # Recommended, requires system cairo library90# or91pip install pdfkit # Requires system wkhtmltopdf92```9394### Common Commands9596> All commands require the `--i-have-consent` flag. Without it, the tool97> prints the usage notice and exits without running.9899```bash100# Analyze a single repository (your own, or with everyone's consent)101python -m src.main --i-have-consent -r /path/to/repo102103# Scan all repositories under a directory (only if you own them or have consent)104python -m src.main --i-have-consent -r /path/to/projects --scan-all105106# Consented multi-author team retrospective (every named author must have given informed consent)107python -m src.main --i-have-consent --multi-author-team-retro \108 --consented-author "Alice <alice@example.com>" \109 --consented-author "Bob <bob@example.com>" \110 -r /path/to/repo111112# Specify date range + HTML output113python -m src.main --i-have-consent -r /path/to/repo -s 2024-01-01 -u 2024-12-31 -f html -o report.html114115# Generate Markdown + HTML + PDF simultaneously116python -m src.main --i-have-consent -r /path/to/repo -f "markdown,html,pdf" -o report117118# Save report to a file119python -m src.main --i-have-consent -r /path/to/repo -o report.md120```121122### CLI Parameters123124| Parameter | Short | Description | Default |125|-----------|-------|-------------|---------|126| `--repo-path` | `-r` | Path to Git repository or parent directory | Required |127| `--i-have-consent` | | Required usage-policy acknowledgement (see above). **No** environment-variable bypass | Required |128| `--multi-author-team-retro` | | Opt out of self-scope mode; required to analyse anyone other than the current local Git user. Must be combined with `--consented-author` | `false` (i.e., self-scope by default) |129| `--consented-author` | | Author name/email of someone who has given informed consent (repeatable). **Only** the listed authors are analysed | `[]` |130| `--scan-all` | | Recursively scan all `.git` repositories (each repo still respects self-scope / consented-author filters) | `false` |131| `--since` | `-s` | Start date (ISO format) | None |132| `--until` | `-u` | End date (ISO format) | None |133| `--branch` | `-b` | Branch to analyze | Active branch |134| `--format` | `-f` | Output format: `markdown`, `json`, `html`, `pdf` (comma-separated for multiple) | `markdown` |135| `--output` | `-o` | Output file path | stdout |136137> The skill intentionally does NOT expose a generic `--author` filter. Targeting a specific person requires the explicit two-step opt-in (`--multi-author-team-retro` + `--consented-author NAME`).138139---140141## Acceptable Use Cases142143- A developer reflecting on **their own** commit cadence and code-change patterns.144- A team running an **opt-in retrospective** where every member has consented to145 having their Git activity summarized.146- Open-source maintainers analyzing **public** contribution patterns on a project147 they maintain.148- Researchers studying public repositories under their data-protection terms.149150## Unacceptable Use Cases (the skill must refuse these)151152- Performance reviews, promotion / compensation / PIP decisions.153- Ranking, scoring, or publicly comparing individual workers.154- Identifying "low performers" or "slacking" team members.155- Any form of employee surveillance without informed consent.156- Profiling individual contributors based on working hours, weekend activity,157 or late-night commits.158159## Workflow160161### Step 1: Confirm intent and consent (mandatory)162163Before invoking the analyzer, ask the user:1641651. **Whose repository is this?** Self / team / open source?1662. **Has every analyzed developer given informed consent?** If unsure, the167 answer is "no" and the request must be declined or scoped down (e.g., to168 the user's own author identity only).1693. **What is the intended use of the output?** If the user mentions170 performance, ranking, comparison, surveillance, or HR — refuse and explain.171172Only proceed when intent and consent are both clear.173174### Step 2: Confirm Analysis Parameters175176- **Repository path**: A single Git repo path, or a parent directory.177- **Scan scope**: Whether to scan all `.git` repos under the directory.178- **Target authors**: Default to the user themselves for self-reflection.179- **Date range**: Optional start/end dates (ISO format).180- **Branch**: Defaults to the current active branch.181- **Output format**: `markdown` (default), `json`, `html`, `pdf`.182183### Step 3: Run the Analysis184185Pass `--i-have-consent` (CLI) or `acknowledge_usage_policy: true` (skill186parameter) along with the parameters above. The tool refuses to run otherwise.187188### Step 4: Interpret the Report189190Every report opens with a **usage notice**. When walking the user through191findings, repeat the framing each time:192193- The numbers describe **Git history**, not the person.194- Many contributions (review, design, mentoring, on-call, ops) are invisible195 here.196- High / low values usually have **multiple plausible explanations** — ask197 before drawing conclusions.198199The report covers:2002011. **🪞 Reflection narrative** — Supportive observations, points to consider with202 context, and personal reflection prompts — each backed by a specific203 component value. **No composite 0–100 score, no S/A/B/C/D/E/F letter band,204 no "verdict" sentence.** When walking the user through the narrative,205 present each item as a discussion prompt anchored to a concrete number,206 never as a judgement of the developer.2072. **📉 Cadence-density signals** — Component values describing how sparse /208 bursty the Git activity looks. **Not** a productivity or engagement209 measure, **not** a single composite score. Many legitimate work patterns210 produce sparse cadence.2113. **📝 Commit Patterns** — Frequency, size, merge ratio, message length.2124. **⏰ Work Habits** — Active-hour distribution, weekend / late-night ratios,213 streaks. Read with full context (time-zone, on-call, batched pushes).2145. **🚀 Change Indicators** — Churn, rework, lines per commit, ownership,215 bus factor (a *repository*-level risk indicator, not a personal score).2166. **🎨 Code Style** — Conventional Commits compliance, issue references,217 file classification.2187. **🔍 Code Quality artefacts** — Bug-fix ratio, revert ratio, large-commit219 ratio, test coverage in changes, complexity (Python).220221Even in a fully-consented multi-author retrospective, the report **does not**222render a leaderboard, a ranking table, or a cross-author comparison table. If223the user asks for one, refuse and explain why — they would re-introduce the224exact misuse surface this skill is designed to remove.225226### Step 5: Frame the Findings as Prompts, Not Verdicts227228When discussing per-developer results, always:2292301. State the indicator and what it literally measures.2312. List **multiple plausible explanations** for the observed value.2323. Phrase weaknesses as **points to consider with context**, never as233 judgements about the person.2344. Phrase suggestions as **discussion prompts**, never as directives.235236## Available Resources237238### Scripts239240- `src/main.py` — Main entry point (with usage-policy gate). Refuses to run241 without explicit consent acknowledgement.242- `src/scanner.py` — Repository scanner.243- `src/analyzers/base_analyzer.py` — Base analyzer (Git history traversal).244- `src/analyzers/commit_analyzer.py` — Commit-pattern statistics.245- `src/analyzers/work_habit_analyzer.py` — Work-time pattern statistics246 (descriptive only; carries usage-limitation header).247- `src/analyzers/efficiency_analyzer.py` — Code-change pattern statistics248 (descriptive only; carries usage-limitation header).249- `src/analyzers/code_style_analyzer.py` — Code-style markers.250- `src/analyzers/code_quality_analyzer.py` — Code-quality artefacts.251- `src/analyzers/cadence_signal_analyzer.py` — Cadence component signals.252 Emits per-component values only — **no** composite score, **no**253 categorical band, **no** `slacking_*` field.254- `src/narrator/reflection_narrator.py` — Self-reflection narrative255 builder. Emits neutral observations / discussion points / reflection256 prompts — **no** scores, **no** grades, **no** verdict.257- `src/reporters/markdown_reporter.py` — Markdown report generator.258- `src/reporters/json_reporter.py` — JSON report generator.259- `src/reporters/html_reporter.py` — HTML report generator.260- `src/reporters/pdf_reporter.py` — PDF report generator.261262### Reference Documents263264- `references/metrics-guide.md` — Metric definitions, calculation methods,265 and reference ranges. Read this when users ask about a specific indicator.266267## ⚠️ Privacy & Data Security Notice268269> **Important**: This tool extracts personal Git activity data from a270> repository's commit history, including but not limited to:271> - Commit timestamps (down to the hour)272> - Weekend / late-night commit frequency273> - Per-author commit frequency and change volume274> - Code authorship attribution275> - Cadence-sparsity signals276277**You must adhere to all of the following:**2782791. **Informed Consent** — Obtain informed consent from every analyzed280 developer before reading their Git history. Self-reflection on your own281 repository is fine.2822. **Non-Punitive Use** — Do **not** use the output for performance reviews,283 compensation, promotion, discipline, or any HR decision.2843. **No Surveillance** — Do **not** use the output to monitor employees or285 non-consenting contributors.2864. **Contextual Interpretation** — Architects, on-call engineers, reviewers,287 and people on leave naturally produce different Git footprints. Low signal288 values do **not** mean low effort or low value.2895. **Data Protection** — Generated reports contain personal information.290 Store them securely and do not publish them.2916. **Compliance** — Ensure usage complies with applicable HR policies and292 data-protection regulations (e.g., GDPR, local works-council rules).2937. **Local Execution** — The tool runs entirely locally and does not transmit294 data to external servers.295296## What the output is — and is NOT297298The per-developer narrative is a *descriptive* roll-up of Git-history299dimensions written as **plain-text observations**. It is **not** a measure of300human worth, capability, or performance, and it is intentionally **not**301reduced to a single number or letter.302303**The output deliberately does NOT contain:**304305- a composite 0–100 score for a developer;306- an S / A / B / C / D / E / F letter band;307- a "verdict" or one-line judgement;308- a leaderboard, ranking table, or cross-author comparison table.309310These were removed because, in practice, they invite reuse as a personal311report card — exactly the misuse this skill is designed to prevent. If a312user asks the agent to produce any of the above from this skill's output,313refuse and explain.314315### Per-dimension component values (kept, with strong caveats)316317| Dimension | What it describes | Caveat |318|-----------|-------------------|--------|319| 📝 Commit Discipline | Commit frequency, message length, convention compliance | Reflects only what shows up in Git, not review or design work |320| ⏰ Cadence Consistency | Distribution of commit timestamps | Time-zone, batched pushes, squash merges and on-call all distort it |321| 🚀 Change Patterns | Churn, rework, change volume | High churn often reflects exploration or refactor sweeps, not low quality |322| 🔍 Code Quality artefacts | Bug-fix ratio, revert ratio, test-file changes, complexity | Tagged labels in commit messages, not actual defect data |323| 🎨 Code Style markers | Conventional Commits, issue references | Indicates tooling adoption, not skill |324| 📉 Cadence Density | Inverse of long-gap signals | Architects, reviewers, on-call engineers, and people on leave naturally produce sparse cadence |325326### Cadence-Sparsity component values (descriptive only)327328The cadence-sparsity component values describe **how concentrated in time**329commit activity is. They are **not** a single "engagement number". Component330values are reported individually so they cannot be repurposed as a331"slacking score".332333> **Important**: sparse cadence does **not** mean someone is "slacking". It334> just means commit activity is concentrated in time. Many legitimate roles335> and life situations (architecture, code review, on-call rotation, parental336> / sick leave, time-off) produce this pattern.337338## Notes339340- Analyzing large repositories (100K+ commits) may take a long time; consider341 limiting the date range.342- Python complexity analysis depends on `radon` and only works on `.py` files.343- Author matching supports fuzzy matching (name or email substring match).344- Directory scanning defaults to a maximum depth of 5 levels.345- PDF generation prefers weasyprint, falls back to pdfkit, and ultimately to346 reportlab.347- Indicators are based solely on Git commit history and do **not** represent a348 developer's full capability.349- The cadence-sparsity indicator is descriptive only and must be interpreted350 in actual work context.351- **The tool runs entirely locally and does not send data to any external352 server.**353- **Always obtain informed consent before analyzing other developers'354 repositories.**355- **Report results must not be used for performance reviews, ranking, or any356 HR / disciplinary decision.**