@aibridge/cli 0.10.5 → 0.10.6

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/cli.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- import { r as runCli, t as buildContext } from "./context-DWvJXkGC.mjs";
2
+ import { r as runCli, t as buildContext } from "./context-DN1UzbCx.mjs";
3
3
  //#region src/cli.ts
4
4
  await runCli(buildContext(process), process.argv.slice(2));
5
5
  //#endregion
@@ -155,6 +155,30 @@ const MODELS = {
155
155
  ],
156
156
  brief: "OpenAI gpt-5.6-luna via codex CLI — fast and affordable coding; own ChatGPT login"
157
157
  },
158
+ "openai-codex/gpt-5.5": {
159
+ slug: "openai-codex/gpt-5.5",
160
+ backend: "codex",
161
+ backendModel: "gpt-5.5",
162
+ efforts: [
163
+ "low",
164
+ "medium",
165
+ "high",
166
+ "xhigh"
167
+ ],
168
+ brief: "OpenAI gpt-5.5 via codex CLI — previous-generation general model; own ChatGPT login"
169
+ },
170
+ "openai-codex/gpt-5.4-mini": {
171
+ slug: "openai-codex/gpt-5.4-mini",
172
+ backend: "codex",
173
+ backendModel: "gpt-5.4-mini",
174
+ efforts: [
175
+ "low",
176
+ "medium",
177
+ "high",
178
+ "xhigh"
179
+ ],
180
+ brief: "OpenAI gpt-5.4-mini via codex CLI — small, cheap; own ChatGPT login"
181
+ },
158
182
  "anthropic-claude/fable-5.1": {
159
183
  slug: "anthropic-claude/fable-5.1",
160
184
  backend: "claude",
package/dist/index.mjs CHANGED
@@ -1,2 +1,2 @@
1
- import { S as supportsImageGen, _ as backendModelId, a as readRunLogs, b as listModelHelpLines, c as evaluateAgyPreflight, d as preflightModel, f as renderPreflightRefusal, g as MODELS, h as positiveIntSeconds, i as listRuns, l as evaluateCodexPreflight, m as nonEmptyPrompt, n as app, o as startRun, p as getDriver, r as runCli, s as delegate, t as buildContext, u as preflightCodex, v as formatImageGenModelError, x as resolveModel, y as formatUnknownModelError } from "./context-DWvJXkGC.mjs";
1
+ import { S as supportsImageGen, _ as backendModelId, a as readRunLogs, b as listModelHelpLines, c as evaluateAgyPreflight, d as preflightModel, f as renderPreflightRefusal, g as MODELS, h as positiveIntSeconds, i as listRuns, l as evaluateCodexPreflight, m as nonEmptyPrompt, n as app, o as startRun, p as getDriver, r as runCli, s as delegate, t as buildContext, u as preflightCodex, v as formatImageGenModelError, x as resolveModel, y as formatUnknownModelError } from "./context-DN1UzbCx.mjs";
2
2
  export { MODELS, app, backendModelId, buildContext, delegate, evaluateAgyPreflight, evaluateCodexPreflight, formatImageGenModelError, formatUnknownModelError, getDriver, listModelHelpLines, listRuns, nonEmptyPrompt, positiveIntSeconds, preflightCodex, preflightModel, readRunLogs, renderPreflightRefusal, resolveModel, runCli, startRun, supportsImageGen };
@@ -88,6 +88,7 @@ rather than guess.**
88
88
 
89
89
  Also registered: `openai-codex/gpt-6-astra` (newest codex frontier tier),
90
90
  `openai-codex/gpt-5.6-terra` / `-luna` (cheaper coding tiers),
91
+ `openai-codex/gpt-5.5` / `gpt-5.4-mini` (older codex tiers, still served),
91
92
  `anthropic-claude/fable-5.1` (hardest, longest-running work),
92
93
  `anthropic-claude/haiku-4-5` (quick answers),
93
94
  `google-antigravity/gemini-3.8-flash` (newest flash tier, no per-model quota
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aibridge/cli",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "description": "Agent instructions and CLI for delegating work to authenticated AI CLIs",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -37,11 +37,11 @@
37
37
  "dependencies": {
38
38
  "@stricli/core": "1.3.0",
39
39
  "sharp": "^0.35.3",
40
- "@aibridge/driver-grok": "0.9.0",
41
40
  "@aibridge/proc": "0.9.0",
41
+ "@aibridge/driver-grok": "0.9.0",
42
42
  "@aibridge/driver-agy": "0.9.0",
43
- "@aibridge/driver-codex": "0.9.0",
44
- "@aibridge/driver-claude": "0.9.0"
43
+ "@aibridge/driver-claude": "0.9.0",
44
+ "@aibridge/driver-codex": "0.9.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "tsdown": "0.22.14"
package/src/models.ts CHANGED
@@ -132,6 +132,21 @@ export const MODELS: Record<string, ModelSpec> = {
132
132
  efforts: ['low', 'medium', 'high', 'xhigh', 'max'],
133
133
  brief: 'OpenAI gpt-5.6-luna via codex CLI — fast and affordable coding; own ChatGPT login',
134
134
  },
135
+ // Every id the latest codex lists as visible stays registered (2026-09-07).
136
+ 'openai-codex/gpt-5.5': {
137
+ slug: 'openai-codex/gpt-5.5',
138
+ backend: 'codex',
139
+ backendModel: 'gpt-5.5',
140
+ efforts: ['low', 'medium', 'high', 'xhigh'],
141
+ brief: 'OpenAI gpt-5.5 via codex CLI — previous-generation general model; own ChatGPT login',
142
+ },
143
+ 'openai-codex/gpt-5.4-mini': {
144
+ slug: 'openai-codex/gpt-5.4-mini',
145
+ backend: 'codex',
146
+ backendModel: 'gpt-5.4-mini',
147
+ efforts: ['low', 'medium', 'high', 'xhigh'],
148
+ brief: 'OpenAI gpt-5.4-mini via codex CLI — small, cheap; own ChatGPT login',
149
+ },
135
150
  'anthropic-claude/fable-5.1': {
136
151
  slug: 'anthropic-claude/fable-5.1',
137
152
  backend: 'claude',