@aibridge/cli 0.10.2 → 0.10.3
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
|
@@ -38,6 +38,18 @@ const MODELS = {
|
|
|
38
38
|
],
|
|
39
39
|
brief: "xAI Grok 4.5 via grok CLI — own xAI login; ~30 req/min, ~1k msgs/day, single-flight"
|
|
40
40
|
},
|
|
41
|
+
"google-antigravity/gemini-3.8-flash": {
|
|
42
|
+
slug: "google-antigravity/gemini-3.8-flash",
|
|
43
|
+
backend: "agy",
|
|
44
|
+
backendModel: "gemini-3.8-flash",
|
|
45
|
+
efforts: [
|
|
46
|
+
"low",
|
|
47
|
+
"medium",
|
|
48
|
+
"high"
|
|
49
|
+
],
|
|
50
|
+
defaultEffort: "high",
|
|
51
|
+
brief: "Google Gemini 3.8 Flash via agy — own Antigravity login; quota shared across all Gemini tiers (not itemised per-model, so no exhaustion preflight)"
|
|
52
|
+
},
|
|
41
53
|
"google-antigravity/gemini-3.7-flash": {
|
|
42
54
|
slug: "google-antigravity/gemini-3.7-flash",
|
|
43
55
|
backend: "agy",
|
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-eE2XW0Am.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
|
@@ -89,7 +89,8 @@ rather than guess.**
|
|
|
89
89
|
Also registered: `openai-codex/gpt-5.6-terra` / `-luna` (cheaper coding tiers),
|
|
90
90
|
`anthropic-claude/fable-5.1` (hardest, longest-running work),
|
|
91
91
|
`anthropic-claude/haiku-4-5` (quick answers),
|
|
92
|
-
`google-antigravity/gemini-3.
|
|
92
|
+
`google-antigravity/gemini-3.8-flash` (newest flash tier, no per-model quota
|
|
93
|
+
guard yet), `google-antigravity/gemini-3.6-flash`, `google-antigravity/gemini-3.1-pro`
|
|
93
94
|
(`-high`/`-low` only), and agy's `claude-sonnet-4-6` /
|
|
94
95
|
`claude-opus-4-6-thinking` / `gpt-oss-120b-medium`. Run `aibridge models
|
|
95
96
|
[--json]` for exact per-seat facts, or `aibridge <command> --help` for the list.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aibridge/cli",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"description": "Agent instructions and CLI for delegating work to authenticated AI CLIs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"@stricli/core": "1.3.0",
|
|
39
39
|
"sharp": "^0.35.3",
|
|
40
40
|
"@aibridge/proc": "0.9.0",
|
|
41
|
-
"@aibridge/driver-
|
|
41
|
+
"@aibridge/driver-claude": "0.9.0",
|
|
42
42
|
"@aibridge/driver-codex": "0.9.0",
|
|
43
43
|
"@aibridge/driver-grok": "0.9.0",
|
|
44
|
-
"@aibridge/driver-
|
|
44
|
+
"@aibridge/driver-agy": "0.9.0"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"tsdown": "0.22.14"
|
package/src/models.ts
CHANGED
|
@@ -42,6 +42,15 @@ export const MODELS: Record<string, ModelSpec> = {
|
|
|
42
42
|
efforts: ['low', 'medium', 'high'],
|
|
43
43
|
brief: 'xAI Grok 4.5 via grok CLI — own xAI login; ~30 req/min, ~1k msgs/day, single-flight',
|
|
44
44
|
},
|
|
45
|
+
'google-antigravity/gemini-3.8-flash': {
|
|
46
|
+
slug: 'google-antigravity/gemini-3.8-flash',
|
|
47
|
+
backend: 'agy',
|
|
48
|
+
backendModel: 'gemini-3.8-flash',
|
|
49
|
+
efforts: ['low', 'medium', 'high'],
|
|
50
|
+
defaultEffort: 'high',
|
|
51
|
+
brief:
|
|
52
|
+
'Google Gemini 3.8 Flash via agy — own Antigravity login; quota shared across all Gemini tiers (not itemised per-model, so no exhaustion preflight)',
|
|
53
|
+
},
|
|
45
54
|
'google-antigravity/gemini-3.7-flash': {
|
|
46
55
|
slug: 'google-antigravity/gemini-3.7-flash',
|
|
47
56
|
backend: 'agy',
|