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 |
|---|---|---|---|
| 812fbfc | [python] Always make the path name for a python service be `/index` (#15773) | Michael J. Sullivan | maint |
| 27d6065 | Skip @shopify/ngrok postinstall in hydrogen example (#15782) | Jeff See | – |
| 2b7c95c | [next] Copy post-build public files into V3 build output (#15780) | Jeff See | waste |
| dcbc39c | Add routing rules reference to Vercel CLI skill (#15774) | Yash Kothari | maint |
| 0671d2d | [cli] Add --group-by project/region to vc usage (#15777) | Mingchung Xia | grow |
| 0e866b3 | [go] update `waitForServer` to not ping root endpoint (#15765) | Ricardo Gonzalez | waste |
| e0e5027 | [django] Fix vc dev when staticfiles is not used (#15772) | Michael J. Sullivan | waste |
| 463921d | Suppress warning message about implicit `public/**/*` builders not matching (#15771) | Michael J. Sullivan | waste |
| af261d2 | [django] Produce a better diagnostic when Django settings discovery fails (#15770) | Michael J. Sullivan | waste |
| 6b953ef | [cli] Add more diagnostics spans (#15759) | Andrew Healey | grow |
[python] Always make the path name for a python service be `/index` (#15773)
Skip @shopify/ngrok postinstall in hydrogen example (#15782)
[next] Copy post-build public files into V3 build output (#15780)
Add routing rules reference to Vercel CLI skill (#15774)
[cli] Add --group-by project/region to vc usage (#15777)
[go] update `waitForServer` to not ping root endpoint (#15765)
[django] Fix vc dev when staticfiles is not used (#15772)
Suppress warning message about implicit `public/**/*` builders not matching (#15771)
[django] Produce a better diagnostic when Django settings discovery fails (#15770)
[cli] Add more diagnostics spans (#15759)
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 | Ricardo Gonzalez105 commits | 19.3 | 8.2 | 7.6 | 3.5 |
| 2 | Elvis Pranskevichus41 commits | 14.8 | 6.1 | 7.9 | 0.8 |
| 3 | Jeff See134 commits | 13.5 | 4.7 | 7.2 | 1.7 |
| 4 | Brooke45 commits | 13.2 | 6.2 | 7 | 0 |
| 5 | Thomas Knickman70 commits | 10.7 | 4.4 | 5.9 | 0.5 |
| 6 | Nik31 commits | 8.6 | 5.7 | 2.4 | 0.5 |
| 7 | Austin Merrick84 commits | 5.8 | 1.7 | 3 | 1 |
| 8 | Nathan Rajlich48 commits | 4.5 | 1.2 | 2.3 | 1.1 |
| 9 | Greg Schofield30 commits | 4.4 | 2 | 2 | 0.4 |
| 10 | JJ Kasper40 commits | 4.3 | 0.3 | 3.1 | 0.8 |
| 11 | Zack Tanner18 commits | 3.9 | 0.2 | 2.2 | 1.6 |
| 12 | Wyatt Johnson26 commits | 3.3 | 0.8 | 0.8 | 1.6 |
| 13 | Mark Knichel12 commits | 3.1 | 1.9 | 1.2 | 0 |
| 14 | Balázs Orbán16 commits | 2.8 | 1.7 | 0.9 | 0.3 |
| 15 | Luke PS21 commits | 2.5 | 0.4 | 1.5 | 0.6 |
| 16 | Trek Glowacki49 commits | 2.4 | 0.3 | 1.7 | 0.4 |
| 17 | Niklas Mischkulnig11 commits | 1.8 | 0.1 | 1.6 | 0.1 |
| 18 | Felix Haus14 commits | 1.6 | 0.3 | 0.8 | 0.5 |
| 19 | Mehul Kar21 commits | 1.2 | 0.2 | 0.8 | 0.2 |
| 20 | Steven13 commits | 1.1 | 0.6 | 0.4 | 0.1 |
| 21 | Jiachi Liu5 commits | 0.9 | 0.3 | 0.3 | 0.3 |
| 22 | Malte Ubl9 commits | 0.8 | 0.3 | 0.4 | 0.2 |
| 23 | Gregor Martynus11 commits | 0.8 | 0.3 | 0.5 | 0 |
| 24 | Jiwon Choi4 commits | 0.5 | 0 | 0.1 | 0.4 |
| 25 | Andrew Clark1 commits | 0.5 | 0 | 0.1 | 0.3 |
| 26 | Tom Lienard8 commits | 0.4 | 0.3 | 0.2 | 0 |
| 27 | Anthony Shew12 commits | 0.4 | 0.2 | 0.2 | 0 |
| 28 | Jude Gao3 commits | 0.3 | 0 | 0.1 | 0.2 |
| 29 | Benjamin Woodruff1 commits | 0.3 | 0 | 0 | 0.3 |
| 30 | Luke Sandberg1 commits | 0.3 | 0.2 | 0.1 | 0 |
| 31 | Janka Uryga2 commits | 0.2 | 0 | 0.2 | 0.1 |
| 32 | Hendrik Liebau2 commits | 0.2 | 0.1 | 0.1 | 0 |
| 33 | Gal Schlezinger5 commits | 0.2 | 0.1 | 0.1 | 0 |
| 34 | Adrian3 commits | 0.1 | 0 | 0 | 0.1 |
Repository
vercel
Develop. Preview. Ship.
Average Developer Performance (ETV)
Year-by-year Trend:+1214%