@agentproto/cli 0.5.0 → 0.6.0
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/LICENSE +202 -1
- package/README.md +73 -13
- package/dist/cli.mjs +19222 -18273
- package/dist/cli.mjs.map +1 -1
- package/dist/index.d.ts +156 -2
- package/dist/index.mjs +7818 -9379
- package/dist/index.mjs.map +1 -1
- package/dist/registry/builtins.mjs +1 -1
- package/dist/registry/manifest.mjs +1 -1
- package/dist/registry/plugins.mjs +1 -1
- package/dist/registry/runtime.mjs +1 -1
- package/dist/util/credentials.mjs +1 -1
- package/package.json +29 -23
|
@@ -6,7 +6,7 @@ import matter from 'gray-matter';
|
|
|
6
6
|
import { spawn } from 'child_process';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* @agentproto/cli v0.
|
|
9
|
+
* @agentproto/cli v0.6.0
|
|
10
10
|
* The `agentproto` binary — install / run / serve AIP-45 agent CLIs.
|
|
11
11
|
*/
|
|
12
12
|
// Provide a real `require` in the ESM bundle. Some bundled deps (e.g.
|
|
@@ -2,7 +2,7 @@ import { createRequire } from 'node:module';
|
|
|
2
2
|
import { z } from 'zod';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
|
-
* @agentproto/cli v0.
|
|
5
|
+
* @agentproto/cli v0.6.0
|
|
6
6
|
* The `agentproto` binary — install / run / serve AIP-45 agent CLIs.
|
|
7
7
|
*/
|
|
8
8
|
// Provide a real `require` in the ESM bundle. Some bundled deps (e.g.
|
|
@@ -7,7 +7,7 @@ import { pathToFileURL } from 'url';
|
|
|
7
7
|
import { z } from 'zod';
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
|
-
* @agentproto/cli v0.
|
|
10
|
+
* @agentproto/cli v0.6.0
|
|
11
11
|
* The `agentproto` binary — install / run / serve AIP-45 agent CLIs.
|
|
12
12
|
*/
|
|
13
13
|
// Provide a real `require` in the ESM bundle. Some bundled deps (e.g.
|
|
@@ -4,7 +4,7 @@ import { homedir } from 'os';
|
|
|
4
4
|
import { join, dirname } from 'path';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
-
* @agentproto/cli v0.
|
|
7
|
+
* @agentproto/cli v0.6.0
|
|
8
8
|
* The `agentproto` binary — install / run / serve AIP-45 agent CLIs.
|
|
9
9
|
*/
|
|
10
10
|
// Provide a real `require` in the ESM bundle. Some bundled deps (e.g.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentproto/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "@agentproto/cli — the `agentproto` binary. Install AIP-45 agent CLI adapters, run them locally, or expose them over a tunnel as a long-running daemon. Reference host for hermes / claude-code / opencode / gemini-cli / goose, all driven through @agentproto/driver-agent-cli.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agentproto",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"bugs": {
|
|
24
24
|
"url": "https://github.com/agentproto/ts/issues"
|
|
25
25
|
},
|
|
26
|
-
"license": "
|
|
26
|
+
"license": "Apache-2.0",
|
|
27
27
|
"type": "module",
|
|
28
28
|
"main": "dist/index.mjs",
|
|
29
29
|
"module": "dist/index.mjs",
|
|
@@ -71,21 +71,26 @@
|
|
|
71
71
|
],
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@clack/prompts": "^1.5.0",
|
|
74
|
-
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
75
74
|
"@earendil-works/pi-tui": "^0.80.0",
|
|
75
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
76
|
+
"ajv": "^8.20.0",
|
|
76
77
|
"chalk": "^5.0.0",
|
|
77
78
|
"cli-highlight": "^2.1.11",
|
|
78
79
|
"gray-matter": "^4.0.3",
|
|
80
|
+
"qrcode-terminal": "^0.12.0",
|
|
79
81
|
"ws": "^8.20.0",
|
|
80
82
|
"zod": "^4.4.3",
|
|
81
|
-
"@agentproto/acp": "0.
|
|
82
|
-
"@agentproto/adapter-browser": "0.1.
|
|
83
|
-
"@agentproto/auth": "0.1.
|
|
84
|
-
"@agentproto/
|
|
85
|
-
"@agentproto/driver": "0.
|
|
86
|
-
"@agentproto/
|
|
87
|
-
"@agentproto/
|
|
88
|
-
"@agentproto/
|
|
83
|
+
"@agentproto/acp": "0.5.0",
|
|
84
|
+
"@agentproto/adapter-browser": "0.1.1",
|
|
85
|
+
"@agentproto/auth": "0.1.1",
|
|
86
|
+
"@agentproto/driver": "0.1.3",
|
|
87
|
+
"@agentproto/driver-agent-cli": "1.0.0",
|
|
88
|
+
"@agentproto/model-catalog": "0.3.0",
|
|
89
|
+
"@agentproto/provider-kit": "0.2.1",
|
|
90
|
+
"@agentproto/rendezvous": "0.2.0",
|
|
91
|
+
"@agentproto/runtime-profile-standard": "0.1.2",
|
|
92
|
+
"@agentproto/secrets": "0.2.0",
|
|
93
|
+
"@agentproto/worktree": "0.3.0"
|
|
89
94
|
},
|
|
90
95
|
"optionalDependencies": {
|
|
91
96
|
"node-pty": "^1.0.0"
|
|
@@ -96,18 +101,19 @@
|
|
|
96
101
|
"tsup": "^8.5.1",
|
|
97
102
|
"typescript": "^5.9.3",
|
|
98
103
|
"vitest": "^3.2.4",
|
|
99
|
-
"@agentproto/adapter-claude-code": "0.
|
|
100
|
-
"@agentproto/adapter-claude-sdk": "0.
|
|
101
|
-
"@agentproto/adapter-codex": "0.
|
|
102
|
-
"@agentproto/adapter-
|
|
103
|
-
"@agentproto/adapter-
|
|
104
|
-
"@agentproto/adapter-mastracode
|
|
105
|
-
"@agentproto/adapter-mastracode": "0.2.
|
|
106
|
-
"@agentproto/adapter-openclaw": "0.1.
|
|
107
|
-
"@agentproto/adapter-opencode": "0.1.
|
|
108
|
-
"@agentproto/
|
|
109
|
-
"@agentproto/runtime": "0.
|
|
110
|
-
"@agentproto/
|
|
104
|
+
"@agentproto/adapter-claude-code": "1.0.0",
|
|
105
|
+
"@agentproto/adapter-claude-sdk": "0.3.0",
|
|
106
|
+
"@agentproto/adapter-codex": "0.2.0",
|
|
107
|
+
"@agentproto/adapter-hermes": "0.3.0",
|
|
108
|
+
"@agentproto/adapter-mastra-agent": "0.1.3",
|
|
109
|
+
"@agentproto/adapter-mastracode": "0.2.2",
|
|
110
|
+
"@agentproto/adapter-mastracode-inprocess": "0.2.2",
|
|
111
|
+
"@agentproto/adapter-openclaw": "0.1.3",
|
|
112
|
+
"@agentproto/adapter-opencode": "0.1.3",
|
|
113
|
+
"@agentproto/adapter-pi": "0.2.0",
|
|
114
|
+
"@agentproto/agent-runtime": "0.1.1",
|
|
115
|
+
"@agentproto/runtime": "0.6.0",
|
|
116
|
+
"@agentproto/tooling": "0.1.0-alpha.0"
|
|
111
117
|
},
|
|
112
118
|
"engines": {
|
|
113
119
|
"node": ">=20.9.0"
|