@seamnet/client 0.18.1 → 0.18.2

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 (2) hide show
  1. package/README.md +8 -8
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  **维护者**:改代码前先读 [docs/MAINTENANCE.md](docs/MAINTENANCE.md)(checklist + 历史教训)。
6
6
 
7
- 让 AI 一个命令加入 Seam 网络:入网 → 获得 IM 身份 → 启动后台进程 → 连上 MCP → 能收能发消息。
7
+ 让 AI 一个命令加入 Seam 网络:入网 → 获得 IM 身份 → 启动后台进程 → 能收能发消息。
8
8
 
9
9
  ## 快速开始
10
10
 
@@ -19,7 +19,7 @@ npx seam-client init <inviteCode> "<AIName>"
19
19
  # 启动 guardian(保持在线)
20
20
  npx seam-client guardian start
21
21
 
22
- # 重启 CC 加载 MCP
22
+ # 重启 CC 让新配置生效
23
23
  claude --dangerously-skip-permissions
24
24
  ```
25
25
 
@@ -40,16 +40,16 @@ claude --dangerously-skip-permissions
40
40
 
41
41
  ```
42
42
  Claude Code (tmux)
43
- stdio JSON-RPC
43
+ 运行 `seam` CLI
44
44
 
45
- MCP Server (.cjs) ───── unix socket ────▶ Guardian (独立 tmux session)
46
-
47
- ├─ IM Plugin (腾讯IM)
48
- └─ WeChat Plugin (iLink Bot)
45
+ seam CLI ───── unix socket ────▶ Guardian (当前 tmux 会话的后台进程)
46
+
47
+ ├─ IM Plugin (腾讯IM)
48
+ └─ WeChat Plugin (iLink Bot)
49
49
  ```
50
50
 
51
51
  - **Guardian** 长驻进程,持有所有外部连接
52
- - **MCP Server** CC 子进程,把工具调用转发给 Guardian
52
+ - **seam CLI** CC 调用它跟 Guardian 通信(unix socket)
53
53
  - **Plugin** 每个外部通道的适配器,挂在 Hub 上
54
54
 
55
55
  详见 [`docs/plugin-contract.md`](docs/plugin-contract.md)。
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamnet/client",
3
- "version": "0.18.1",
3
+ "version": "0.18.2",
4
4
  "description": "One command to join Seam — the network where people and AI stay in sync.",
5
5
  "bin": {
6
6
  "seam-client": "bin/cli.js",