rank_paste
Computes the SigRank yield cascade from token counts. Parses input, runs cascade math locally, and returns key efficiency metrics for ranking.
Instructions
Computes the SigRank yield cascade from a paste of token counts. Parses the input, runs the full cascade math locally (no network calls), and returns: Υ Yield (the headline efficiency metric, Υ = Cache Reads × Output / Input²), SNR (signal-to-noise ratio), Leverage ratio (Cr/I = cache reads divided by input), Velocity (O/I = output divided by input), 10xDEV score, operator class tier (Burner / Builder / 10xer), and a deterministic prose "card" summarizing the result in plain English. Accepts two input formats: (1) JSON object {"input":N,"output":N,"cacheCreate":N,"cacheRead":N} or (2) four whitespace-separated numbers in order: input output cacheCreate cacheRead. Returns an error if the input is malformed or has negative values. Use this for a quick one-off ranking without submitting to the board. Do NOT use this to submit your score — use submit_paste instead, which both ranks and publishes. Do NOT use this if you want to rank all four time windows at once — use rank_windows for that. After calling this, use submit_paste to publish the result if you want to appear on the leaderboard.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| text | Yes | Token counts to rank. Two formats accepted: (1) JSON object {"input":N,"output":N,"cacheCreate":N,"cacheRead":N} where all values are non-negative integers, or (2) four whitespace-separated numbers in order: input output cacheCreate cacheRead. Get these from `ccusage` output, the Claude Max usage dashboard, tokscale, or any token reader. Example valid input: {"input":1000000,"output":500000,"cacheCreate":50000,"cacheRead":800000} |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| snr | No | Signal-to-noise ratio | |
| card | No | Deterministic prose summary of the cascade result | |
| class | Yes | Operator class tier | |
| yield_ | Yes | Υ Yield — the headline efficiency metric (Cache Reads × Output / Input²) | |
| leverage | No | Cr/I — cache reads divided by input | |
| tenx_dev | No | 10xDEV score | |
| velocity | No | O/I — output divided by input | |
| warnings | No | Parse or data warnings if any |