@hegemonart/get-design-done 1.25.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +2 -2
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +46 -0
- package/README.md +10 -6
- package/agents/README.md +60 -0
- package/agents/design-reflector.md +43 -0
- package/agents/gdd-intel-updater.md +34 -1
- package/hooks/budget-enforcer.ts +143 -4
- package/package.json +1 -1
- package/reference/model-prices.md +40 -19
- package/reference/prices/antigravity.md +21 -0
- package/reference/prices/augment.md +21 -0
- package/reference/prices/claude.md +42 -0
- package/reference/prices/cline.md +23 -0
- package/reference/prices/codebuddy.md +21 -0
- package/reference/prices/codex.md +25 -0
- package/reference/prices/copilot.md +21 -0
- package/reference/prices/cursor.md +21 -0
- package/reference/prices/gemini.md +25 -0
- package/reference/prices/kilo.md +21 -0
- package/reference/prices/opencode.md +23 -0
- package/reference/prices/qwen.md +25 -0
- package/reference/prices/trae.md +23 -0
- package/reference/prices/windsurf.md +21 -0
- package/reference/registry.json +107 -1
- package/reference/runtime-models.md +446 -0
- package/reference/schemas/runtime-models.schema.json +123 -0
- package/scripts/install.cjs +8 -0
- package/scripts/lib/budget-enforcer.cjs +446 -0
- package/scripts/lib/cost-arbitrage.cjs +294 -0
- package/scripts/lib/install/installer.cjs +188 -11
- package/scripts/lib/install/parse-runtime-models.cjs +267 -0
- package/scripts/lib/install/runtimes.cjs +43 -0
- package/scripts/lib/runtime-detect.cjs +96 -0
- package/scripts/lib/tier-resolver.cjs +311 -0
- package/scripts/validate-frontmatter.ts +138 -1
- package/skills/router/SKILL.md +51 -2
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Augment Code — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `augment` (Augment Code)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://docs.augmentcode.com>` — pending.
|
|
7
|
+
|
|
8
|
+
## Pricing (USD per 1M tokens)
|
|
9
|
+
|
|
10
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
11
|
+
|-------|------|--------------|---------------|----------------------|
|
|
12
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
13
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
14
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
|
|
16
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
17
|
+
|
|
18
|
+
## Update protocol
|
|
19
|
+
|
|
20
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
21
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "augment"`.
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
# Anthropic — Claude Code Price Table
|
|
2
|
+
|
|
3
|
+
**Runtime:** `claude` (Claude Code)
|
|
4
|
+
**Phase 26 D-08 sub-table.** Authoritative pricing for the Anthropic models referenced in `reference/runtime-models.md` under `id: "claude"`. Read by `scripts/lib/budget-enforcer.cjs` (and indirectly by `hooks/budget-enforcer.ts`) to compute `est_cost_usd` per spawn.
|
|
5
|
+
|
|
6
|
+
**Provenance:** https://docs.anthropic.com/en/docs/about-claude/pricing — retrieved 2026-04-29, cycle `2026-04-29-v1.26`.
|
|
7
|
+
|
|
8
|
+
## Pricing (USD per 1M tokens)
|
|
9
|
+
|
|
10
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
11
|
+
|-------|------|--------------|---------------|----------------------|
|
|
12
|
+
| claude-haiku-4-5 | haiku | 1.00 | 5.00 | 0.10 |
|
|
13
|
+
| claude-sonnet-4-7 | sonnet | 3.00 | 15.00 | 0.30 |
|
|
14
|
+
| claude-sonnet-4-6 | sonnet | 3.00 | 15.00 | 0.30 |
|
|
15
|
+
| claude-opus-4-7 | opus | 15.00 | 75.00 | 1.50 |
|
|
16
|
+
|
|
17
|
+
## size_budget → conservative token ranges
|
|
18
|
+
|
|
19
|
+
Agent frontmatter carries `size_budget: S|M|L|XL`. The router uses these conservative token ranges to compute a pre-spawn `est_cost_usd` without a live model call:
|
|
20
|
+
|
|
21
|
+
| size_budget | input_tokens (conservative max) | output_tokens (conservative max) |
|
|
22
|
+
|-------------|----------------------------------|-----------------------------------|
|
|
23
|
+
| S | 4000 | 1000 |
|
|
24
|
+
| M | 10000 | 2500 |
|
|
25
|
+
| L | 25000 | 6000 |
|
|
26
|
+
| XL | 60000 | 15000 |
|
|
27
|
+
|
|
28
|
+
## Estimator formula
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
est_cost_usd =
|
|
32
|
+
(input_tokens / 1_000_000) * input_per_1m
|
|
33
|
+
+ (output_tokens / 1_000_000) * output_per_1m
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
When `cache_hit: true`, the formula re-runs with `cached_input_per_1m` in place of `input_per_1m` for the input portion.
|
|
37
|
+
|
|
38
|
+
## Update protocol
|
|
39
|
+
|
|
40
|
+
1. Pricing change: update the table above; commit as `chore(reference/prices): update Anthropic pricing YYYY-MM-DD`.
|
|
41
|
+
2. New model name added to `reference/runtime-models.md` under `id: "claude"`: add a row here with the same model string in the `Model` column. Tier comes from the canonical `tier_to_model` mapping.
|
|
42
|
+
3. size_budget revision: requires a Phase 11 reflector proposal under `[FRONTMATTER]` scope; do not hand-edit agent ranges.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Cline — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `cline` (Cline)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://docs.cline.bot>` — pending.
|
|
7
|
+
|
|
8
|
+
**Note:** Cline is a BYO-API-key runtime — actual pricing is determined by whichever provider key the user supplies. The `tier_to_model` row in `reference/runtime-models.md` chooses a default model per tier; this table prices that default. Users of other providers should override locally.
|
|
9
|
+
|
|
10
|
+
## Pricing (USD per 1M tokens)
|
|
11
|
+
|
|
12
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
13
|
+
|-------|------|--------------|---------------|----------------------|
|
|
14
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
16
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
17
|
+
|
|
18
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
19
|
+
|
|
20
|
+
## Update protocol
|
|
21
|
+
|
|
22
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
23
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "cline"`.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# CodeBuddy — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `codebuddy` (Tencent CodeBuddy)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://copilot.tencent.com>` — pending.
|
|
7
|
+
|
|
8
|
+
## Pricing (USD per 1M tokens)
|
|
9
|
+
|
|
10
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
11
|
+
|-------|------|--------------|---------------|----------------------|
|
|
12
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
13
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
14
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
|
|
16
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
17
|
+
|
|
18
|
+
## Update protocol
|
|
19
|
+
|
|
20
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
21
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "codebuddy"`.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# OpenAI — Codex CLI Price Table
|
|
2
|
+
|
|
3
|
+
**Runtime:** `codex` (OpenAI Codex CLI)
|
|
4
|
+
**Phase 26 D-08 sub-table.** Pricing for the OpenAI Codex tier referenced in `reference/runtime-models.md` under `id: "codex"`.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://openai.com/api/pricing/>` — retrieved 2026-04-29 (placeholder — v1.26.0 ships with seed numbers; runtime adapter authors confirm and PR before v1.27).
|
|
7
|
+
|
|
8
|
+
**Status:** placeholder values are taken from public OpenAI tier-positioning at the time of v1.26.0 ship. The cost-aggregator will surface drift if measured spend per spawn diverges from these figures by more than 20% after 10+ cycles.
|
|
9
|
+
|
|
10
|
+
## Pricing (USD per 1M tokens)
|
|
11
|
+
|
|
12
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
13
|
+
|-------|------|--------------|---------------|----------------------|
|
|
14
|
+
| gpt-5 | opus | 1.25 | 10.00 | 0.13 |
|
|
15
|
+
| gpt-5-mini | sonnet | 0.25 | 2.00 | 0.03 |
|
|
16
|
+
| gpt-5-nano | haiku | 0.05 | 0.40 | 0.01 |
|
|
17
|
+
|
|
18
|
+
## Estimator formula
|
|
19
|
+
|
|
20
|
+
Same shape as `reference/prices/claude.md`; see that file for the formula and `size_budget` ranges. Token ranges are runtime-neutral.
|
|
21
|
+
|
|
22
|
+
## Update protocol
|
|
23
|
+
|
|
24
|
+
1. Confirm authoritative numbers at https://openai.com/api/pricing/ and update the table; remove the `<TODO>` provenance tag.
|
|
25
|
+
2. New model added to `reference/runtime-models.md` under `id: "codex"`: add a row here with the matching model string and tier.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# GitHub Copilot — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `copilot` (GitHub Copilot CLI)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://docs.github.com/en/copilot/about-github-copilot/plans-for-github-copilot>` — pending.
|
|
7
|
+
|
|
8
|
+
## Pricing (USD per 1M tokens)
|
|
9
|
+
|
|
10
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
11
|
+
|-------|------|--------------|---------------|----------------------|
|
|
12
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
13
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
14
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
|
|
16
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
17
|
+
|
|
18
|
+
## Update protocol
|
|
19
|
+
|
|
20
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
21
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "copilot"`.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Cursor — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `cursor` (Cursor IDE / CLI)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://docs.cursor.com/account/pricing>` — pending.
|
|
7
|
+
|
|
8
|
+
## Pricing (USD per 1M tokens)
|
|
9
|
+
|
|
10
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
11
|
+
|-------|------|--------------|---------------|----------------------|
|
|
12
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
13
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
14
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
|
|
16
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
17
|
+
|
|
18
|
+
## Update protocol
|
|
19
|
+
|
|
20
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
21
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "cursor"`.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Google — Gemini CLI Price Table
|
|
2
|
+
|
|
3
|
+
**Runtime:** `gemini` (Google Gemini CLI)
|
|
4
|
+
**Phase 26 D-08 sub-table.** Pricing for the Gemini 2.5 tier referenced in `reference/runtime-models.md` under `id: "gemini"`.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://ai.google.dev/pricing>` — retrieved 2026-04-29 (placeholder — v1.26.0 ships with seed numbers; runtime adapter authors confirm and PR before v1.27).
|
|
7
|
+
|
|
8
|
+
**Status:** placeholder values reflect public Gemini 2.5 tier positioning at v1.26.0 ship time. Cost-aggregator will surface drift if measured spend deviates from these figures by more than 20% after 10+ cycles.
|
|
9
|
+
|
|
10
|
+
## Pricing (USD per 1M tokens)
|
|
11
|
+
|
|
12
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
13
|
+
|-------|------|--------------|---------------|----------------------|
|
|
14
|
+
| gemini-2.5-pro | opus | 1.25 | 10.00 | 0.31 |
|
|
15
|
+
| gemini-2.5-flash | sonnet | 0.30 | 2.50 | 0.075 |
|
|
16
|
+
| gemini-2.5-flash-lite | haiku | 0.10 | 0.40 | 0.025 |
|
|
17
|
+
|
|
18
|
+
## Estimator formula
|
|
19
|
+
|
|
20
|
+
Same shape as `reference/prices/claude.md`.
|
|
21
|
+
|
|
22
|
+
## Update protocol
|
|
23
|
+
|
|
24
|
+
1. Confirm authoritative numbers at https://ai.google.dev/pricing and update; remove `<TODO>` tag.
|
|
25
|
+
2. New model added to `reference/runtime-models.md` under `id: "gemini"`: add a row here.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Kilo Code — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `kilo` (Kilo Code)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://kilocode.ai/docs>` — pending.
|
|
7
|
+
|
|
8
|
+
## Pricing (USD per 1M tokens)
|
|
9
|
+
|
|
10
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
11
|
+
|-------|------|--------------|---------------|----------------------|
|
|
12
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
13
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
14
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
|
|
16
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
17
|
+
|
|
18
|
+
## Update protocol
|
|
19
|
+
|
|
20
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
21
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "kilo"`.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# OpenCode — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `opencode` (OpenCode)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://opencode.ai/docs>` — pending.
|
|
7
|
+
|
|
8
|
+
**Note:** OpenCode is a BYO-API-key runtime — actual pricing is determined by whichever provider key the user supplies. The `tier_to_model` row in `reference/runtime-models.md` chooses a default model per tier; this table prices that default. Users of other providers should override locally.
|
|
9
|
+
|
|
10
|
+
## Pricing (USD per 1M tokens)
|
|
11
|
+
|
|
12
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
13
|
+
|-------|------|--------------|---------------|----------------------|
|
|
14
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
16
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
17
|
+
|
|
18
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
19
|
+
|
|
20
|
+
## Update protocol
|
|
21
|
+
|
|
22
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
23
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "opencode"`.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# Alibaba — Qwen CLI Price Table
|
|
2
|
+
|
|
3
|
+
**Runtime:** `qwen` (Alibaba Qwen CLI)
|
|
4
|
+
**Phase 26 D-08 sub-table.** Pricing for the Qwen 3 tier referenced in `reference/runtime-models.md` under `id: "qwen"`.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://www.alibabacloud.com/help/en/model-studio/billing-for-models>` — retrieved 2026-04-29 (placeholder — v1.26.0 ships with seed numbers; runtime adapter authors confirm and PR before v1.27).
|
|
7
|
+
|
|
8
|
+
**Status:** placeholder values reflect public Model Studio tier positioning at v1.26.0 ship time. Cost-aggregator will surface drift if measured spend deviates from these figures by more than 20% after 10+ cycles.
|
|
9
|
+
|
|
10
|
+
## Pricing (USD per 1M tokens)
|
|
11
|
+
|
|
12
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
13
|
+
|-------|------|--------------|---------------|----------------------|
|
|
14
|
+
| qwen3-max | opus | 2.40 | 9.60 | 0.24 |
|
|
15
|
+
| qwen3-plus | sonnet | 0.40 | 1.20 | 0.04 |
|
|
16
|
+
| qwen3-flash | haiku | 0.05 | 0.40 | 0.005 |
|
|
17
|
+
|
|
18
|
+
## Estimator formula
|
|
19
|
+
|
|
20
|
+
Same shape as `reference/prices/claude.md`.
|
|
21
|
+
|
|
22
|
+
## Update protocol
|
|
23
|
+
|
|
24
|
+
1. Confirm authoritative numbers at https://www.alibabacloud.com/help/en/model-studio/billing-for-models and update; remove `<TODO>` tag.
|
|
25
|
+
2. New model added to `reference/runtime-models.md` under `id: "qwen"`: add a row here.
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Trae — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `trae` (Trae)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://trae.ai/docs>` — pending.
|
|
7
|
+
|
|
8
|
+
**Note:** Trae may be a `single_tier` runtime (one model maps to all three tiers). When confirming pricing, populate all three rows with the same numbers and the same model name; mark `single_tier: true` in the corresponding `reference/runtime-models.md` row.
|
|
9
|
+
|
|
10
|
+
## Pricing (USD per 1M tokens)
|
|
11
|
+
|
|
12
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
13
|
+
|-------|------|--------------|---------------|----------------------|
|
|
14
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
16
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
17
|
+
|
|
18
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
19
|
+
|
|
20
|
+
## Update protocol
|
|
21
|
+
|
|
22
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
23
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "trae"`.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Windsurf — Price Table (stub)
|
|
2
|
+
|
|
3
|
+
**Runtime:** `windsurf` (Windsurf / Codeium)
|
|
4
|
+
**Phase 26 D-08 sub-table — STUB.** Placeholder so the price-table router (`reference/model-prices.md`) has a complete link list for all 14 runtimes. Runtime adapter authors fill this in with provenance citations in a later cycle.
|
|
5
|
+
|
|
6
|
+
**Provenance:** `<TODO: confirm at https://docs.windsurf.com/windsurf/plans>` — pending.
|
|
7
|
+
|
|
8
|
+
## Pricing (USD per 1M tokens)
|
|
9
|
+
|
|
10
|
+
| Model | Tier | input_per_1m | output_per_1m | cached_input_per_1m |
|
|
11
|
+
|-------|------|--------------|---------------|----------------------|
|
|
12
|
+
| _TBD_ | opus | <TODO> | <TODO> | <TODO> |
|
|
13
|
+
| _TBD_ | sonnet | <TODO> | <TODO> | <TODO> |
|
|
14
|
+
| _TBD_ | haiku | <TODO> | <TODO> | <TODO> |
|
|
15
|
+
|
|
16
|
+
The budget-enforcer treats unparseable rows as missing and falls back to `reference/prices/claude.md` per the D-08 fallback chain.
|
|
17
|
+
|
|
18
|
+
## Update protocol
|
|
19
|
+
|
|
20
|
+
1. Confirm authoritative numbers at the runtime author's pricing docs and update; remove `<TODO>` tags.
|
|
21
|
+
2. Add provenance citation matching the `reference/runtime-models.md` row for `id: "windsurf"`.
|
package/reference/registry.json
CHANGED
|
@@ -452,7 +452,106 @@
|
|
|
452
452
|
"name": "model-prices",
|
|
453
453
|
"path": "reference/model-prices.md",
|
|
454
454
|
"type": "data",
|
|
455
|
-
"
|
|
455
|
+
"phase": 26,
|
|
456
|
+
"description": "Phase 26 D-08 router — links to per-runtime price sub-tables under reference/prices/<runtime>.md (claude/codex/gemini/qwen canonical, 10 stubs); read by scripts/lib/budget-enforcer.cjs"
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"name": "prices-claude",
|
|
460
|
+
"path": "reference/prices/claude.md",
|
|
461
|
+
"type": "data",
|
|
462
|
+
"phase": 26,
|
|
463
|
+
"description": "Phase 26 D-08 sub-table — Anthropic Claude Code pricing (canonical Anthropic table preserved from v1.25 model-prices.md; haiku/sonnet/opus rows + size_budget token ranges)"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"name": "prices-codex",
|
|
467
|
+
"path": "reference/prices/codex.md",
|
|
468
|
+
"type": "data",
|
|
469
|
+
"phase": 26,
|
|
470
|
+
"description": "Phase 26 D-08 sub-table — OpenAI Codex CLI pricing (gpt-5/gpt-5-mini/gpt-5-nano seed; provenance <TODO> at https://openai.com/api/pricing/)"
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"name": "prices-gemini",
|
|
474
|
+
"path": "reference/prices/gemini.md",
|
|
475
|
+
"type": "data",
|
|
476
|
+
"phase": 26,
|
|
477
|
+
"description": "Phase 26 D-08 sub-table — Google Gemini CLI pricing (gemini-2.5-pro/flash/flash-lite seed; provenance <TODO> at https://ai.google.dev/pricing)"
|
|
478
|
+
},
|
|
479
|
+
{
|
|
480
|
+
"name": "prices-qwen",
|
|
481
|
+
"path": "reference/prices/qwen.md",
|
|
482
|
+
"type": "data",
|
|
483
|
+
"phase": 26,
|
|
484
|
+
"description": "Phase 26 D-08 sub-table — Alibaba Qwen CLI pricing (qwen3-max/plus/flash seed; provenance <TODO> at https://www.alibabacloud.com/help/en/model-studio/billing-for-models)"
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
"name": "prices-kilo",
|
|
488
|
+
"path": "reference/prices/kilo.md",
|
|
489
|
+
"type": "data",
|
|
490
|
+
"phase": 26,
|
|
491
|
+
"description": "Phase 26 D-08 sub-table — Kilo Code pricing (stub; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
"name": "prices-copilot",
|
|
495
|
+
"path": "reference/prices/copilot.md",
|
|
496
|
+
"type": "data",
|
|
497
|
+
"phase": 26,
|
|
498
|
+
"description": "Phase 26 D-08 sub-table — GitHub Copilot CLI pricing (stub; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
"name": "prices-cursor",
|
|
502
|
+
"path": "reference/prices/cursor.md",
|
|
503
|
+
"type": "data",
|
|
504
|
+
"phase": 26,
|
|
505
|
+
"description": "Phase 26 D-08 sub-table — Cursor pricing (stub; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"name": "prices-windsurf",
|
|
509
|
+
"path": "reference/prices/windsurf.md",
|
|
510
|
+
"type": "data",
|
|
511
|
+
"phase": 26,
|
|
512
|
+
"description": "Phase 26 D-08 sub-table — Windsurf pricing (stub; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "prices-antigravity",
|
|
516
|
+
"path": "reference/prices/antigravity.md",
|
|
517
|
+
"type": "data",
|
|
518
|
+
"phase": 26,
|
|
519
|
+
"description": "Phase 26 D-08 sub-table — Antigravity pricing (stub; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
520
|
+
},
|
|
521
|
+
{
|
|
522
|
+
"name": "prices-augment",
|
|
523
|
+
"path": "reference/prices/augment.md",
|
|
524
|
+
"type": "data",
|
|
525
|
+
"phase": 26,
|
|
526
|
+
"description": "Phase 26 D-08 sub-table — Augment Code pricing (stub; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"name": "prices-trae",
|
|
530
|
+
"path": "reference/prices/trae.md",
|
|
531
|
+
"type": "data",
|
|
532
|
+
"phase": 26,
|
|
533
|
+
"description": "Phase 26 D-08 sub-table — Trae pricing (stub; possibly single_tier runtime; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
"name": "prices-codebuddy",
|
|
537
|
+
"path": "reference/prices/codebuddy.md",
|
|
538
|
+
"type": "data",
|
|
539
|
+
"phase": 26,
|
|
540
|
+
"description": "Phase 26 D-08 sub-table — Tencent CodeBuddy pricing (stub; runtime adapter authors fill with provenance citation in a later cycle)"
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"name": "prices-cline",
|
|
544
|
+
"path": "reference/prices/cline.md",
|
|
545
|
+
"type": "data",
|
|
546
|
+
"phase": 26,
|
|
547
|
+
"description": "Phase 26 D-08 sub-table — Cline pricing (stub; BYO-API-key runtime, default model pricing only)"
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"name": "prices-opencode",
|
|
551
|
+
"path": "reference/prices/opencode.md",
|
|
552
|
+
"type": "data",
|
|
553
|
+
"phase": 26,
|
|
554
|
+
"description": "Phase 26 D-08 sub-table — OpenCode pricing (stub; BYO-API-key runtime, default model pricing only)"
|
|
456
555
|
},
|
|
457
556
|
{
|
|
458
557
|
"name": "model-tiers",
|
|
@@ -460,6 +559,13 @@
|
|
|
460
559
|
"type": "data",
|
|
461
560
|
"description": "Per-agent default tier map and rationale"
|
|
462
561
|
},
|
|
562
|
+
{
|
|
563
|
+
"name": "runtime-models",
|
|
564
|
+
"path": "reference/runtime-models.md",
|
|
565
|
+
"type": "data",
|
|
566
|
+
"phase": 26,
|
|
567
|
+
"description": "Phase 26 per-runtime tier→model adapter source-of-truth (D-01) — 14 runtimes (claude/codex/gemini/qwen/kilo/copilot/cursor/windsurf/antigravity/augment/trae/codebuddy/cline/opencode), each row carries opus|sonnet|haiku tier map, high|medium|low reasoning-class alias, and provenance (URL + retrieval timestamp + last-validated cycle); validated against reference/schemas/runtime-models.schema.json"
|
|
568
|
+
},
|
|
463
569
|
{
|
|
464
570
|
"name": "motion",
|
|
465
571
|
"path": "reference/motion.md",
|