@linzumi/cli 0.0.14-beta → 0.0.15-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
@@ -19,6 +19,16 @@
19
19
  your agent, your laptop, PRs in minutes
20
20
  ```
21
21
 
22
+ Copy this into your terminal from the repo you want changed:
23
+
24
+ ```bash
25
+ codex -- "Get a working hello-world PR from https://linzumi.com/agents.md"
26
+ ```
27
+
28
+ That's the launch path: Codex opens the agent instructions, signs up,
29
+ asks you for the emailed code, connects Linzumi to this repo, opens the
30
+ browser editor, and posts the PR or review branch.
31
+
22
32
  Today, your AI coding agent has two homes, both bad.
23
33
 
24
34
  It can run **alone in your terminal**, where nobody — your teammate,
@@ -76,12 +86,6 @@ That's it. The rest of this README is detail.
76
86
 
77
87
  ## Agent-first launch path
78
88
 
79
- Copy this into an agent running in the repo you want changed:
80
-
81
- ```text
82
- Get me a working hello-world PR from https://linzumi.com/agents.md
83
- ```
84
-
85
89
  That one prompt is the launch path. The canonical agent instructions are
86
90
  hosted at `https://linzumi.com/agents.md`; `https://linzumi.com/skills.md`
87
91
  stays available for compatibility. The agent will ask for your email,
@@ -225,7 +229,7 @@ privileges as your shell. Every action is auditable from the thread.
225
229
  ## Pinning a version
226
230
 
227
231
  ```bash
228
- npm install -g @linzumi/cli@0.0.14-beta
232
+ npm install -g @linzumi/cli@0.0.15-beta
229
233
  linzumi --version
230
234
  ```
231
235
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@linzumi/cli",
3
- "version": "0.0.14-beta",
3
+ "version": "0.0.15-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.14-beta\n");
124
+ process.stdout.write("linzumi 0.0.15-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.14-beta\n");
617
+ process.stdout.write("linzumi 0.0.15-beta\n");
618
618
  process.exit(0);
619
619
  }
620
620