@use-aistack/cli 0.6.0 → 0.6.1

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/dist/index.js CHANGED
@@ -1912,7 +1912,7 @@ import { stat as stat2 } from "fs/promises";
1912
1912
 
1913
1913
  // src/harness/shared/pricing.ts
1914
1914
  var PRICING_TABLE_VERSION = "anthropic-list-2026-07-25";
1915
- var OPENAI_PRICING_TABLE_VERSION = "openai-list-2026-08-01";
1915
+ var OPENAI_PRICING_TABLE_VERSION = "openai-list-2026-08-02";
1916
1916
  var CACHE_WRITE_5M_MULTIPLIER = 1.25;
1917
1917
  var CACHE_WRITE_1H_MULTIPLIER = 2;
1918
1918
  var CACHE_READ_MULTIPLIER = 0.1;
@@ -1935,11 +1935,23 @@ var PRICES = {
1935
1935
  "claude-opus-5#fast": [{ from: null, to: null, input: 10, output: 50 }],
1936
1936
  "claude-opus-4-8#fast": [{ from: null, to: null, input: 10, output: 50 }],
1937
1937
  // OpenAI (Codex) — standard-context tier (<272K; observed context window is
1938
- // 258,400). gpt-5.3-codex and the 5.6 line have NO published price yet, so
1939
- // they are deliberately absent and surface as unpriced (#66 decision 6).
1938
+ // 258,400).
1940
1939
  "gpt-5.5": [{ from: null, to: null, input: 5, output: 30 }],
1941
1940
  "gpt-5.4": [{ from: null, to: null, input: 2.5, output: 15 }],
1942
- "gpt-5.4-mini": [{ from: null, to: null, input: 0.75, output: 4.5 }]
1941
+ "gpt-5.4-mini": [{ from: null, to: null, input: 0.75, output: 4.5 }],
1942
+ "gpt-5.3-codex": [{ from: null, to: null, input: 1.75, output: 14 }],
1943
+ // The gpt-5.6 family launched 2026-07-29; Terra and Luna were repriced on
1944
+ // 2026-07-30 (-20% / -80%). The one-day launch rates are not on the list
1945
+ // page and are NOT encoded — a July-29 Terra/Luna record underprices for
1946
+ // one day rather than carrying a rate we cannot cite (#72).
1947
+ "gpt-5.6-sol": [{ from: null, to: null, input: 5, output: 30 }],
1948
+ "gpt-5.6-terra": [{ from: null, to: null, input: 2, output: 12 }],
1949
+ "gpt-5.6-luna": [{ from: null, to: null, input: 0.2, output: 1.2 }],
1950
+ // NOT on OpenAI's list page — an internal Codex routing label with no
1951
+ // official price (openai/codex#20981). Rate is the aggregator consensus
1952
+ // ($2.50 / $15.00), scoped in explicitly by ticket #72 because it carries
1953
+ // real token volume in Codex rollouts.
1954
+ "codex-auto-review": [{ from: null, to: null, input: 2.5, output: 15 }]
1943
1955
  };
1944
1956
  function normalizeModel(model) {
1945
1957
  const [base, suffix] = model.split("#");