@linzumi/cli 1.0.275 → 1.0.276

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.
Files changed (41) hide show
  1. package/README.md +10 -9
  2. package/dist/{impl-ts/cloud-supervisor.mjs → cloud-supervisor.mjs} +78 -78
  3. package/dist/hosted-coding-account-worker.js +25 -0
  4. package/dist/index.js +1609 -3
  5. package/dist/mcp-server.mjs +174 -168
  6. package/dist/{impl-res/native → native}/darwin/manifest.json +5 -2
  7. package/dist/remote-codex-harness-worker.js +757 -0
  8. package/dist/tcp-tunnel-cli.mjs +25 -69
  9. package/dist/topics-cli.mjs +137 -13
  10. package/package.json +9 -16
  11. package/scripts/build.mjs +33 -356
  12. package/scripts/bump-cli-version.mjs +35 -9
  13. package/scripts/check-package-size-budget.mjs +13 -61
  14. package/dist/impl-res/cloud-supervisor.mjs +0 -281
  15. package/dist/impl-res/index.js +0 -1546
  16. package/dist/impl-res/mcp-server.mjs +0 -461
  17. package/dist/impl-ts/assets/linzumi-logo.svg +0 -1
  18. package/dist/impl-ts/crossHarnessFailover.mjs +0 -14
  19. package/dist/impl-ts/index.js +0 -2617
  20. package/dist/impl-ts/mcp-server.mjs +0 -455
  21. package/dist/impl-ts/native/darwin/manifest.json +0 -21
  22. package/dist/impl-ts/native/darwin/preview-process-identity +0 -0
  23. package/dist/impl-ts/tcp-tunnel-cli.mjs +0 -93
  24. package/scripts/build-differential-entry-impl-res.mjs +0 -64
  25. package/scripts/build-differential-entry.mjs +0 -180
  26. package/scripts/build-onboarding-demo-evidence.mjs +0 -186
  27. package/scripts/build-tui-demo-evidence.mjs +0 -107
  28. package/scripts/diagnose-claude-probe.ts +0 -198
  29. package/scripts/differentialMutations.mjs +0 -114
  30. package/scripts/f5_live_cross_harness_failover_e2e.mjs +0 -239
  31. package/scripts/golden-chaos-harness.mjs +0 -1420
  32. package/scripts/normalize-agent-replay-fixture.ts +0 -281
  33. package/scripts/promote-gstack-claude-smoke-fixture.ts +0 -891
  34. package/scripts/record-agent-replay-fixtures.ts +0 -610
  35. package/scripts/replay-agent-backend-browser.ts +0 -198
  36. package/scripts/replay-agent-backend.ts +0 -1961
  37. package/scripts/replay-agent-fixture.ts +0 -326
  38. package/scripts/typecheck.mjs +0 -42
  39. /package/dist/{impl-res/assets → assets}/linzumi-logo.svg +0 -0
  40. /package/dist/{impl-res/crossHarnessFailover.mjs → crossHarnessFailover.mjs} +0 -0
  41. /package/dist/{impl-res/native → native}/darwin/preview-process-identity +0 -0
package/README.md CHANGED
@@ -30,12 +30,13 @@ Ship more, regret less.
30
30
  Paste this into your terminal:
31
31
 
32
32
  ```bash
33
- npx -y @linzumi/cli@latest signup
33
+ npx -y @linzumi/cli@latest connect --supervise --workspace your-workspace
34
34
  ```
35
35
 
36
- Linzumi will ask for your email, send you a sign-in code, help you pick
37
- the repos where Codex may work, start useful first tasks, and open
38
- Mission Control in your browser with the work already running.
36
+ Replace `your-workspace` with your workspace slug. The Commander signs you in
37
+ through your browser, connects to that workspace, and stays running under a
38
+ supervisor. Add trusted project folders with `linzumi paths add` before asking
39
+ an agent to work in them.
39
40
 
40
41
  ## Why a CLI
41
42
 
@@ -57,8 +58,8 @@ Install the CLI or run it with `npx`:
57
58
 
58
59
  ```bash
59
60
  npm install -g @linzumi/cli@latest
60
- npx -y @linzumi/cli@latest signup
61
- npx -y @linzumi/cli@1.0.275 --version
61
+ npx -y @linzumi/cli@latest connect --supervise --workspace your-workspace
62
+ npx -y @linzumi/cli@1.0.276 --version
62
63
  linzumi --version
63
64
  ```
64
65
 
@@ -114,9 +115,9 @@ in 10 minutes; re-run `connect` to get a fresh one.
114
115
 
115
116
  ## Agent-first launch path
116
117
 
117
- The fastest path is the `npx -y @linzumi/cli@latest signup` command
118
- above. It signs you in, lets you trust local projects, connects the
119
- Commander, and starts the first visible Coding agent threads.
118
+ The `npx -y @linzumi/cli@latest connect --supervise` command above signs
119
+ you in and keeps the Commander connected to your workspace. Add trusted
120
+ projects with `linzumi paths add` so agents can work in those folders.
120
121
 
121
122
  ## What just happened
122
123