SigRank — token-efficiency leaderboard that ranks operators, not just models #225
SunrisesIllNeverSee
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hey — thanks for Claude-Code-Usage-Monitor. The real-time monitoring + prediction angle is great, and it's part of what got me thinking about the ranking problem.
I built SigRank (signalaf.com) — a leaderboard that ranks AI coding operators by token cascade efficiency, not raw volume or spend. The metric:
Input is squared so re-pasting context costs quadratically; cache reuse compounds. The counterintuitive finding: the highest-volume operators often rank lower on efficiency because they hoard context and collapse output velocity. Volume is noise; yield is signal.
The npm package (
npx sigrank) bundles ccusage + tokscale + tokendash as deps for the local read layer. Everything runs locally; only four signed token counts (Input, Output, Cache Write, Cache Read) leave the machine, ed25519-signed.submit --dry-runshows the exact payload first.What the site gives you:
If you've got 60 seconds: https://signalaf.com/score — paste your stats, get your projected yield + ghost rank, no signup.
Would love feedback on the metric design. Not trying to replace monitoring — this is the ranking layer on top of it.
All reactions