@linzumi/cli 0.0.13-beta → 0.0.14-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 CHANGED
@@ -58,7 +58,7 @@ Chromium-based browser (Chrome, Edge, Arc, or Brave). Safari mostly
58
58
  works; live collaboration is smoother in Chromium.
59
59
 
60
60
  ```bash
61
- npm install -g @linzumi/cli@beta
61
+ npm install -g @linzumi/cli@latest
62
62
  linzumi start ~/code/my-app
63
63
  ```
64
64
 
@@ -225,7 +225,7 @@ privileges as your shell. Every action is auditable from the thread.
225
225
  ## Pinning a version
226
226
 
227
227
  ```bash
228
- npm install -g @linzumi/cli@0.0.13-beta
228
+ npm install -g @linzumi/cli@0.0.14-beta
229
229
  linzumi --version
230
230
  ```
231
231
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "0.0.13-beta",
3
+ "version": "0.0.14-beta",
4
4
  "description": "Linzumi CLI — point a Codex agent at the real code on your laptop, with your team watching and steering from shared threads.",
5
5
  "type": "module",
6
6
  "bin": {
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.13-beta\n");
124
+ process.stdout.write("linzumi 0.0.14-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.13-beta\n");
617
+ process.stdout.write("linzumi 0.0.14-beta\n");
618
618
  process.exit(0);
619
619
  }
620
620