feat(docs): add project metrics report and collection scripts - #103
Merged
Conversation
Add comprehensive project metrics report covering size, complexity, quality, and developer performance across all 10 repos. Include reusable Python scripts for LOC analysis, git/GitHub metrics, and JaCoCo coverage extraction. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…nt counting Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Fix hardcoded absolute paths in all 4 scripts (use relative paths from __file__) - Make comment detection language-aware (C-style, hash, no-comment by extension) - Remove --all flag from Claude co-author git grep (was inflating count across branches) - Remove misleading count_endpoints() from LOC script (handled by collect_endpoint_counts.py) - Replace chr(10)/chr(9) with "\n"/"\t" for readability - Use set lookup in should_skip_file() instead of linear scan - Add module docstring to collect_metrics.py - Update methodology section and regenerate report with corrected data Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docs/project-metrics-report.md) covering size, complexity, quality, and developer performance across all 10 reposscripts/metrics/) for LOC analysis, git/GitHub metrics, endpoint counting, and JaCoCo coverage extraction.gitignoreTest plan
python scripts/metrics/collect_loc_metrics.pyruns and producesloc_metrics.jsonpython scripts/metrics/collect_metrics.pyruns and producesgit_metrics.jsonpython scripts/metrics/collect_coverage.pyruns and producescoverage_data.jsonpython scripts/metrics/collect_endpoint_counts.pyruns and producesendpoint_counts.jsondocs/project-metrics-report.mdfor accuracy🤖 Generated with Claude Code