@linzumi/cli 0.0.51-beta → 0.0.53-beta
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 +7 -1
- package/dist/index.js +643 -352
- package/package.json +4 -2
- package/scripts/codex_history_table.mjs +628 -0
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ Install the CLI or run it with `npx`:
|
|
|
62
62
|
```bash
|
|
63
63
|
npm install -g @linzumi/cli@latest
|
|
64
64
|
npx -y @linzumi/cli@latest signup
|
|
65
|
-
npx -y @linzumi/cli@0.0.
|
|
65
|
+
npx -y @linzumi/cli@0.0.53-beta --version
|
|
66
66
|
linzumi --version
|
|
67
67
|
```
|
|
68
68
|
|
|
@@ -79,6 +79,12 @@ For explicit runner roots, pass a comma-separated allowlist:
|
|
|
79
79
|
linzumi start ~/code/my-app --allowed-cwd <paths>
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
+
For non-production Linzumi servers, `connect` accepts either API URL flag:
|
|
83
|
+
|
|
84
|
+
```bash
|
|
85
|
+
linzumi connect --linzumi-url ws://127.0.0.1:4140 --workspace default --allow-port-forwarding-by-default
|
|
86
|
+
```
|
|
87
|
+
|
|
82
88
|
## Agent-first launch path
|
|
83
89
|
|
|
84
90
|
The fastest path is the `npx -y @linzumi/cli@latest signup` command
|