docs: update channel docs

This commit is contained in:
zhayujie
2026-02-28 14:50:55 +08:00
parent 8705bf0a70
commit fccfa92d7e
36 changed files with 8 additions and 76 deletions

View File

@@ -33,10 +33,10 @@ CowAgent 的整体架构由以下核心模块组成:
## 工作空间
Agent 的工作空间默认位于 `~/cow` 目录,用于存储系统提示词、记忆文件、技能文件等:
Agent 的工作空间默认位于 `~/.cow` 目录,用于存储系统提示词、记忆文件、技能文件等:
```
~/cow/
~/.cow/
├── system.md # Agent system prompt
├── user.md # User profile
├── memory/ # Long-term memory storage
@@ -55,7 +55,7 @@ Agent 的工作空间默认位于 `~/cow` 目录,用于存储系统提示词
```json
{
"agent": true,
"agent_workspace": "~/cow",
"agent_workspace": "~/.cow",
"agent_max_context_tokens": 40000,
"agent_max_context_turns": 30,
"agent_max_steps": 15
@@ -65,7 +65,7 @@ Agent 的工作空间默认位于 `~/cow` 目录,用于存储系统提示词
| 参数 | 说明 | 默认值 |
| --- | --- | --- |
| `agent` | 是否启用 Agent 模式 | `true` |
| `agent_workspace` | 工作空间路径 | `~/cow` |
| `agent_workspace` | 工作空间路径 | `~/.cow` |
| `agent_max_context_tokens` | 最大上下文 token 数 | `40000` |
| `agent_max_context_turns` | 最大上下文记忆轮次 | `30` |
| `agent_max_steps` | 单次任务最大决策步数 | `15` |