zebbern/repo-audit
Deep analysis of Git history: identify frequently changed hotspot files, analyze code ownership by contributor, and scan for leaked secrets. Triggered when users ask about Git analysis, code hotspots, who owns what code, secret scanning, security audits of commit history, or optimizing code review assignments.
npx skills add https://github.com/zebbern/claude-code-guide --skill repo-audit
Perform three-dimensional analysis on a Git repository: hotspot file detection, code ownership analysis, and secret leak scanning.
scripts/hotfiles.sh)Identify the most frequently changed files in a repository to help spot:
Usage:
bash scripts/hotfiles.sh [options]
| Option | Description | Default |
|--------|-------------|---------|
| --repo PATH | Repository path | Current directory |
| --top N | Show top N files | 20 |
| --since DATE | Start date (e.g. 2024-01-01) | None |
| --until DATE | End date | None |
| --author AUTHOR | Filter by author | None |
| --format FORMAT | Output format: table / csv / json | table |
scripts/ownership.sh)Analyze actual code ownership, reporting for each contributor within the specified scope:
Usage:
bash scripts/ownership.sh [options]
| Option | Description | Default |
|--------|-------------|---------|
| --repo PATH | Repository path | Current directory |
| --path SUBPATH | Analyze a specific subdirectory or file | Entire repo |
| --top N | Show top N contributors | 10 |
| --since DATE | Start date | None |
| --format FORMAT | Output format: table / csv / json | table |
scripts/secret-scan.sh)Scan the full Git history (including deleted commits) for common secrets and sensitive information:
Usage:
bash scripts/secret-scan.sh [options]
| Option | Description | Default |
|--------|-------------|---------|
| --repo PATH | Repository path | Current directory |
| --branch BRANCH | Scan a specific branch | All branches |
| --since DATE | Start date | None |
| --format FORMAT | Output format: table / csv / json | table |
| --severity LEVEL | Minimum severity level: low / medium / high | low |
git (>= 2.20)bash (>= 4.0)awk, sort, head, grepNo additional dependencies or paid APIs required.
Take zebbern/repo-audit from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.