@linzumi/cli 0.0.57-beta → 0.0.58-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 +20 -1
- package/dist/index.js +49830 -18041
- package/package.json +5 -2
- package/scripts/build.mjs +1 -1
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ Install the CLI or run it with `npx`:
|
|
|
62
62
|
```bash
|
|
63
63
|
npm install -g @linzumi/cli@latest
|
|
64
64
|
npx -y @linzumi/cli@latest signup
|
|
65
|
-
npx -y @linzumi/cli@0.0.
|
|
65
|
+
npx -y @linzumi/cli@0.0.58-beta --version
|
|
66
66
|
linzumi --version
|
|
67
67
|
```
|
|
68
68
|
|
|
@@ -98,6 +98,25 @@ surface. The CLI authenticates your local Commander, publishes runner
|
|
|
98
98
|
capabilities, and lets Kandan ask that Commander to start Codex inside
|
|
99
99
|
trusted folders only.
|
|
100
100
|
|
|
101
|
+
## MCP for coding agents
|
|
102
|
+
|
|
103
|
+
Commander-started Codex sessions are preconfigured with a local MCP
|
|
104
|
+
server named `linzumi`. It lets the agent use the same approved
|
|
105
|
+
local-runner auth to read the scoped Linzumi message, thread, or channel
|
|
106
|
+
context, and to send a bounded DM to the Commander owner when configured.
|
|
107
|
+
|
|
108
|
+
Manual MCP commands are available for other MCP-compatible agents:
|
|
109
|
+
|
|
110
|
+
```bash
|
|
111
|
+
linzumi mcp doctor --api-url https://serve.linzumi.com --workspace <workspace> --channel <channel>
|
|
112
|
+
linzumi mcp config --api-url https://serve.linzumi.com --format codex
|
|
113
|
+
linzumi mcp config --api-url https://serve.linzumi.com --format claude-code
|
|
114
|
+
linzumi mcp server --api-url https://serve.linzumi.com
|
|
115
|
+
```
|
|
116
|
+
|
|
117
|
+
The shipped tools are `linzumi_get_message`, `linzumi_get_thread`,
|
|
118
|
+
`linzumi_get_channel`, and `linzumi_dm_owner`.
|
|
119
|
+
|
|
101
120
|
## Three things to try first
|
|
102
121
|
|
|
103
122
|
- Ask the Coding agent to make a small UI change and watch the thread.
|