From 4591432a1d222bbebf3570d4e41e8d8c34c11143 Mon Sep 17 00:00:00 2001 From: Eric Guo Date: Sun, 26 Apr 2026 11:07:20 +0800 Subject: [PATCH] Fix `mintlify validate` errors (#367) --- README_EN.md | 2 +- docs/features/pipes-and-lan.md | 10 +++++----- docs/lsp-integration.md | 4 ++-- learn/phase-2-qa.md | 2 +- teach-me/learner-profile.md | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/README_EN.md b/README_EN.md index 68e1dfe4f..6769ff2a9 100644 --- a/README_EN.md +++ b/README_EN.md @@ -188,7 +188,7 @@ The TUI (REPL) mode requires a real terminal and cannot be launched directly via ## Documentation & Links - **Online docs (Mintlify)**: [ccb.agent-aura.top](https://ccb.agent-aura.top/) — source in [`docs/`](docs/), PR contributions welcome -- **DeepWiki**: +- **DeepWiki**: https://deepwiki.com/claude-code-best/claude-code ## Contributors diff --git a/docs/features/pipes-and-lan.md b/docs/features/pipes-and-lan.md index 709d1878b..d888258db 100644 --- a/docs/features/pipes-and-lan.md +++ b/docs/features/pipes-and-lan.md @@ -145,8 +145,8 @@ M 键(或 ← / →)用于在两种路由模式之间切换,**无需展开 ``` /pipes — 显示所有实例 + 切换选择面板 -/pipes select — 选中某实例(消息会广播到它) -/pipes deselect — 取消选中 +/pipes select <name> — 选中某实例(消息会广播到它) +/pipes deselect <name> — 取消选中 /pipes all — 全选 /pipes none — 全部取消 ``` @@ -169,7 +169,7 @@ LAN Peers: Selected: cli-da029538 ``` -### /attach +### /attach <name> 手动 attach 到一个实例,使其成为你的 slave。 @@ -179,7 +179,7 @@ Selected: cli-da029538 attach 后,对方变为 slave,你变为 master。可以向它发送 prompt。通常不需要手动 attach——heartbeat 会自动发现并连接。 -### /detach +### /detach <name> 断开与某个 slave 的连接。 @@ -187,7 +187,7 @@ attach 后,对方变为 slave,你变为 master。可以向它发送 prompt /detach cli-04d67950 ``` -### /send +### /send <name> <message> 向指定 pipe 发送消息(不依赖选择状态,直接指定目标)。 diff --git a/docs/lsp-integration.md b/docs/lsp-integration.md index 2a4f3aab7..ce328ac9b 100644 --- a/docs/lsp-integration.md +++ b/docs/lsp-integration.md @@ -200,9 +200,9 @@ LSP 服务器通过插件提供。插件的 `manifest.json` 中可以声明 LSP |------|------|------|------| | `command` | string | 是 | LSP 服务器可执行命令(不含空格) | | `args` | string[] | 否 | 命令行参数 | -| `extensionToLanguage` | Record | 是 | 文件扩展名到语言 ID 的映射(至少一个) | +| `extensionToLanguage` | `Record` | 是 | 文件扩展名到语言 ID 的映射(至少一个) | | `transport` | `"stdio"` \| `"socket"` | 否 | 通信方式,默认 `stdio` | -| `env` | Record | 否 | 启动服务器时设置的环境变量 | +| `env` | `Record` | 否 | 启动服务器时设置的环境变量 | | `initializationOptions` | unknown | 否 | 传给服务器的初始化选项 | | `settings` | unknown | 否 | 通过 `workspace/didChangeConfiguration` 传递的设置 | | `workspaceFolder` | string | 否 | 工作区目录路径 | diff --git a/learn/phase-2-qa.md b/learn/phase-2-qa.md index 4e2e3a3df..8ebe71d8a 100644 --- a/learn/phase-2-qa.md +++ b/learn/phase-2-qa.md @@ -175,7 +175,7 @@ F. getCompletedResults() → 空 --- -#### #8 stream_event (input_json_delta: '{"file_path":') +#### #8 stream_event (input_json_delta: `'{"file_path":'`) ``` D. yield message ✅ → REPL 追加工具输入 JSON 碎片 diff --git a/teach-me/learner-profile.md b/teach-me/learner-profile.md index 69272d71d..cba5a9c8c 100644 --- a/teach-me/learner-profile.md +++ b/teach-me/learner-profile.md @@ -2,7 +2,7 @@ Updated: 2026-04-24 ## Style -- Learns best with: Analogies (Memory page <-> Capsule hotel), Concrete trade-offs (Latency vs Throughput) +- Learns best with: Analogies (Memory page <-> Capsule hotel), Concrete trade-offs (Latency vs Throughput) - Strength: Strong logical intuition regarding memory constraints. - Pace: Fast. Grasped PagedAttention/TP concepts quickly from first principles.