@linzumi/cli 0.0.27-beta → 0.0.29-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 +10 -6
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -22,7 +22,11 @@
|
|
|
22
22
|
Copy this into your terminal:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
codex
|
|
25
|
+
codex \
|
|
26
|
+
-c sandbox_workspace_write.network_access=true \
|
|
27
|
+
--ask-for-approval never \
|
|
28
|
+
--sandbox danger-full-access \
|
|
29
|
+
-- 'Follow https://linzumi.com/agents.md to get me to "wow"'
|
|
26
30
|
```
|
|
27
31
|
|
|
28
32
|
That's the launch path: the first Codex is only the bootstrapper. It
|
|
@@ -32,10 +36,10 @@ creates the shared support channel, starts the Linzumi Commander for that
|
|
|
32
36
|
folder, asks the Commander to launch the inner Linzumi Codex session in a work
|
|
33
37
|
thread, and opens the browser editor pointed at the demo app. The
|
|
34
38
|
Commander-launched Codex session starts the hot-reload app and edits it.
|
|
35
|
-
When you ask the bootstrapper to get you to "wow"
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
When you ask the bootstrapper to get you to "wow", that means the complete
|
|
40
|
+
first-run outcome: a running Linzumi workspace, browser VS Code editor,
|
|
41
|
+
editable `/tmp/hello_linzumi` app on your computer, and a shareable Linzumi
|
|
42
|
+
secure-tunnel preview URL for that app.
|
|
39
43
|
|
|
40
44
|
Terms:
|
|
41
45
|
|
|
@@ -289,7 +293,7 @@ intentionally. Every action is auditable from the thread.
|
|
|
289
293
|
## Pinning a version
|
|
290
294
|
|
|
291
295
|
```bash
|
|
292
|
-
npm install -g @linzumi/cli@0.0.
|
|
296
|
+
npm install -g @linzumi/cli@0.0.29-beta
|
|
293
297
|
linzumi --version
|
|
294
298
|
```
|
|
295
299
|
|
package/dist/index.js
CHANGED
|
@@ -8836,7 +8836,7 @@ async function main(args) {
|
|
|
8836
8836
|
process.stdout.write(connectGuideText());
|
|
8837
8837
|
return;
|
|
8838
8838
|
case "version":
|
|
8839
|
-
process.stdout.write(`linzumi 0.0.
|
|
8839
|
+
process.stdout.write(`linzumi 0.0.29-beta
|
|
8840
8840
|
`);
|
|
8841
8841
|
return;
|
|
8842
8842
|
case "auth":
|
|
@@ -9343,7 +9343,7 @@ async function parseRunnerArgs(args, deps = {
|
|
|
9343
9343
|
process.exit(0);
|
|
9344
9344
|
}
|
|
9345
9345
|
if (values.get("version") === true) {
|
|
9346
|
-
process.stdout.write(`linzumi 0.0.
|
|
9346
|
+
process.stdout.write(`linzumi 0.0.29-beta
|
|
9347
9347
|
`);
|
|
9348
9348
|
process.exit(0);
|
|
9349
9349
|
}
|
package/package.json
CHANGED