@linzumi/cli 0.0.18-beta → 0.0.19-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 +2 -2
- package/package.json +1 -1
- package/src/index.ts +2 -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 -c sandbox_workspace_write.network_access=true --ask-for-approval never --sandbox workspace-write --add-dir
|
|
25
|
+
codex -c sandbox_workspace_write.network_access=true --ask-for-approval never --sandbox workspace-write --add-dir ~/.linzumi --add-dir ~/.kandan --add-dir ~/.npm --add-dir ~/.codex -- 'Follow https://linzumi.com/agents.md to get me up and running'
|
|
26
26
|
```
|
|
27
27
|
|
|
28
28
|
That's the launch path: the first Codex is only the bootstrapper. It
|
|
@@ -260,7 +260,7 @@ intentionally. Every action is auditable from the thread.
|
|
|
260
260
|
## Pinning a version
|
|
261
261
|
|
|
262
262
|
```bash
|
|
263
|
-
npm install -g @linzumi/cli@0.0.
|
|
263
|
+
npm install -g @linzumi/cli@0.0.19-beta
|
|
264
264
|
linzumi --version
|
|
265
265
|
```
|
|
266
266
|
|
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.19-beta\n");
|
|
125
125
|
return;
|
|
126
126
|
case "auth":
|
|
127
127
|
await runAuthCommand(parsed.args);
|
|
@@ -614,7 +614,7 @@ export async function parseRunnerArgs(
|
|
|
614
614
|
}
|
|
615
615
|
|
|
616
616
|
if (values.get("version") === true) {
|
|
617
|
-
process.stdout.write("linzumi 0.0.
|
|
617
|
+
process.stdout.write("linzumi 0.0.19-beta\n");
|
|
618
618
|
process.exit(0);
|
|
619
619
|
}
|
|
620
620
|
|