From analytics-reporter
Generates a project analytics report covering code quality, velocity, and health metrics. Analyzes git stats, test health, dependencies, and documentation, outputting a structured summary with a score.
How this command is triggered — by the user, by Claude, or both
Slash command
/analytics-reporter:reportThe summary Claude sees in its command listing — used to decide when to auto-load this command
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 (dire...
Generate a project analytics report covering code quality, velocity, and health metrics.
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.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>
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub samuelj90/awesome-claude-code-toolkit --plugin analytics-reporter/reportGenerates a project analytics report covering code quality, velocity, and health metrics. Analyzes git stats, test health, dependencies, and documentation, outputting a structured summary with a score.
/metricsCollects and analyzes development metrics from git history, test coverage, and code complexity, then generates a trend report with quality indicators and technical debt assessment.
/project-health-checkAnalyzes overall project health across code quality, delivery, team, and dependency metrics. Generates a scored health report with strengths, concerns, and critical issues.
/healthReports Repowise code-health scores (1–10 per file) with KPIs, lowest-scoring files, refactoring targets, and trends. Accepts file paths, module names, and coverage files as arguments.
/healthGrades a GitHub repository's overall health using the github-autopilot MCP server, returning a score, dimension breakdown (CI/CD, test coverage, security, docs, dependencies), top issues, and quick wins.