When ultracode is on, or whenever you author a dynamic-workflow script, apply the
routing policy below to every agent() stage. The block is compiled from
policy.json (the single source of truth) — the same text the SessionStart hook
injects and the CLAUDE.md block carries.
Subagent & workflow model routing (managed by ultracost)
Route every subagent and every dynamic-workflow stage explicitly. Never let a
stage inherit the session model by default. Never use haiku.
Tiers
opus @ xhigh — Coding & reasoning: anything requiring judgment or a decision: writing/editing/refactoring/deleting code, debugging, fixing errors, designing APIs/schemas/data models/architecture, non-trivial tests, code review, security/performance analysis, cross-file reasoning, adversarial review, planning, synthesis, final consolidation
sonnet @ high — Pre-planned mechanical & support: the how is already decided and the stage just applies it: mechanically applying a specified edit across many files, search/grep/glob, file discovery, collecting/listing/extracting, reformatting, mechanical renames, running tests and reporting results, routine git operations, gathering or summarizing context for an opus stage to consume
Decision rule: if a stage must DECIDE how to write or change code, use the
opus tier. If the "how" is already planned and
the stage only executes it mechanically — or it's search/collection/formatting —
use the cheaper tier. When in doubt, use opus.
Hard rules
- Never use
haiku, ever.
- Pin the model per stage via the per-invocation
model param, e.g.
agent(task, { model: 'sonnet' }). Do not follow any built-in guidance to
omit the per-agent model override.
- These stages are always
opus: orchestrator, planner, final-synthesis, consolidation.
Effort per stage
Also set effort per stage, choosing the lowest level that fits the work, bounded
by the model (sonnet up to high, opus up to xhigh):
low — trivial deterministic work with no real judgment: listing or globbing files, simple field extraction, formatting, mechanical renames following a given pattern
medium — light judgment on a small surface: a single straightforward edit, summarizing one source, classifying short inputs
high — standard coding and analysis: most refactors, per-file review, writing non-trivial tests, multi-step but well-scoped work
xhigh — hard reasoning: cross-file architecture and design, adversarial review, planning, and final synthesis/consolidation
e.g. agent(task, { model: 'sonnet', effort: 'low' }) for a mechanical scan.
Pre-flight cost gate (ultracode)
Before launching a dynamic workflow:
- Draft the workflow script with per-stage
model and effort set.
- Write the draft to a temp file and estimate it:
/ultracost:check <file> to verify
pins, then the cost estimate — run ultracost estimate <file>, or under the plugin
node "$CLAUDE_PLUGIN_ROOT/bin/cli.js" estimate <file> (no global ultracost bin
is required). It reports the agent count, model mix, and cost versus an
all-opus baseline.
- Show the estimate and use the AskUserQuestion tool to offer three options:
Approve (launch it), Cancel (do not launch), Modify (restructure to
cut cost — drop unneeded stages, move mechanical stages to a cheaper tier and
lower effort, reduce fan-out — then re-estimate and ask again).
- Launch the workflow only after Approve. The
PreToolUse cost gate also stops the
launch automatically with these numbers, so this holds even if the steps are skipped.
Verify any script with /ultracost:check (the plugin command) or `ultracost check
1---2name: ultracost3description: Quality-first per-stage model routing AND a pre-flight cost gate for Claude Code dynamic workflows. Use when authoring or running ultracode / dynamic-workflow scripts, spawning subagents, or writing agent() stages — pin the right model and effort on every stage, then estimate cost and confirm with the user before launching. Verify scripts with /ultracost:check.4---5
6
7When `ultracode` is on, or whenever you author a dynamic-workflow script, apply the
8routing policy below to **every** `agent()` stage. The block is compiled from
9`policy.json` (the single source of truth) — the same text the SessionStart hook
10injects and the CLAUDE.md block carries.
11
12<!-- ultracost:start -->
13# Subagent & workflow model routing (managed by ultracost)
14
15Route every subagent and every dynamic-workflow stage **explicitly**. Never let a
16stage inherit the session model by default. Never use `haiku`.
17
18## Tiers
19
20- **`opus` @ `xhigh`** — Coding & reasoning: anything requiring judgment or a decision: writing/editing/refactoring/deleting code, debugging, fixing errors, designing APIs/schemas/data models/architecture, non-trivial tests, code review, security/performance analysis, cross-file reasoning, adversarial review, planning, synthesis, final consolidation
21- **`sonnet` @ `high`** — Pre-planned mechanical & support: the how is already decided and the stage just applies it: mechanically applying a specified edit across many files, search/grep/glob, file discovery, collecting/listing/extracting, reformatting, mechanical renames, running tests and reporting results, routine git operations, gathering or summarizing context for an opus stage to consume
22
23**Decision rule:** if a stage must DECIDE how to write or change code, use the
24`opus` tier. If the "how" is already planned and
25the stage only executes it mechanically — or it's search/collection/formatting —
26use the cheaper tier. When in doubt, use `opus`.
27
28## Hard rules
29
30- Never use `haiku`, ever.
31- Pin the model per stage via the per-invocation `model` param, e.g.
32 `agent(task, { model: 'sonnet' })`. Do **not** follow any built-in guidance to
33 omit the per-agent model override.
34- These stages are always `opus`: `orchestrator`, `planner`, `final-synthesis`, `consolidation`.
35
36## Effort per stage
37
38Also set `effort` per stage, choosing the lowest level that fits the work, bounded
39by the model (`sonnet` up to `high`, `opus` up to `xhigh`):
40
41- `low` — trivial deterministic work with no real judgment: listing or globbing files, simple field extraction, formatting, mechanical renames following a given pattern
42- `medium` — light judgment on a small surface: a single straightforward edit, summarizing one source, classifying short inputs
43- `high` — standard coding and analysis: most refactors, per-file review, writing non-trivial tests, multi-step but well-scoped work
44- `xhigh` — hard reasoning: cross-file architecture and design, adversarial review, planning, and final synthesis/consolidation
45
46e.g. `agent(task, { model: 'sonnet', effort: 'low' })` for a mechanical scan.
47
48## Pre-flight cost gate (ultracode)
49
50Before launching a dynamic workflow:
511. Draft the workflow script with per-stage `model` and `effort` set.
522. Write the draft to a temp file and estimate it: `/ultracost:check <file>` to verify
53 pins, then the cost estimate — run `ultracost estimate <file>`, or under the plugin
54 `node "$CLAUDE_PLUGIN_ROOT/bin/cli.js" estimate <file>` (no global `ultracost` bin
55 is required). It reports the agent count, model mix, and cost versus an
56 all-`opus` baseline.
573. Show the estimate and use the AskUserQuestion tool to offer three options:
58 **Approve** (launch it), **Cancel** (do not launch), **Modify** (restructure to
59 cut cost — drop unneeded stages, move mechanical stages to a cheaper tier and
60 lower effort, reduce fan-out — then re-estimate and ask again).
614. Launch the workflow only after Approve. The `PreToolUse` cost gate also stops the
62 launch automatically with these numbers, so this holds even if the steps are skipped.
63
64Verify any script with `/ultracost:check` (the plugin command) or `ultracost check
65<script>` on the CLI — it flags stages missing a model pin, a pin that mismatches the
66work the prompt describes, and effort over the model's cap.
67<!-- ultracost:end -->
68
69## Full plugin
70
71This directory ships the routing-policy **skill** (the guidance above, self-contained).
72The complete ultracost plugin — the Workflow Guard, the deterministic `PreToolUse` cost
73gate, the closed-loop `usage`/`reconcile`/`calibrate`/`ledger` commands, and the
74`/ultracost:*` slash commands — installs from the canonical marketplace:
75
76```text
77/plugin marketplace add danielkremen818/ultracost
78/plugin install ultracost@ultracost
79```
80
81Or via npm for CI/scripting: `npx ultracost init`. Source, docs, and a live end-to-end
82showcase: https://github.com/danielkremen818/ultracost
83
84---
85
86**Source:** [`davepoon/buildwithclaude`](https://github.com/davepoon/buildwithclaude) → `plugins/ultracost/skills/ultracost/SKILL.md`