@linzumi/cli 1.0.274 → 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.
- package/README.md +10 -9
- package/dist/{impl-ts/cloud-supervisor.mjs → cloud-supervisor.mjs} +85 -85
- package/dist/hosted-coding-account-worker.js +25 -0
- package/dist/index.js +1609 -3
- package/dist/mcp-server.mjs +174 -168
- package/dist/{impl-res/native → native}/darwin/manifest.json +5 -2
- package/dist/remote-codex-harness-worker.js +757 -0
- package/dist/tcp-tunnel-cli.mjs +25 -69
- package/dist/topics-cli.mjs +137 -13
- package/package.json +9 -16
- package/scripts/build.mjs +33 -356
- package/scripts/bump-cli-version.mjs +35 -9
- package/scripts/check-package-size-budget.mjs +13 -61
- package/dist/impl-res/cloud-supervisor.mjs +0 -281
- package/dist/impl-res/index.js +0 -1546
- package/dist/impl-res/mcp-server.mjs +0 -461
- package/dist/impl-ts/assets/linzumi-logo.svg +0 -1
- package/dist/impl-ts/crossHarnessFailover.mjs +0 -14
- package/dist/impl-ts/index.js +0 -2617
- package/dist/impl-ts/mcp-server.mjs +0 -455
- package/dist/impl-ts/native/darwin/manifest.json +0 -21
- package/dist/impl-ts/native/darwin/preview-process-identity +0 -0
- package/dist/impl-ts/tcp-tunnel-cli.mjs +0 -93
- package/scripts/build-differential-entry-impl-res.mjs +0 -64
- package/scripts/build-differential-entry.mjs +0 -180
- package/scripts/build-onboarding-demo-evidence.mjs +0 -186
- package/scripts/build-tui-demo-evidence.mjs +0 -107
- package/scripts/diagnose-claude-probe.ts +0 -198
- package/scripts/differentialMutations.mjs +0 -114
- package/scripts/f5_live_cross_harness_failover_e2e.mjs +0 -239
- package/scripts/golden-chaos-harness.mjs +0 -1420
- package/scripts/normalize-agent-replay-fixture.ts +0 -281
- package/scripts/promote-gstack-claude-smoke-fixture.ts +0 -891
- package/scripts/record-agent-replay-fixtures.ts +0 -610
- package/scripts/replay-agent-backend-browser.ts +0 -198
- package/scripts/replay-agent-backend.ts +0 -1961
- package/scripts/replay-agent-fixture.ts +0 -326
- package/scripts/typecheck.mjs +0 -42
- /package/dist/{impl-res/assets → assets}/linzumi-logo.svg +0 -0
- /package/dist/{impl-res/crossHarnessFailover.mjs → crossHarnessFailover.mjs} +0 -0
- /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
|
|
33
|
+
npx -y @linzumi/cli@latest connect --supervise --workspace your-workspace
|
|
34
34
|
```
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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
|
|
61
|
-
npx -y @linzumi/cli@1.0.
|
|
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
|
|
118
|
-
|
|
119
|
-
|
|
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
|
|