fix(docs): clarify platform-specific path separator

This commit is contained in:
aiguozhi123456
2026-02-25 01:53:04 +00:00
parent e959b13926
commit a50a2c6868

View File

@@ -804,7 +804,7 @@ MCP tools are automatically discovered and registered on startup. The LLM can us
| Option | Default | Description |
|--------|---------|-------------|
| `tools.restrictToWorkspace` | `false` | When `true`, restricts **all** agent tools (shell, file read/write/edit, list) to the workspace directory. Prevents path traversal and out-of-scope access. |
| `tools.exec.pathAppend` | `""` | Additional paths to append to `PATH` when executing shell commands. Useful for commands in non-standard locations (e.g., `/usr/sbin` for `ufw`). Use `":"` as separator (e.g., `"/usr/sbin:/usr/local/sbin"`). |
| `tools.exec.pathAppend` | `""` | Additional paths to append to `PATH` when executing shell commands. Useful for commands in non-standard locations (e.g., `/usr/sbin` for `ufw`). Use the platform-specific separator (`:` on Linux/macOS, `;` on Windows). |
| `channels.*.allowFrom` | `[]` (allow all) | Whitelist of user IDs. Empty = allow everyone; non-empty = only listed users can interact. |