Files with the highest combination of change frequency and waste ratio. These are candidates for refactoring or closer review.
Cumulative contribution over time. Watch developers race as positions shift month by month.
Commit activity distribution by hour and day of week across all contributors in this repository.
Performance has many faces. Navigara breaks down the effort to visualize what parts of codebase has been changed and where energy flowed. Our Architect AI can break the performance even further into particular components and patterns.
Breakdown of file changes over time. Play the timeline to see how change types evolved across periods.
Monthly overview of bugs introduced and fixed, based on symbol-level commit analysis. Fixes show whether the original author fixed their own bug (self-fix) or someone else did (cross-fix).
Bug attribution uses symbol-level matching from commit history. For each fix commit, we look at the changed symbols (functions, classes, methods) and trace backwards to find who last modified that symbol in a non-fix commit. This person is the probable bug introducer. The algorithm only works when commits have symbol-level data from the Navigara analysis engine โ the coverage rate shows what percentage of fix commits had this data available.
The current metrics model has a semantic inversion: when developer A creates a feature with a bug, they receive grow (positive). When developer B fixes that bug, they receive waste (negative). The bug creator is rewarded while the fixer is penalized. Bug attribution addresses this by explicitly tracking who introduced bugs and who fixed them, providing a more accurate picture of code quality contributions.
Currently computed client-side from commit data. Ideal server-side endpoint:
POST /v1/repositories/{repositoryId}/bug-attributions
Content-Type: application/json
Request:
{
"startTime": "2025-01-01T00:00:00Z",
"endTime": "2025-12-31T23:59:59Z"
}
Response:
{
"totalBugsAttributed": 42,
"selfFixRate": 35,
"coverageRate": 78,
"attributions": [
{
"filePath": "src/lib/auth.ts",
"symbol": "validateToken",
"introducer": { "name": "Alice", "email": "alice@co.com", "commitSha": "abc123" },
"fixer": { "name": "Bob", "email": "bob@co.com", "commitSha": "def456" },
"fixedAt": "2025-06-15T10:30:00Z",
"isSelfFix": false
}
]
}Reclassifies engineering effort based on bug attribution. Commits that introduced bugs are retrospectively counted as poor investments.
Investment Quality reclassifies engineering effort based on bug attribution data. Commits identified as buggy origins (those that introduced bugs later fixed by someone) have their grow and maintenance time moved into the Wasted Time category. Their waste (fix commits) remains counted as productive. All other commits retain their standard classification: grow is productive, maintenance is maintenance, and waste (fixes) is productive.
The standard model classifies commits as Growth, Maintenance, or Fixes. Investment Quality adds a quality lens: a commit that introduced a bug is retrospectively counted as a poor investment โ the engineering time spent on it was wasted because it ultimately required additional fix work. Fix commits (Fixes in the standard model) are reframed as productive, because fixing bugs is valuable work.
Currently computed client-side from commit and bug attribution data. Ideal server-side endpoint:
POST /v1/organizations/{orgId}/investment-quality
Content-Type: application/json
Request:
{
"startTime": "2025-01-01T00:00:00Z",
"endTime": "2025-12-31T23:59:59Z",
"bucketSize": "BUCKET_SIZE_MONTH",
"groupBy": ["repository_id" | "deliverer_email"]
}
Response:
{
"productivePct": 74,
"maintenancePct": 18,
"wastedPct": 8,
"buckets": [
{
"bucketStart": "2025-01-01T00:00:00Z",
"productive": 4.2,
"maintenance": 1.8,
"wasted": 0.6
}
]
}Latest analyzed commits in this repository.
| Hash | Message | Author | Effort |
|---|---|---|---|
| 134e52e | Use newest Npgsql when targeting net8.0 and above (#13724) | Shay Rojansky | โ |
| 5f282a9 | Refactor CollectionModel/builder and introduce read-only property interfaces (#13699) | Shay Rojansky | maint |
| 9d120bc | Python: Bump Python version to 1.41.1 for a release (#13705) | Evan Mattson | maint |
| 41f7b59 | Python: fix Google AI/Vertex AI crash on anyOf schema (#12442) (#13624) | Weiguang Li | maint |
| 83ff0a5 | Python: fix(google-ai): skip api_key check when use_vertexai is True (#13607) | Giulio Leone | maint |
| e0bd528 | Python: Default Dapr module allowlist to semantic_kernel prefix (#13596) | Evan Mattson | maint |
| 5069b41 | Simplify PR parsing for automated review workflow (#13689) | Evan Mattson | maint |
| f034ed1 | Python: fix: ChatHistoryTruncationReducer orphans TOOL role messages (#13608) | Giulio Leone | waste |
| 6ed2bb2 | [MEVD] Fix VectorStoreKeyAttribute.IsAutoGenerated to be usable as a compile-time attribute argument (#13698) | Copilot | waste |
| 082e28e | .Net: Remove legacy filtering from MEVD providers (#13636) | Shay Rojansky | maint |
Use newest Npgsql when targeting net8.0 and above (#13724)
Refactor CollectionModel/builder and introduce read-only property interfaces (#13699)
Python: Bump Python version to 1.41.1 for a release (#13705)
Python: fix Google AI/Vertex AI crash on anyOf schema (#12442) (#13624)
Python: fix(google-ai): skip api_key check when use_vertexai is True (#13607)
Python: Default Dapr module allowlist to semantic_kernel prefix (#13596)
Simplify PR parsing for automated review workflow (#13689)
Python: fix: ChatHistoryTruncationReducer orphans TOOL role messages (#13608)
[MEVD] Fix VectorStoreKeyAttribute.IsAutoGenerated to be usable as a compile-time attribute argument (#13698)
.Net: Remove legacy filtering from MEVD providers (#13636)
Average context complexity and engagement score of file changes over time. Higher complexity means more intricate changes; higher impact means broader effect on the codebase.
Contributors ranked by total performance (ETV) from analyzed commits.
| # | |||||
|---|---|---|---|---|---|
| 1 | Evan Mattson180 commits | 30.6 | 12.9 | 15.1 | 2.6 |
| 2 | Chris42 commits | 29.2 | 14.3 | 13.9 | 1.1 |
| 3 | Shay Rojansky45 commits | 29 | 8.4 | 18.9 | 1.7 |
| 4 | Tao Chen69 commits | 24.7 | 9.6 | 13.9 | 1.2 |
| 5 | Roger Barreto66 commits | 19.8 | 5.2 | 12.7 | 2 |
| 6 | Eduard van Valkenburg72 commits | 16.9 | 7.9 | 7.8 | 1.2 |
| 7 | SergeyMenshykh96 commits | 15.1 | 6.9 | 7.3 | 0.9 |
| 8 | Mark Wallace95 commits | 12.2 | 5.7 | 6 | 0.5 |
| 9 | westey61 commits | 11.1 | 2.2 | 7.4 | 1.5 |
| 10 | Dmytro Struk31 commits | 4.8 | 2.5 | 2.3 | 0 |
| 11 | Adit Sheth13 commits | 1.5 | 0.2 | 0.7 | 0.5 |
| 12 | Stephen Toub16 commits | 1 | 0.1 | 0.9 | 0 |
Repository
semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
Average Developer Performance (ETV)
Year-by-year Trend:+210%