Rank Paste — Local Token Cascade Calculator
rank_pasteCalculate SigRank cascade metrics from four non-negative token counts without submitting data. Returns Yield, Leverage, Velocity, SNR, and 10xDEV. No data is persisted.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | Total input tokens consumed in the session. | |
| output | Yes | Total output tokens generated. | |
| cache_read | Yes | Tokens read from prompt cache (reused context). | |
| cache_write | Yes | Tokens written to prompt cache (new context stored for reuse). |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| snr | No | Signal-to-noise ratio = output / (input + output). Null when input is zero. | |
| input | No | Echoed input token count. | |
| dev10x | No | log₁₀(Leverage). Logarithmic context amplification. | |
| output | No | Echoed output token count. | |
| yield_ | No | Yield (Υ) = (cache_read × output) / input². Headline cascade efficiency. Null when input is zero. | |
| leverage | No | Leverage = cache_read / input. Reusable context amplification. Null when input is zero. | |
| velocity | No | Velocity = output / input. Output per unit of input. Null when input is zero. | |
| cache_read | No | Echoed cache-read token count. | |
| cache_write | No | Echoed cache-write token count. | |
| non_compounding | No | True if cache_write is zero (no compounding context). |