feat(commits): semantic commit analysis with risk scoring (#32)#64
Merged
Conversation
Implements issue #32. Provides heuristic analysis of git commit history without requiring an LLM or external tools: - Classify: parses Conventional Commits (type, scope, breaking flag) - ScoreRisk: assigns RiskLow/Medium/High based on diff size, file count, breaking changes, reverts, and risk keywords in the message - FindSimilar: cosine similarity search over pre-computed embeddings - DetectPatterns: identifies repeated commit types and high-churn files - Summarize: aggregates risk signals across a set of similar commits Risk thresholds: score>=3 → High, score>=1 → Medium, else Low. Breaking changes and reverts always score High. Co-authored-by: Ona <[email protected]>
dc5e4ed to
08a0b93
Compare
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.
Closes #32
Summary
Adds
pkg/commits— heuristic semantic analysis of git commit history. No LLM or external tools required.Features
Classify— parses Conventional Commits format (type(scope)!: description), setsType,Scope,BreakingScoreRisk— assignsRiskLow / RiskMedium / RiskHighbased on:FindSimilar— cosine similarity search over pre-computed embeddings, returns top-K above thresholdDetectPatterns— identifies repeated commit types and high-churn files (≥3 changes)Summarize— aggregates risk signals across a set of similar commits into aRiskSummaryRisk thresholds
Files
pkg/commits/commits.go— all types andAnalyzerimplementationpkg/commits/commits_test.go— 11 tests