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 @@ When Agent mode is enabled, CowAgent runs as an autonomous agent with the follow
## Workspace Directory Structure
The Agent workspace is located at `~/cow` by default and stores system prompts, memory files, and skill files:
The Agent workspace is located at `~/.cow` by default and stores system prompts, memory files, and skill files:
```
~/cow/
~/.cow/
├── system.md # Agent system prompt
├── user.md # User profile
├── memory/ # Long-term memory storage
@@ -55,7 +55,7 @@ Configure Agent mode parameters in `config.json`:
```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 @@ Configure Agent mode parameters in `config.json`:
| Parameter | Description | Default |
| --- | --- | --- |
| `agent` | Enable Agent mode | `true` |
| `agent_workspace` | Workspace path | `~/cow` |
| `agent_workspace` | Workspace path | `~/.cow` |
| `agent_max_context_tokens` | Max context tokens | `40000` |
| `agent_max_context_turns` | Max context turns | `30` |
| `agent_max_steps` | Max decision steps per task | `15` |