A browser-based tool that turns any GitHub repo into an instant, visual "intelligence report." You paste a GitHub URL and get a full dashboard back — no sign-up, no auth, no friction. It's a developer-tool / analytics product.
Core features
Health Score (0–100) — production-readiness rating across 7 quality dimensions, with letter grades
Language pie chart — interactive breakdown of language composition
The frontend runs entirely in the browser and talks directly to GitHub's REST API — that's why the live demo needs no setup or login (limited to ~60 requests/hour unauthenticated). The FastAPI backend is optional, and only exists to add caching and rate-limit relief when you self-host.
Run it locally
# backend (optional) cd backend && pip install -r requirements.txt && uvicorn main:app --reload # frontend cd frontend && npm install && npm run dev
A browser-based tool that turns any GitHub repo into an instant, visual "intelligence report." You paste a GitHub URL and get a full dashboard back — no sign...