CostHawk Launches Public Leaderboard for Claude Code, Codex, and Cursor Token Consumption

CostHawk released a public AI Tools Leaderboard that ranks users of Claude Code, OpenAI Codex CLI, and Cursor by total token consumption. The leaderboard updates every 5 minutes and includes per-tool breakdowns by token share, operator mix (single-tool vs. multi-tool), and daily momentum. Monthly seasons reset at midnight Central Time.
Token counts, model identifiers, sync timestamps, and hashed project IDs are tracked, but the service explicitly does not store prompts, responses, or source code. Data is parsed locally from developer-tool data directories before leaving the machine, with AES-256-GCM encryption for API keys. Connection options include Admin API keys, wrapped proxy keys, or MCP telemetry. The auto-sync feature is opt-in (COSTHAWK_AUTO_SYNC=true) and defaults to off.
Connecting a Local Tool
Run the following one-liner in a terminal:
npm exec --yes costhawk@latest -- --loginThis authenticates the machine and installs the CostHawk MCP server for Claude Code, Codex CLI, Cursor, and Gemini CLI. After connecting, tokens are reported under a hashed project identifier.
The leaderboard currently shows no activity (all zeroes) because no operators have synced yet—the site notes “No leaderboard activity yet” and “LOADING DATA SHOWING 0 OF 0 OPERATORS.” Monthly rankings will become populated as users opt in and sync.
📖 Read the full source: HN AI Agents
👀 See Also

git-prism v0.9.0: Give AI Coding Agents Structured Diffs via MCP
git-prism is an MCP server that replaces raw git diff text with structured JSON for AI coding agents. v0.9.0 intercepts git calls at the PATH layer, catching subprocess and gh commands.

Five OpenClaw plugins that address core production issues
A Reddit user identifies five OpenClaw plugins that solve common production problems: Manifest for model routing, Composio for integration management, Hyperspell for memory, Foundry for workflow automation, and Opik for tracing.

Xiaozhen: A Claude Code skill that digs three layers into root causes
Xiaozhen (小真) is a Claude Code skill that uses three mechanics—The Gift, Three Layers Deep, and The Prediction—to help users uncover what's actually bothering them rather than giving direct advice. It's installed with a one-line curl command and activated by typing /小真 in Claude Code.

Agent Memory Protocol (AMP): Open Spec for Interoperable AI Agent Memory on Top of MCP
AMP defines a standard interface for persistent memory in MCP-compatible agents with six core verbs: encode, recall, forget, consolidate, pin, and stats. Includes compliance test suite and reference implementation.