@aibridge/cli 0.10.0 → 0.10.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/README.md +8 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -28,8 +28,10 @@ Install the skill into your agent:
|
|
|
28
28
|
npx skills add ycmjason/aibridge
|
|
29
29
|
```
|
|
30
30
|
|
|
31
|
-
The skill
|
|
32
|
-
|
|
31
|
+
The installed skill is a small evergreen loader. It asks the latest CLI package
|
|
32
|
+
for canonical instructions, then pins that exact version for the rest of the
|
|
33
|
+
session. Routing guidance and executable behavior therefore update together.
|
|
34
|
+
Ask your agent to "use aibridge", or run a command directly:
|
|
33
35
|
|
|
34
36
|
```bash
|
|
35
37
|
npx -y @aibridge/cli subagent --model xai-grok/grok-4.6 "summarize the architecture of this repo"
|
|
@@ -49,6 +51,7 @@ npx -y @aibridge/cli subagent --model xai-grok/grok-4.6 "summarize the architect
|
|
|
49
51
|
| `aibridge models [--json]` | List registered models and their capabilities |
|
|
50
52
|
| `aibridge quota` | Show quota remaining for every backend |
|
|
51
53
|
| `aibridge runs` | Inspect or watch run logs in `~/.aibridge/runs` |
|
|
54
|
+
| `aibridge skill [topic]` | Print the canonical agent instructions bundled with this CLI version |
|
|
52
55
|
|
|
53
56
|
Use `plan`, `implement`, and `review` as one controlled workflow:
|
|
54
57
|
|
|
@@ -64,9 +67,9 @@ orchestrator's conversation context.
|
|
|
64
67
|
|
|
65
68
|
## How it works
|
|
66
69
|
|
|
67
|
-
- **
|
|
68
|
-
|
|
69
|
-
modes, and logs the run.
|
|
70
|
+
- **One package owns instructions and execution.** The installed skill only
|
|
71
|
+
bootstraps the latest package. That package supplies routing guidance, starts
|
|
72
|
+
the backend, validates known failure modes, and logs the run.
|
|
70
73
|
- **Review stays cross-model.** The recommended workflow uses Grok to plan and
|
|
71
74
|
review, and Gemini to implement.
|
|
72
75
|
- **Existing logins, no API keys.** Each backend uses its CLI login and quota.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aibridge/cli",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Agent instructions and CLI for delegating work to authenticated AI CLIs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@stricli/core": "1.3.0",
|
|
39
39
|
"sharp": "^0.35.3",
|
|
40
|
-
"@aibridge/driver-agy": "0.9.0",
|
|
41
40
|
"@aibridge/proc": "0.9.0",
|
|
41
|
+
"@aibridge/driver-agy": "0.9.0",
|
|
42
42
|
"@aibridge/driver-codex": "0.9.0",
|
|
43
43
|
"@aibridge/driver-claude": "0.9.0",
|
|
44
44
|
"@aibridge/driver-grok": "0.9.0"
|