@linzumi/cli 0.0.28-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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -26,7 +26,7 @@ codex \
|
|
|
26
26
|
-c sandbox_workspace_write.network_access=true \
|
|
27
27
|
--ask-for-approval never \
|
|
28
28
|
--sandbox danger-full-access \
|
|
29
|
-
-- 'Follow https://linzumi.com/agents.md to get me "wow"'
|
|
29
|
+
-- 'Follow https://linzumi.com/agents.md to get me to "wow"'
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
That's the launch path: the first Codex is only the bootstrapper. It
|
|
@@ -293,7 +293,7 @@ intentionally. Every action is auditable from the thread.
|
|
|
293
293
|
## Pinning a version
|
|
294
294
|
|
|
295
295
|
```bash
|
|
296
|
-
npm install -g @linzumi/cli@0.0.
|
|
296
|
+
npm install -g @linzumi/cli@0.0.29-beta
|
|
297
297
|
linzumi --version
|
|
298
298
|
```
|
|
299
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