@agentproto/cli 0.1.0-alpha.8 → 0.1.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/README.md +4 -4
- package/dist/cli.mjs +1848 -256
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +391 -41
- package/dist/index.mjs.map +1 -1
- package/dist/registry/builtins.d.ts +14 -0
- package/dist/registry/builtins.mjs +329 -0
- package/dist/registry/builtins.mjs.map +1 -0
- package/dist/registry/manifest.d.ts +88 -0
- package/dist/registry/manifest.mjs +42 -0
- package/dist/registry/manifest.mjs.map +1 -0
- package/dist/registry/plugins.d.ts +23 -0
- package/dist/registry/plugins.mjs +201 -0
- package/dist/registry/plugins.mjs.map +1 -0
- package/dist/registry/runtime.d.ts +70 -0
- package/dist/registry/runtime.mjs +52 -0
- package/dist/registry/runtime.mjs.map +1 -0
- package/dist/util/credentials.d.ts +71 -0
- package/dist/util/credentials.mjs +88 -0
- package/dist/util/credentials.mjs.map +1 -0
- package/package.json +35 -7
package/README.md
CHANGED
|
@@ -82,7 +82,7 @@ agentproto config show # dump full conf
|
|
|
82
82
|
agentproto config path # print the file path
|
|
83
83
|
agentproto config get daemon.port # read one key
|
|
84
84
|
agentproto config set daemon.port 18791 # number auto-detected
|
|
85
|
-
agentproto config set daemon.workspace ~/code/
|
|
85
|
+
agentproto config set daemon.workspace ~/code/my-app
|
|
86
86
|
agentproto config set daemon.allowedOrigins https://guilde.work,https://app.example.com
|
|
87
87
|
agentproto config set tunnel.host wss://guilde.work/api/v1/agentproto/tunnel
|
|
88
88
|
agentproto config set tunnel.autoconnect true # --connect implied at next serve
|
|
@@ -179,14 +179,14 @@ SESSIONS (3) │ DETAIL
|
|
|
179
179
|
PTY shell-main running 4m │ name claude-tui
|
|
180
180
|
hermes-bg exited 1h │ kind terminal (pty)
|
|
181
181
|
│ status running
|
|
182
|
-
│ workspace
|
|
182
|
+
│ workspace my-app
|
|
183
183
|
│ command claude
|
|
184
184
|
│ pid 12345
|
|
185
185
|
│ started 12m ago
|
|
186
186
|
│ last out 3s ago
|
|
187
187
|
│
|
|
188
188
|
│ Enter to attach
|
|
189
|
-
─ events 20:42:01 boot ·
|
|
189
|
+
─ events 20:42:01 boot · my-app · 20:43:11 spawn sess_a3f8c1b2 ──────────────────────
|
|
190
190
|
↑/↓ select · Enter attach · K kill · d forget · r refresh · q quit
|
|
191
191
|
```
|
|
192
192
|
|
|
@@ -253,7 +253,7 @@ agentproto sessions --attach claude-tui
|
|
|
253
253
|
agentproto sessions mirror claude-tui
|
|
254
254
|
|
|
255
255
|
# Spawn an agent CLI (ACP, structured events)
|
|
256
|
-
agentproto sessions start claude-code --workspace
|
|
256
|
+
agentproto sessions start claude-code --workspace my-app --attach
|
|
257
257
|
agentproto sessions start hermes --label "ops on-call"
|
|
258
258
|
|
|
259
259
|
# Spawn a real PTY (raw bytes, ANSI escapes, alt-screen apps)
|