@linzumi/cli 0.0.18-beta → 0.0.20-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 +5 -7
- package/package.json +1 -1
- package/src/index.ts +3 -2
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
Copy this into your terminal from the repo you want changed:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
codex
|
|
25
|
+
codex --ask-for-approval never --sandbox danger-full-access -- 'Get me up and running with Linzumi from https://linzumi.com/agents.md. Read it with curl.'
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
That's the launch path: the first Codex is only the bootstrapper. It
|
|
@@ -32,11 +32,9 @@ the shared support channel, starts a Linzumi Codex session in a work
|
|
|
32
32
|
thread, and opens the browser editor. The Linzumi Codex session does the
|
|
33
33
|
branch, test, push, and PR work.
|
|
34
34
|
|
|
35
|
-
The snippet uses
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
and Codex's own local session state. It is intentionally not the dangerous
|
|
39
|
-
sandbox-bypass mode.
|
|
35
|
+
The snippet uses automatic command approval and full local process access
|
|
36
|
+
because the bootstrapper must start a real runner and browser editor on this
|
|
37
|
+
computer. It is intentionally not the dangerous sandbox-bypass mode.
|
|
40
38
|
|
|
41
39
|
Today, your AI coding agent has two homes, both bad.
|
|
42
40
|
|
|
@@ -260,7 +258,7 @@ intentionally. Every action is auditable from the thread.
|
|
|
260
258
|
## Pinning a version
|
|
261
259
|
|
|
262
260
|
```bash
|
|
263
|
-
npm install -g @linzumi/cli@0.0.
|
|
261
|
+
npm install -g @linzumi/cli@0.0.20-beta
|
|
264
262
|
linzumi --version
|
|
265
263
|
```
|
|
266
264
|
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -121,7 +121,7 @@ async function main(args: readonly string[]): Promise<void> {
|
|
|
121
121
|
process.stdout.write(connectGuideText());
|
|
122
122
|
return;
|
|
123
123
|
case "version":
|
|
124
|
-
process.stdout.write("linzumi 0.0.
|
|
124
|
+
process.stdout.write("linzumi 0.0.20-beta\n");
|
|
125
125
|
return;
|
|
126
126
|
case "auth":
|
|
127
127
|
await runAuthCommand(parsed.args);
|
|
@@ -192,6 +192,7 @@ function parseCommand(args: readonly string[]): ParsedCommand {
|
|
|
192
192
|
case "signup":
|
|
193
193
|
case "claim":
|
|
194
194
|
case "thread":
|
|
195
|
+
case "channel":
|
|
195
196
|
case "post":
|
|
196
197
|
case "inbox":
|
|
197
198
|
case "done":
|
|
@@ -614,7 +615,7 @@ export async function parseRunnerArgs(
|
|
|
614
615
|
}
|
|
615
616
|
|
|
616
617
|
if (values.get("version") === true) {
|
|
617
|
-
process.stdout.write("linzumi 0.0.
|
|
618
|
+
process.stdout.write("linzumi 0.0.20-beta\n");
|
|
618
619
|
process.exit(0);
|
|
619
620
|
}
|
|
620
621
|
|