changedInput schema / properties / platform / enum
Previous value: -[
- "amp",
- "kimi",
- "qwen",
- "pi",
- "openclaw",
- "droid",
- "codebuff",
- "gemini",
- "copilot",
- "opencode",
- "goose",
- "kilo",
- "hermes",
- "devin",
- "other",
- "claude",
- "codex"
-]New value: +[
+ "amp",
+ "kimi",
+ "qwen",
+ "pi",
+ "openclaw",
+ "droid",
+ "codebuff",
+ "gemini",
+ "copilot",
+ "opencode",
+ "goose",
+ "kilo",
+ "hermes",
+ "devin",
+ "other",
+ "omp",
+ "proxy",
+ "claude",
+ "codex"
+]
addedOutput schema / properties / auth_submit
Added value: +{
+ "description": "Present only when submit:true. One of: {status:'received'|'cooldown'|'not_enrolled'|'error', ...}. Null when submit is false (preview only).",
+ "type": [
+ "object",
+ "null"
+ ]
+}
addedOutput schema / properties / card
Added value: +{
+ "description": "Deterministic prose summary",
+ "type": "string"
+}
addedOutput schema / properties / cascade
Added value: +{
+ "properties": {
+ "card": {
+ "description": "Deterministic prose summary of the cascade result",
+ "type": "string"
+ },
+ "class": {
+ "description": "Operator class tier (dev10x taxonomy)",
+ "enum": [
+ "ARCH+ I",
+ "ARCH+ II",
+ "ARCH+ III",
+ "ARCH I",
+ "ARCH II",
+ "ARCH III",
+ "POWER I",
+ "POWER II",
+ "POWER III",
+ "BASE I",
+ "BASE II",
+ "BASE III",
+ "SEEKER I",
+ "SEEKER II",
+ "SEEKER III",
+ "REFINER I",
+ "REFINER II",
+ "REFINER III",
+ "BEARER I",
+ "BEARER II",
+ "BEARER III",
+ "IGNITER I",
+ "IGNITER II",
+ "IGNITER III",
+ "UNCLASSED"
+ ],
+ "type": "string"
+ },
+ "dev10x": {
+ "description": "10xDEV score (log10 of the cascade product)",
+ "type": "number"
+ },
+ "leverage": {
+ "description": "Cr/I — cache reads divided by input",
+ "type": "number"
+ },
+ "mode": {
+ "description": "Detected working mode (BUILD/EDIT/DEBUG/MAINTAIN/IDLE) + confidence",
+ "type": "object"
+ },
+ "pillars": {
+ "description": "The four raw token pillars the cascade was computed from",
+ "type": "object"
+ },
+ "snr": {
+ "description": "Signal-to-noise ratio",
+ "type": "number"
+ },
+ "velocity": {
+ "description": "O/I — output divided by input",
+ "type": "number"
+ },
+ "warnings": {
+ "description": "Parse or data warnings if any",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "yield": {
+ "description": "Υ Yield — the headline efficiency metric (Cache Reads × Output / Input²)",
+ "type": "number"
+ }
+ },
+ "required": [
+ "yield",
+ "class"
+ ],
+ "type": "object"
+}
addedOutput schema / properties / messages
Added value: +{
+ "description": "Number of messages in the watched window",
+ "type": "integer"
+}
addedOutput schema / properties / note
Added value: +{
+ "description": "Reminder that one snapshot is returned per call — re-call to detect changes.",
+ "type": "string"
+}
addedOutput schema / properties / pillars
Added value: +{
+ "description": "The four raw token pillars for the watched window",
+ "properties": {
+ "cacheCreate": {
+ "type": "integer"
+ },
+ "cacheRead": {
+ "type": "integer"
+ },
+ "input": {
+ "type": "integer"
+ },
+ "output": {
+ "type": "integer"
+ }
+ },
+ "type": "object"
+}
addedOutput schema / properties / poll_interval_s
Added value: +{
+ "description": "Advisory poll cadence echoed back (does not make the call block)",
+ "type": "number"
+}
addedOutput schema / properties / window
Added value: +{
+ "description": "The watched window (watch_tokenpull watches one window per call)",
+ "enum": [
+ "7d",
+ "30d",
+ "90d",
+ "all"
+ ],
+ "type": "string"
+}
removedOutput schema / properties / windows
Removed value: -{
- "description": "Per-window token usage + cascade results",
- "items": {
- "properties": {
- "cascade": {
- "properties": {
- "card": {
- "description": "Deterministic prose summary of the cascade result",
- "type": "string"
- },
- "class": {
- "description": "Operator class tier",
- "enum": [
- "Burner",
- "Builder",
- "10xer"
- ],
- "type": "string"
- },
- "leverage": {
- "description": "Cr/I — cache reads divided by input",
- "type": "number"
- },
- "snr": {
- "description": "Signal-to-noise ratio",
- "type": "number"
- },
- "tenx_dev": {
- "description": "10xDEV score",
- "type": "number"
- },
- "velocity": {
- "description": "O/I — output divided by input",
- "type": "number"
- },
- "warnings": {
- "description": "Parse or data warnings if any",
- "items": {
- "type": "string"
- },
- "type": "array"
- },
- "yield_": {
- "description": "Υ Yield — the headline efficiency metric (Cache Reads × Output / Input²)",
- "type": "number"
- }
- },
- "required": [
- "yield_",
- "class"
- ],
- "type": "object"
- },
- "estimated": {
- "description": "True if cacheCreate was estimated",
- "type": "boolean"
- },
- "messages": {
- "description": "Number of messages in window",
- "type": "integer"
- },
- "pillars": {
- "properties": {
- "cacheCreate": {
- "type": "integer"
- },
- "cacheRead": {
- "type": "integer"
- },
- "input": {
- "type": "integer"
- },
- "output": {
- "type": "integer"
- }
- },
- "type": "object"
- },
- "window": {
- "enum": [
- "7d",
- "30d",
- "90d",
- "all"
- ],
- "type": "string"
- }
- },
- "type": "object"
- },
- "type": "array"
-}