@aibridge/cli 0.10.1 → 0.10.2
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
|
@@ -127,10 +127,10 @@ const MODELS = {
|
|
|
127
127
|
],
|
|
128
128
|
brief: "OpenAI gpt-5.6-luna via codex CLI — fast and affordable coding; own ChatGPT login"
|
|
129
129
|
},
|
|
130
|
-
"anthropic-claude/fable-5": {
|
|
131
|
-
slug: "anthropic-claude/fable-5",
|
|
130
|
+
"anthropic-claude/fable-5.1": {
|
|
131
|
+
slug: "anthropic-claude/fable-5.1",
|
|
132
132
|
backend: "claude",
|
|
133
|
-
backendModel: "claude-fable-5",
|
|
133
|
+
backendModel: "claude-fable-5-1",
|
|
134
134
|
efforts: [
|
|
135
135
|
"low",
|
|
136
136
|
"medium",
|
|
@@ -139,7 +139,7 @@ const MODELS = {
|
|
|
139
139
|
"max"
|
|
140
140
|
],
|
|
141
141
|
defaultEffort: "high",
|
|
142
|
-
brief: "Claude Fable 5 via claude CLI — hardest, longest-running work; bills the claude CLI subscription"
|
|
142
|
+
brief: "Claude Fable 5.1 via claude CLI — hardest, longest-running work; bills the claude CLI subscription"
|
|
143
143
|
},
|
|
144
144
|
"anthropic-claude/opus-5": {
|
|
145
145
|
slug: "anthropic-claude/opus-5",
|
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-
|
|
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-8-_UJAjA.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 };
|
package/instructions/SKILL.md
CHANGED
|
@@ -87,7 +87,7 @@ detailed the plan must be.
|
|
|
87
87
|
rather than guess.**
|
|
88
88
|
|
|
89
89
|
Also registered: `openai-codex/gpt-5.6-terra` / `-luna` (cheaper coding tiers),
|
|
90
|
-
`anthropic-claude/fable-5` (hardest, longest-running work),
|
|
90
|
+
`anthropic-claude/fable-5.1` (hardest, longest-running work),
|
|
91
91
|
`anthropic-claude/haiku-4-5` (quick answers),
|
|
92
92
|
`google-antigravity/gemini-3.6-flash`, `google-antigravity/gemini-3.1-pro`
|
|
93
93
|
(`-high`/`-low` only), and agy's `claude-sonnet-4-6` /
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aibridge/cli",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Agent instructions and CLI for delegating work to authenticated AI CLIs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"@aibridge/proc": "0.9.0",
|
|
41
41
|
"@aibridge/driver-agy": "0.9.0",
|
|
42
42
|
"@aibridge/driver-codex": "0.9.0",
|
|
43
|
-
"@aibridge/driver-
|
|
44
|
-
"@aibridge/driver-
|
|
43
|
+
"@aibridge/driver-grok": "0.9.0",
|
|
44
|
+
"@aibridge/driver-claude": "0.9.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"tsdown": "0.22.14"
|
package/src/models.ts
CHANGED
|
@@ -114,14 +114,14 @@ export const MODELS: Record<string, ModelSpec> = {
|
|
|
114
114
|
efforts: ['low', 'medium', 'high', 'xhigh'],
|
|
115
115
|
brief: 'OpenAI gpt-5.6-luna via codex CLI — fast and affordable coding; own ChatGPT login',
|
|
116
116
|
},
|
|
117
|
-
'anthropic-claude/fable-5': {
|
|
118
|
-
slug: 'anthropic-claude/fable-5',
|
|
117
|
+
'anthropic-claude/fable-5.1': {
|
|
118
|
+
slug: 'anthropic-claude/fable-5.1',
|
|
119
119
|
backend: 'claude',
|
|
120
|
-
backendModel: 'claude-fable-5',
|
|
120
|
+
backendModel: 'claude-fable-5-1',
|
|
121
121
|
efforts: ['low', 'medium', 'high', 'xhigh', 'max'],
|
|
122
122
|
defaultEffort: 'high',
|
|
123
123
|
brief:
|
|
124
|
-
'Claude Fable 5 via claude CLI — hardest, longest-running work; bills the claude CLI subscription',
|
|
124
|
+
'Claude Fable 5.1 via claude CLI — hardest, longest-running work; bills the claude CLI subscription',
|
|
125
125
|
},
|
|
126
126
|
'anthropic-claude/opus-5': {
|
|
127
127
|
slug: 'anthropic-claude/opus-5',
|