diff --git a/README.md b/README.md index 0d671c84b..75ad7255a 100644 --- a/README.md +++ b/README.md @@ -784,13 +784,14 @@ PicoClaw stores data in your configured workspace (default: `~/.picoclaw/workspa ``` ~/.picoclaw/workspace/ ├── sessions/ # Conversation sessions and history -├── memory/ # Long-term memory (MEMORY.md) -├── state/ # Persistent state (last channel, etc.) -├── cron/ # Scheduled jobs database -├── skills/ # Custom skills -├── AGENT.md # Structured agent definition and system prompt -├── HEARTBEAT.md # Periodic task prompts (checked every 30 min) -├── SOUL.md # Agent soul +├── memory/ # Long-term memory (MEMORY.md) +├── state/ # Persistent state (last channel, etc.) +├── cron/ # Scheduled jobs database +├── skills/ # Workspace-specific skills +├── AGENT.md # Structured agent definition and system prompt +├── SOUL.md # Agent soul +├── USER.md # User profile and preferences for this workspace +├── HEARTBEAT.md # Periodic task prompts (checked every 30 min) └── ... ``` diff --git a/README.zh.md b/README.zh.md index 3cd060e16..aba133eef 100644 --- a/README.zh.md +++ b/README.zh.md @@ -365,13 +365,14 @@ PicoClaw 将数据存储在您配置的工作区中(默认:`~/.picoclaw/work ``` ~/.picoclaw/workspace/ ├── sessions/ # 对话会话和历史 -├── memory/ # 长期记忆 (MEMORY.md) -├── state/ # 持久化状态 (最后一次频道等) -├── cron/ # 定时任务数据库 -├── skills/ # 自定义技能 -├── AGENT.md # 结构化 Agent 定义与系统提示词 -├── HEARTBEAT.md # 周期性任务提示词 (每 30 分钟检查一次) -├── SOUL.md # Agent 灵魂/性格 +├── memory/ # 长期记忆 (MEMORY.md) +├── state/ # 持久化状态 (最后一次频道等) +├── cron/ # 定时任务数据库 +├── skills/ # 工作区级技能 +├── AGENT.md # 结构化 Agent 定义与系统提示词 +├── SOUL.md # Agent 灵魂/性格 +├── USER.md # 当前工作区的用户资料与偏好 +├── HEARTBEAT.md # 周期性任务提示词 (每 30 分钟检查一次) └── ... ```