What Needs to Be Done
The Repos widget header says "Repositories" but doesn't show how many repos the user has. Add a count badge next to the title, e.g. "Repositories (12)".
Why This Matters
Users want a quick overview number without having to count the list items. It also makes the widget feel more data-rich and informative.
Files to Look At
src/components/ — find the Repos/repositories widget component
src/app/api/metrics/repos/route.ts — the API response shape (check if total is returned)
Acceptance Criteria
Tech Context
The repos API returns an array. repos.length gives the count. Just render it in the heading: Repositories ({repos.length}).
Mentorship
Comment on this issue and you'll receive a welcome comment with onboarding steps. The maintainer will guide you through your first PR.
What Needs to Be Done
The Repos widget header says "Repositories" but doesn't show how many repos the user has. Add a count badge next to the title, e.g. "Repositories (12)".
Why This Matters
Users want a quick overview number without having to count the list items. It also makes the widget feel more data-rich and informative.
Files to Look At
src/components/— find the Repos/repositories widget componentsrc/app/api/metrics/repos/route.ts— the API response shape (check if total is returned)Acceptance Criteria
Tech Context
The repos API returns an array.
repos.lengthgives the count. Just render it in the heading:Repositories ({repos.length}).Mentorship
Comment on this issue and you'll receive a welcome comment with onboarding steps. The maintainer will guide you through your first PR.