mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-15 12:55:51 +00:00
Fix mintlify validate errors (#367)
This commit is contained in:
@@ -188,7 +188,7 @@ The TUI (REPL) mode requires a real terminal and cannot be launched directly via
|
|||||||
## Documentation & Links
|
## Documentation & Links
|
||||||
|
|
||||||
- **Online docs (Mintlify)**: [ccb.agent-aura.top](https://ccb.agent-aura.top/) — source in [`docs/`](docs/), PR contributions welcome
|
- **Online docs (Mintlify)**: [ccb.agent-aura.top](https://ccb.agent-aura.top/) — source in [`docs/`](docs/), PR contributions welcome
|
||||||
- **DeepWiki**: <https://deepwiki.com/claude-code-best/claude-code>
|
- **DeepWiki**: https://deepwiki.com/claude-code-best/claude-code
|
||||||
|
|
||||||
## Contributors
|
## Contributors
|
||||||
|
|
||||||
|
|||||||
@@ -145,8 +145,8 @@ M 键(或 ← / →)用于在两种路由模式之间切换,**无需展开
|
|||||||
|
|
||||||
```
|
```
|
||||||
/pipes — 显示所有实例 + 切换选择面板
|
/pipes — 显示所有实例 + 切换选择面板
|
||||||
/pipes select <name> — 选中某实例(消息会广播到它)
|
/pipes select <name> — 选中某实例(消息会广播到它)
|
||||||
/pipes deselect <name> — 取消选中
|
/pipes deselect <name> — 取消选中
|
||||||
/pipes all — 全选
|
/pipes all — 全选
|
||||||
/pipes none — 全部取消
|
/pipes none — 全部取消
|
||||||
```
|
```
|
||||||
@@ -169,7 +169,7 @@ LAN Peers:
|
|||||||
Selected: cli-da029538
|
Selected: cli-da029538
|
||||||
```
|
```
|
||||||
|
|
||||||
### /attach <name>
|
### /attach <name>
|
||||||
|
|
||||||
手动 attach 到一个实例,使其成为你的 slave。
|
手动 attach 到一个实例,使其成为你的 slave。
|
||||||
|
|
||||||
@@ -179,7 +179,7 @@ Selected: cli-da029538
|
|||||||
|
|
||||||
attach 后,对方变为 slave,你变为 master。可以向它发送 prompt。通常不需要手动 attach——heartbeat 会自动发现并连接。
|
attach 后,对方变为 slave,你变为 master。可以向它发送 prompt。通常不需要手动 attach——heartbeat 会自动发现并连接。
|
||||||
|
|
||||||
### /detach <name>
|
### /detach <name>
|
||||||
|
|
||||||
断开与某个 slave 的连接。
|
断开与某个 slave 的连接。
|
||||||
|
|
||||||
@@ -187,7 +187,7 @@ attach 后,对方变为 slave,你变为 master。可以向它发送 prompt
|
|||||||
/detach cli-04d67950
|
/detach cli-04d67950
|
||||||
```
|
```
|
||||||
|
|
||||||
### /send <name> <message>
|
### /send <name> <message>
|
||||||
|
|
||||||
向指定 pipe 发送消息(不依赖选择状态,直接指定目标)。
|
向指定 pipe 发送消息(不依赖选择状态,直接指定目标)。
|
||||||
|
|
||||||
|
|||||||
@@ -200,9 +200,9 @@ LSP 服务器通过插件提供。插件的 `manifest.json` 中可以声明 LSP
|
|||||||
|------|------|------|------|
|
|------|------|------|------|
|
||||||
| `command` | string | 是 | LSP 服务器可执行命令(不含空格) |
|
| `command` | string | 是 | LSP 服务器可执行命令(不含空格) |
|
||||||
| `args` | string[] | 否 | 命令行参数 |
|
| `args` | string[] | 否 | 命令行参数 |
|
||||||
| `extensionToLanguage` | Record<string, string> | 是 | 文件扩展名到语言 ID 的映射(至少一个) |
|
| `extensionToLanguage` | `Record<string, string>` | 是 | 文件扩展名到语言 ID 的映射(至少一个) |
|
||||||
| `transport` | `"stdio"` \| `"socket"` | 否 | 通信方式,默认 `stdio` |
|
| `transport` | `"stdio"` \| `"socket"` | 否 | 通信方式,默认 `stdio` |
|
||||||
| `env` | Record<string, string> | 否 | 启动服务器时设置的环境变量 |
|
| `env` | `Record<string, string>` | 否 | 启动服务器时设置的环境变量 |
|
||||||
| `initializationOptions` | unknown | 否 | 传给服务器的初始化选项 |
|
| `initializationOptions` | unknown | 否 | 传给服务器的初始化选项 |
|
||||||
| `settings` | unknown | 否 | 通过 `workspace/didChangeConfiguration` 传递的设置 |
|
| `settings` | unknown | 否 | 通过 `workspace/didChangeConfiguration` 传递的设置 |
|
||||||
| `workspaceFolder` | string | 否 | 工作区目录路径 |
|
| `workspaceFolder` | string | 否 | 工作区目录路径 |
|
||||||
|
|||||||
@@ -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 碎片
|
D. yield message ✅ → REPL 追加工具输入 JSON 碎片
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
Updated: 2026-04-24
|
Updated: 2026-04-24
|
||||||
|
|
||||||
## Style
|
## 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.
|
- Strength: Strong logical intuition regarding memory constraints.
|
||||||
- Pace: Fast. Grasped PagedAttention/TP concepts quickly from first principles.
|
- Pace: Fast. Grasped PagedAttention/TP concepts quickly from first principles.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user