Claude's Code Dashboard Tracks 19M+ AI-Generated Commits on GitHub

✍️ OpenClawRadar📅 Published: March 24, 2026🔗 Source
Claude's Code Dashboard Tracks 19M+ AI-Generated Commits on GitHub
Ad

Claude's Code is a dashboard that tracks commits generated by Claude Code on GitHub public repositories. The creator estimates around 19 million commits, though this only includes public repos with signed commits (via author field or commit trailers).

Technical Implementation

The dashboard is built with Next.js, Recharts for graphing, and PostgreSQL for the database. The developer initially considered BigQuery for analytical scale but switched to PostgreSQL due to cost concerns with small writes and frequent reads for deduplication.

The ingestion pipeline evolved from an under-engineered start to a bare-bones but capable ETL system. The main challenge was GitHub's API rate limits: 30 requests/minute on the search API and 5000 requests/hour on the GraphQL API per access token.

The pipeline splits work between:

  • Search workers that write basic commit info to a table, paging and splitting to find commits
  • Enrichment workers that read from that table and fill in additional info like lines added/deleted and repo information

There's currently some lag in reading commits as the system is still pulling historical data, which explains why recent dates show lower commit counts and some repos don't have language data yet.

Current Statistics

The dashboard shows:

  • Total commits: 14,856,060
  • Lines added: +29,053,921,169
  • Lines deleted: -12,157,124,674
  • Active repos: 800,832
  • New repos this week: 71,517 original repos (non-forks) with their first observed Claude Code commit
  • Net code delta: +29.7B lines (added minus deleted)
Ad

Language Distribution

Top 3 languages by commit count:

  • TypeScript: 35.3% (6.99M commits)
  • Python: 19.2% (3.8M commits)
  • JavaScript: 10.3% (2.05M commits)

Early Adoption

The earliest observed public-era Claude Code commits appear around February 24, 2025. One example is moinmir/ClashOfCans with the commit message: "Change initial game setup to always have exactly 1 correct can. This improves the starting condition by ensuring players always begin with exactly one can in the correct position, making the initial game state more consistent." This commit includes the trailer: Co-Authored-By: Claude <[email protected]>

Recent Activity Examples

The system activity log shows recent commits with Claude Code signatures:

  • ErikEvenson/architect: "RAG index: add web UI controls, background tasks, and upload indexing" with Co-Authored-By: Claude Opus 4.6 (1M context) <[email protected]>
  • mearley24/AI-Server: "fix: remove IPv6 disable sysctl from vpn service" with Co-Authored-By: Claude Opus 4.6 <[email protected]>
  • PawelDziaduch/grafik: "feat: add user clearing function and detailed logging" with Co-Authored-By: Claude Haiku 4.5 <[email protected]>

The developer notes the project isn't 100% complete and wants to improve ingestion and extract more from the data. They're open to suggestions for additional dashboard features or data to track.

📖 Read the full source: HN AI Agents

Ad

👀 See Also

Portable Mind Format (PMF): Provider-Agnostic Agent Specification with 15 Open-Source Agents
Tools

Portable Mind Format (PMF): Provider-Agnostic Agent Specification with 15 Open-Source Agents

The Portable Mind Format (PMF) is a JSON-based specification for defining AI agent identities that can run across multiple models and providers, including Claude, GPT-4, Gemini, DeepSeek, and local models via Ollama. It includes 15 MIT-licensed production agents and converters for Claude Code, Cursor, GitHub Copilot, and Gemini CLI.

OpenClawRadar
Quanta-SDK v0.9.2 adds MCP server for quantum circuit execution via AI agents
Tools

Quanta-SDK v0.9.2 adds MCP server for quantum circuit execution via AI agents

Quanta-SDK v0.9.2 now includes an MCP (Model Context Protocol) server that provides AI agents like Claude or GPT with tools to execute and interpret quantum circuits. The server offers over 20 tools including circuit execution on IBM hardware, result interpretation, noise analysis, and quantum financial pricing.

OpenClawRadar
Clawdwatch: Open-source OSINT tool for real-time flight tracking, news scraping, and alerts
Tools

Clawdwatch: Open-source OSINT tool for real-time flight tracking, news scraping, and alerts

Clawdwatch is a CLI tool that pulls live flight data from OpenSky Network, scrapes news from Al Jazeera and AP, and can send Telegram alerts for military aircraft or emergency squawks. It runs locally with npm install and tracks 204+ flights over the Middle East in real-time.

OpenClawRadar
New Structured Data API Provides Subscription Pricing for LLM Agents
Tools

New Structured Data API Provides Subscription Pricing for LLM Agents

A developer has released a structured data API that normalizes subscription pricing across streaming platforms, ride-share services, dating apps, and other subscription-based platforms. The API provides consistent JSON schemas, region-aware pricing where available, and MCP-compatible endpoints for LLM agents to consume without scraping.

OpenClawRadar