@agentproto/cli 0.11.0 → 0.11.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 +6 -4
- package/dist/cli.mjs +19660 -19032
- package/dist/cli.mjs.map +1 -1
- package/dist/index.mjs +5670 -5044
- 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 +18 -18
package/README.md
CHANGED
|
@@ -13,8 +13,8 @@ This installs the `agentproto` executable on your `PATH`.
|
|
|
13
13
|
```text
|
|
14
14
|
agentproto auth <login|status|logout> [--host <url>] authenticate against a remote host
|
|
15
15
|
agentproto config <show|path|get|set|unset|edit> read/write ~/.agentproto/config.json
|
|
16
|
-
agentproto daemon <install|uninstall|start|stop|status|logs> manage launchd/systemd service
|
|
17
|
-
agentproto install <slug> [--force] [--dry-run]
|
|
16
|
+
agentproto daemon <install|uninstall|start|restart|stop|status|logs> manage launchd/systemd service
|
|
17
|
+
agentproto install <slug> [--force] [--dry-run] [--allow-unverified] install an adapter's underlying CLI
|
|
18
18
|
agentproto plugins <list|show|install|uninstall|enable|disable> manage runtime plugins
|
|
19
19
|
agentproto setup <slug> [--force] [--dry-run] [--only ...] re-run an adapter's setup steps
|
|
20
20
|
agentproto run <slug> [--cwd <dir>] [--prompt <text>] spawn the adapter, dispatch one turn, exit
|
|
@@ -85,12 +85,13 @@ For multi-turn or interactive use, see [`serve`](#serve--the-local-daemon) + [`s
|
|
|
85
85
|
agentproto install claude-code # idempotent — skips if version_check passes
|
|
86
86
|
agentproto install claude-code --force # reinstall regardless
|
|
87
87
|
agentproto install claude-code --dry-run # print steps, don't execute
|
|
88
|
+
agentproto install claude-code --allow-unverified # run curl/download installers with no SHA
|
|
88
89
|
|
|
89
90
|
agentproto setup openclaw # re-run adapter setup (env keys, login, …)
|
|
90
91
|
agentproto setup openclaw --only login # only specific steps
|
|
91
92
|
```
|
|
92
93
|
|
|
93
|
-
Install methods are tried in declaration order (`npm`, `curl`, `brew`, …). Use `--force` to reinstall, `--dry-run` to preview steps.
|
|
94
|
+
Install methods are tried in declaration order (`npm`, `curl`, `brew`, …). Use `--force` to reinstall, `--dry-run` to preview steps, `--allow-unverified` to opt in to unverified curl/download installers in non-interactive contexts.
|
|
94
95
|
|
|
95
96
|
## `config` — defaults at `~/.agentproto/config.json`
|
|
96
97
|
|
|
@@ -166,7 +167,8 @@ agentproto daemon install # write plist + boots
|
|
|
166
167
|
agentproto daemon status # plist? loaded? /health probe?
|
|
167
168
|
agentproto daemon logs --lines 30 # tail ~/.agentproto/daemon.log
|
|
168
169
|
agentproto daemon stop # SIGTERM
|
|
169
|
-
agentproto daemon start # kickstart again
|
|
170
|
+
agentproto daemon start # kickstart again (idempotent)
|
|
171
|
+
agentproto daemon restart # kill + relaunch
|
|
170
172
|
agentproto daemon uninstall # bootout + delete plist
|
|
171
173
|
```
|
|
172
174
|
|