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 |
|---|---|---|---|
| 3814685 | feat(react-field): add useFieldBase_unstable hook (#35827) | Dmytro Kirpa | grow |
| e89fd73 | fix(web-components): remove deprecated tabs and tabpanel components (#35936) | Chris Holt | maint |
| 48c1691 | feat(react-label): add useLabelBase_unstable hook (#35905) | Dmytro Kirpa | grow |
| 5016229 | Fix(react-menu-grid-preview): Left arrow behavior in MenuGrid submenus (#35928) | Adam | waste |
| 0e111eb | docs(public-docsite-v9): add documentation for base state hooks and authoring patterns (#35891) | Dmytro Kirpa | maint |
| 8244b43 | release: applying package updates - react-components | Fluent UI Build | maint |
| ee548ba | feat(react-spinbutton): add useSpinButtonBase_unstable hook (#35907) | Dmytro Kirpa | grow |
| 99713fd | fix(react-badge): fix PresenceBadge aria-label regression (#35927) | Dmytro Kirpa | maint |
| ca8968a | feat(react-radio): expose base state hooks for Radio components (#35894) | Dmytro Kirpa | grow |
| 93d6841 | feat(react-search): add SearchBox typeahead/autocomplete Storybook story and design spec (#35875) | Copilot | grow |
feat(react-field): add useFieldBase_unstable hook (#35827)
fix(web-components): remove deprecated tabs and tabpanel components (#35936)
feat(react-label): add useLabelBase_unstable hook (#35905)
Fix(react-menu-grid-preview): Left arrow behavior in MenuGrid submenus (#35928)
docs(public-docsite-v9): add documentation for base state hooks and authoring patterns (#35891)
release: applying package updates - react-components
feat(react-spinbutton): add useSpinButtonBase_unstable hook (#35907)
fix(react-badge): fix PresenceBadge aria-label regression (#35927)
feat(react-radio): expose base state hooks for Radio components (#35894)
feat(react-search): add SearchBox typeahead/autocomplete Storybook story and design spec (#35875)
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.
Repository
fluentui
Fluent UI web represents a collection of utilities, React components, and web components for building web applications.
Average Developer Performance (ETV)
Year-by-year Trend:+325%Contributors ranked by total performance (ETV) from analyzed commits.
| # | |||||
|---|---|---|---|---|---|
| 1 | Anush Gupta175 commits | 37.8 | 15.1 | 8.7 | 14 |
| 2 | Martin Hochel167 commits | 26.7 | 6 | 19 | 1.8 |
| 3 | Dmytro Kirpa119 commits | 25.7 | 8.2 | 11.6 | 5.9 |
| 4 | krkshitij58 commits | 21.5 | 11.2 | 4 | 6.3 |
| 5 | Victor Genaev68 commits | 16.6 | 0.8 | 14.1 | 1.7 |
| 6 | srmukher72 commits | 15.8 | 6.7 | 2.7 | 6.4 |
| 7 | Robert Penner34 commits | 10.1 | 3.2 | 6.3 | 0.5 |
| 8 | Atishay Jain (atisjai)35 commits | 9.3 | 3 | 3.4 | 3 |
| 9 | Oleksandr Fediashov46 commits | 8.6 | 1.9 | 5.1 | 1.6 |
| 10 | v-baambati38 commits | 7.6 | 0.1 | 3.2 | 4.3 |
| 11 | John Kreitlow17 commits | 6.1 | 2.6 | 1.9 | 1.5 |
| 12 | Sarah Higley49 commits | 5.8 | 0.7 | 2.2 | 2.9 |
| 13 | Valentyna40 commits | 4.3 | 1.6 | 1.8 | 0.8 |
| 14 | Jeff Smith30 commits | 4.1 | 0.9 | 2 | 1.2 |
| 15 | Adam27 commits | 3.9 | 1.9 | 1.6 | 0.4 |
| 16 | Marcos Moura22 commits | 3 | 1.3 | 1.3 | 0.4 |
| 17 | Zacky Ma21 commits | 2.9 | 0.5 | 1.7 | 0.7 |
| 18 | Bernardo Sunderhus15 commits | 1.8 | 0.5 | 0.7 | 0.7 |
| 19 | ling172613 commits | 1.8 | 0.5 | 0.8 | 0.4 |
| 20 | Mitch-At-Work15 commits | 1.3 | 0.6 | 0.4 | 0.3 |
| 21 | Dave Rupert11 commits | 1 | 0 | 0.7 | 0.3 |