clawmoney 0.15.65 → 0.15.66

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.
@@ -34,23 +34,23 @@ const RECOMMENDED_MODELS = {
34
34
  // Claude Code /model menu: Default(Sonnet 4.6) / Sonnet(1M) / Opus(1M) / Haiku
35
35
  // → 3 unique model IDs (Sonnet 1M = same model + context-1m beta)
36
36
  claude: ["claude-sonnet-4-6", "claude-opus-4-6", "claude-haiku-4-5"],
37
- // Codex CLI /model menu (verified April 2026, v0.12x):
38
- // gpt-5.3-codex (default) — latest frontier agentic coding
39
- // gpt-5.4 (current)latest frontier agentic coding
40
- // gpt-5.2-codex prior frontier agentic coding
41
- // gpt-5.1-codex-max Codex-optimized flagship (deep+fast)
42
- // gpt-5.2 latest frontier general model
43
- // gpt-5.1-codex-mini cheap/fast/smaller Codex
44
- // gpt-5.4-mini is NOT in Codex CLI's menu ChatGPT's Plus API offers
45
- // it but Codex CLI doesn't expose it, so serving it as a Codex-family
46
- // provider would never see traffic. Dropped from the recommended list.
37
+ // Codex CLI /model menu for ChatGPT sign-in (post 2026-04-14 cleanup):
38
+ // gpt-5.4 — latest frontier agentic coding (current default)
39
+ // gpt-5.4-minismaller frontier agentic coding
40
+ // gpt-5.3-codex industry-leading Codex-optimized model
41
+ // gpt-5.2 previous general-purpose model
42
+ // gpt-5.3-codex-spark Pro-only preview, excluded from auto-register
43
+ // OpenAI removed gpt-5.2-codex / gpt-5.1-codex-max / gpt-5.1-codex-mini /
44
+ // gpt-5.1-codex / gpt-5.1 / gpt-5 from the ChatGPT-sign-in picker on
45
+ // 2026-04-07 and fully dropped them on 2026-04-14. Requests for those
46
+ // models now fail upstream with "The '<model>' model is not supported
47
+ // when using Codex with a ChatGPT account", so they're no longer
48
+ // auto-registered.
47
49
  codex: [
48
- "gpt-5.3-codex",
49
50
  "gpt-5.4",
50
- "gpt-5.2-codex",
51
- "gpt-5.1-codex-max",
51
+ "gpt-5.4-mini",
52
+ "gpt-5.3-codex",
52
53
  "gpt-5.2",
53
- "gpt-5.1-codex-mini",
54
54
  ],
55
55
  // Gemini CLI exposes a long list; mainstream picks are the production-
56
56
  // stable 2.5 line (pro + flash) and the latest 3.x preview (pro + flash).
@@ -24,28 +24,23 @@ export const API_PRICES = {
24
24
  "claude-sonnet-4-6": { input: 3, output: 15 },
25
25
  "claude-sonnet-4-5": { input: 3, output: 15 },
26
26
  "claude-haiku-4-5": { input: 1, output: 5 },
27
- // ── OpenAI (ChatGPT Plus / Codex subscriptions) ──
28
- // Verified against LiteLLM. Codex CLI may expose any of these depending
29
- // on the user's subscription tier and which models ChatGPT enables.
27
+ // ── OpenAI (ChatGPT Plus / Pro via Codex CLI) ──
28
+ // Verified against LiteLLM. Per OpenAI's 2026-04-14 Codex changelog,
29
+ // ChatGPT-sign-in users can only pick gpt-5.4 / gpt-5.4-mini /
30
+ // gpt-5.3-codex / gpt-5.2, plus gpt-5.3-codex-spark on Pro. The old
31
+ // 5 / 5.1 / 5.2-codex families were fully removed that day. Anything
32
+ // below this comment that's deprecated was removed from the CLI-side
33
+ // pricing table so `modelsForCli("codex")` no longer offers them.
30
34
  "gpt-5.4": { input: 2.50, output: 15 },
31
35
  "gpt-5.4-mini": { input: 0.75, output: 4.50 },
32
- "gpt-5.4-nano": { input: 0.20, output: 1.25 },
33
- // gpt-5.4-pro is not in LiteLLM as of April 2026. Keeping the manually
34
- // verified values from OpenAI's enterprise pricing page.
35
- "gpt-5.4-pro": { input: 30, output: 180 },
36
36
  "gpt-5.3-codex": { input: 1.75, output: 14 },
37
37
  // gpt-5.3-codex-spark is not in LiteLLM — sub2api falls back to
38
38
  // gpt-5.1-codex pricing (see pricing_service.go SparkBilling handling).
39
39
  "gpt-5.3-codex-spark": { input: 1.25, output: 10 },
40
40
  "gpt-5.2": { input: 1.75, output: 14 },
41
- "gpt-5.2-codex": { input: 1.75, output: 14 },
42
- "gpt-5.1": { input: 1.25, output: 10 },
43
- "gpt-5.1-codex": { input: 1.25, output: 10 },
44
- "gpt-5.1-codex-mini": { input: 0.25, output: 2 },
45
- "gpt-5.1-codex-max": { input: 1.25, output: 10 },
46
- "gpt-5": { input: 1.25, output: 10 },
47
41
  // Reasoning models (o-series). Previously had incorrect values — LiteLLM
48
42
  // confirms o3 is $2/$8 (not $5/$20) and o4-mini is $1.1/$4.4 (not $4/$16).
43
+ // These are API-only (not Codex CLI), kept for OpenAI SDK callers.
49
44
  "o3": { input: 2, output: 8 },
50
45
  "o4-mini": { input: 1.1, output: 4.4 },
51
46
  // ── Google Antigravity (Ultra-bundled IDE quota pool) ──
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawmoney",
3
- "version": "0.15.65",
3
+ "version": "0.15.66",
4
4
  "description": "ClawMoney CLI -- Earn rewards with your AI agent",
5
5
  "type": "module",
6
6
  "bin": {