get_operator
Fetch a specific operator's live profile from the SigRank board using their public codename. Returns detailed metrics including yield, leverage ratio, class tier, rank, and per-window breakdowns for 7d, 30d, 90d, and all-time.
Instructions
Fetches one operator's live profile from the SigRank board by their codename. Reads the operator's current submission data from signalaf.com and returns their detailed metrics: yield (Υ), leverage ratio (Cr/I), velocity (O/I), class tier (Burner / Builder / 10xer), rank position (integer, 1-based), and per-window breakdowns for each time range (7d, 30d, 90d, all-time) with the four canonical pillars (input, output, cacheCreate, cacheRead) per window. Returns an error if the codename is not found on the board. Use this to look up any operator who has submitted to the board — codenames are public and visible on the leaderboard. Do NOT use this to browse all operators — use get_leaderboard for that. After calling this, you can use simulate_change to model what would happen if the operator adjusted their token mix.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| codename | Yes | The operator's public codename as shown on the SigRank leaderboard. Case-insensitive — "Ghost Falcon" and "ghost falcon" are equivalent. Must match a codename that exists on the board; returns an error if not found. To discover valid codenames, call get_leaderboard first. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rank | No | 1-based rank position | |
| class | No | ||
| yield_ | No | Υ Yield metric | |
| windows | No | Per-window breakdowns (7d, 30d, 90d, all-time) | |
| codename | No | Operator display name | |
| leverage | No | Cr/I ratio | |
| velocity | No | O/I ratio |