token-budget-gate ยท diff

git:20260528.cedc413 to git:20260627.a6d421d

12 added, 0 removed. Audit A to A.

---
name: token-budget-gate
description: Estimates token cost before a multi-step task and outputs a Green/Yellow/Red gate verdict. Tracks actual vs. estimated after completion for calibration. Triggers on "token budget", "how much will this cost", "will this be expensive", "estimate tokens", before long multi-agent tasks.
user-invocable: true
allowed-tools: ["Read", "Bash"]
model: sonnet
complexity_routing:
base: sonnet
high: opus
escalate_when:
- multi_project_scope
- unknown_task_type
---
# token-budget-gate โ€” Pre-Task Token Cost Gate
Multi-step and multi-agent tasks can silently consume large token budgets. This skill estimates cost before execution, outputs a gate verdict, and calibrates estimates against actual usage after completion โ€” preventing surprise overruns without blocking legitimate work.
> **FH context**: FH default execution tier is `standard` (~15K tokens). This skill gates against accidental `full` (~30K) or `max` (~60K+) consumption on tasks that could be handled lighter.
---
## Triggers
- `/token-budget-gate`
- "token budget", "token cost", "how expensive", "will this use a lot of tokens"
- "estimate tokens", "token estimate before we start"
- Before invoking: `agent-composer`, `sim-conductor`, `steel-quench` (max-tier skills)
- Automatically proposed when task description contains: multi-agent, parallel dispatch, full suite, all files, entire codebase
---
## Gate Thresholds (defaults โ€” user-configurable)
| Signal | Verdict | Action |
|---|---|---|
| Estimated < 10K tokens | ๐ŸŸข **GREEN** | Proceed without comment |
| 10Kโ€“30K tokens | ๐ŸŸก **YELLOW** | Proceed with notice โ€” suggest lighter approach if one exists |
| 30Kโ€“60K tokens | ๐ŸŸ  **ORANGE** | Confirm before proceeding โ€” present scope reduction options |
| > 60K tokens | ๐Ÿ”ด **RED** | Block + require explicit approval โ€” present mandatory reduction |
Custom threshold: user can set `TOKEN_BUDGET_MAX=N` in conversation or `.claude/settings.json`.
---
## Execution Steps
### Step 1. Parse Task Description
Extract task dimensions:
| Dimension | Low (ร—1) | Medium (ร—2) | High (ร—4) |
|---|---|---|---|
| **File scope** | 1โ€“3 files | 4โ€“10 files | 11+ files / whole codebase |
| **Agent count** | 0 (inline) | 1โ€“2 agents | 3+ agents / parallel |
| **Step depth** | 1โ€“3 steps | 4โ€“8 steps | 9+ steps |
| **Iteration** | None | 1 round | 2+ rounds (wave/loop) |
| **Output size** | Short answer | Medium doc | Full report / deck |
---
### Step 2. Estimate Token Cost
Base estimates per task type:
| Task Type | Base Estimate | Notes |
|---|---|---|
| Single file edit | 2K | Read + edit + verify |
| Code review (1 PR) | 5K | Diff + analysis + comments |
| Skill creation (1 SKILL.md) | 8K | Design + write + CATALOG update |
| Agent dispatch (1 agent) | 10K | Context card + agent overhead |
| Parallel dispatch (3 agents) | 25K | 3ร— agent + orchestration |
| sim-conductor full run | 30K | All 5 simulation axes |
| steel-quench 4-wave | 50K | All waves + prescriptions |
| Full harvest-loop cycle | 40K | 8-step pipeline + PRs |
Apply dimension multipliers from Step 1 to the base estimate.
**Final formula:**
```
Estimated = base ร— file_multiplier ร— agent_multiplier ร— iteration_multiplier
```
Round to nearest 1K.
---
### Step 3. Output Gate Verdict
```
## Token Budget Gate
Task: {one-line task description}
Estimated cost: ~{N}K tokens
Threshold: {user max or default}
Verdict: ๐ŸŸก YELLOW โ€” within budget but consider lighter approach
Breakdown:
Base (skill creation): 8K
ร— 2 agents: ร—2 = 16K
ร— 1 iteration: ร—1 = 16K
Total: ~16K
Lighter alternative:
โ†’ Inline (no agent dispatch): ~8K (-50%)
โ†’ Single agent, not parallel: ~12K (-25%)
Proceed? (y to continue / n to adjust scope)
```
For ๐ŸŸข GREEN: output one line only โ€” *"Token estimate: ~{N}K โ€” GREEN, proceeding."*
---
### Step 4. Proceed / Adjust
- **GREEN / YELLOW + user confirms**: proceed, note start marker
- **ORANGE**: present scope reduction table, wait for user selection
- **RED**: present mandatory reduction โ€” do not proceed until user explicitly approves
Scope reduction options table (ORANGE/RED):
| Option | Reduction | Trade-off |
|---|---|---|
| Drop parallel โ†’ sequential | -30% | Slower, same quality |
| Reduce agent count (3โ†’1) | -50% | Less parallelism |
| Narrow file scope | -40% | Shallower coverage |
| Use lighter skill variant | -60% | Fewer waves/probes |
| Split into 2 sessions | -50%/session | No quality loss |
---
### Step 5. Post-Task Calibration (optional)
After task completion, if user says "how much did that cost" or "calibrate":
```
## Calibration
Estimated: ~16K tokens
Actual: ~{actual}K tokens
Error: {+/-N}%
Calibration note saved โ†’ improves next estimate for this task type.
```
Write calibration data:
```bash
mkdir -p .claude/token_calibration/
# Append: task_type, estimated, actual, date
```
Calibration data improves future estimates for the same task type (no model training โ€” local record only).
---
## Done When
- Gate verdict output (GREEN/YELLOW/ORANGE/RED) with estimated cost breakdown
- For ORANGE/RED: scope reduction options presented and user decision recorded
- Calibration offered after task completion (optional, not mandatory)
---
## Chains
**Upstream** (proposed before these skills):
- โ†’ `agent-composer` (multi-agent orchestration)
- โ†’ `sim-conductor` (5-axis simulation)
- โ†’ `steel-quench` (4-wave adversarial review)
- โ†’ `harvest-loop` (8-step pipeline)
**Downstream**:
- No mandatory chain โ€” gate verdict is the output; task execution follows user decision
+ ---
+
+ ## External anchor (independent convergence)
+
+ arXiv:2606.27009 (*Semantic Early-Stopping for Iterative LLM Agent Loops*, 2026-06-25, verified
+ 2026-06-27) measures **โˆ’38% tokens** by stopping iterative agent loops on semantic convergence instead
+ of a fixed iteration cap โ€” external evidence that the largest avoidable spend in loop-shaped work is
+ *over-iteration*, the cost class this gate exists to flag. Caveat (provenance-honest): the same paper
+ found *judge-gated* stopping counterproductive (judging cost outweighs the saving), so the saving is
+ real only when the convergence signal is cheap. Pairs with `convergence-loop` (the stop-rule side of
+ the same finding).
+