/report
Generate a project analytics report covering code quality, velocity, and health metrics.
$ npx -y skills add rohitg00/awesome-claude-code-toolkit --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/report
Context preview
What this command does when you run it.
Generate a project analytics report covering code quality, velocity, and health metrics.
Command definition
report.mdname: report
description: Generate a project analytics report covering code quality, velocity, and health metrics.
Generate a project analytics report covering code quality, velocity, and health metrics.
Steps
1. Gather git statistics:
- `git shortlog -sn --no-merges` for contributor activity.
- `git log --format='%ai' --since='30 days ago'` for commit frequency.
- `git diff --stat HEAD~50` for recent change volume.
2. Analyze code quality metrics:
- Lines of code by language using file extensions.
- Test-to-code ratio (test files vs source files).
- Average file size and function length.
- TODO/FIXME/HACK comment count.
3. Check dependency health:
- Total dependencies (direct and transitive).
- Outdated packages count.
- Known vulnerability count.
4. Measure test health:
- Run test suite and capture pass/fail ratio.
- Calculate approximate coverage if coverage tool exists.
5. Assess documentation coverage:
- README completeness check.
- API documentation presence.
- Inline documentation density.
6. Compile findings into a structured report.
Format
Project Health Report - <date>
Code: <N> files, <N> LOC across <N> languages
Tests: <N> tests, <pass rate>% passing
Deps: <N> direct, <N> outdated, <N> vulnerable
Activity: <N> commits in last 30 days by <N> contributors
Score: <A/B/C/D/F>
Top issues:
1. <most impactful issue>
2. <second most impactful>
Rules
- Use objective metrics, not subjective assessments.
- Compare against industry benchmarks where possible.
- Highlight trends (improving/declining) over the last 30 days.
- Keep the report under 100 lines for quick consumption.
Read more
name: report description: Generate a project analytics report covering code quality, velocity, and health metrics.
Generate a project analytics report covering code quality, velocity, and health metrics.
Steps
1. Gather git statistics:
- `git shortlog -sn --no-merges` for contributor activity.
- `git log --format='%ai' --since='30 days ago'` for commit frequency.
- `git diff --stat HEAD~50` for recent change volume.
2. Analyze code quality metrics:
- Lines of code by language using file extensions.
- Test-to-code ratio (test files vs source files).
- Average file size and function length.
- TODO/FIXME/HACK comment count.
3. Check dependency health:
- Total dependencies (direct and transitive).
- Outdated packages count.
- Known vulnerability count.
4. Measure test health:
- Run test suite and capture pass/fail ratio.
- Calculate approximate coverage if coverage tool exists.
5. Assess documentation coverage:
- README completeness check.
- API documentation presence.
- Inline documentation density.
6. Compile findings into a structured report.
Format
Project Health Report - <date> Code: <N> files, <N> LOC across <N> languages Tests: <N> tests, <pass rate>% passing Deps: <N> direct, <N> outdated, <N> vulnerable Activity: <N> commits in last 30 days by <N> contributors Score: <A/B/C/D/F> Top issues: 1. <most impactful issue> 2. <second most impactful>
Rules
- Use objective metrics, not subjective assessments.
- Compare against industry benchmarks where possible.
- Highlight trends (improving/declining) over the last 30 days.
- Keep the report under 100 lines for quick consumption.
The most comprehensive toolkit for Claude Code -- 135 agents, 35 curated skills (+400,000 via SkillKit), 42 commands, 176+ plugins, 20 hooks, 15 rules, 7 templates, 15 MCP configs, 26 companion apps, 53 ecosystem entries, and more.
Repo: rohitg00/awesome-claude-code-toolkit
Other commands on rohitg00-claude-code-toolkit.
- /adr
Write an Architecture Decision Record documenting a significant technical decision.
Open command - /design-review
Conduct a structured design review of a module, feature, or system component.
Open command - /diagram
Generate Mermaid diagrams from codebase analysis or description.
Open command - /migrate
Plan and execute a framework or library migration incrementally.
Open command - /plan
Create a structured implementation plan for the requested feature or change.
Open command - /refactor
Perform a systematic refactoring of the specified code area.
Open command

