diff --git a/README.md b/README.md index 403e345..eab14a5 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ That is why OCM should be thought of as a **control panel for an existing OpenCl ## What's New (v0.9.x) -- **Skills & Tools auto-config (v0.9.4)**: new agents/sub-agents automatically get default Skills (memory-continuity, agent-workflow, execution-agent-dispatch, session-logs) and Tool Groups (fs, runtime, memory, sessions_spawn, subagents). A collapsible Skills & Tools picker in the creation form lets you customize per agent. +- **Skills & Tools auto-config**: new agents/sub-agents automatically get default Skills (`memory-continuity`, `session-logs`) and Tool Groups (`fs`, `runtime`, `memory`, `sessions_spawn`, `subagents`). A collapsible Skills & Tools picker in the creation form lets you customize per agent. - **Discord support (v0.9.x)**: add agent/sub-agent flows for Discord (main agent binds channel; sub-agent binds thread). - **README screenshots gallery**: screenshots grouped into a collapsible section so the homepage stays shorter. - **Built-in CLI terminal**: run OpenClaw commands from any page with streaming output, presets, favorites, and Tab completion. @@ -282,8 +282,8 @@ ocm/ ## Related Projects -- [clawkeeper](https://github.com/dtzp555-max/clawkeeper) — OpenClaw memory operations kit for doctor / provider switch / backup / restore workflows. -- [execution-agent-planner](https://github.com/dtzp555-max/execution-agent-planner) — skill for deciding when work should stay with one execution agent or split across specialized workers. +- [clawkeeper](https://github.com/dtzp555-max/clawkeeper) — OpenClaw memory operations kit for doctor / provider switch / backup / restore workflows. *(archived)* +- [execution-agent-planner](https://github.com/dtzp555-max/execution-agent-planner) — archived planning skill for deciding when work should stay with one execution agent or split across specialized workers. - [gh-pr-release-flow](https://github.com/dtzp555-max/gh-pr-release-flow) — skill for PR-first GitHub repos where release work should happen after merge. ## License diff --git a/docs/USAGE_GUIDE.en.md b/docs/USAGE_GUIDE.en.md index cdb1039..2488df8 100644 --- a/docs/USAGE_GUIDE.en.md +++ b/docs/USAGE_GUIDE.en.md @@ -138,7 +138,7 @@ Click `+ Add Agent` and fill: - workspace path (recommended: separate folder per agent) - model (dropdown is sourced from `openclaw models list`) - the BotFather token -- **Skills & Tools** (optional): expand the collapsible picker at the bottom to customize. By default, new agents get: `memory-continuity`, `agent-workflow`, `execution-agent-dispatch`, `session-logs` as Skills, and `group:fs`, `group:runtime`, `group:memory`, `sessions_spawn`, `subagents` as Tool Groups. Use the quick-action buttons (Default / All / None) to adjust. +- **Skills & Tools** (optional): expand the collapsible picker at the bottom to customize. By default, new agents get: `memory-continuity`, `session-logs` as Skills, and `group:fs`, `group:runtime`, `group:memory`, `sessions_spawn`, `subagents` as Tool Groups. Use the quick-action buttons (Default / All / None) to adjust. OCM writes the agent + Telegram account/binding + skills + tool groups into `openclaw.json`. diff --git a/docs/USAGE_GUIDE.zh-CN.md b/docs/USAGE_GUIDE.zh-CN.md index c1a024b..5285981 100644 --- a/docs/USAGE_GUIDE.zh-CN.md +++ b/docs/USAGE_GUIDE.zh-CN.md @@ -123,7 +123,7 @@ bash start.sh - workspace 路径(建议独立目录) - 选择模型(下拉来自 `openclaw models list`,更不容易选错) - 填入刚拿到的 bot token -- **Skills & Tools**(可选):展开表单底部的折叠面板可自定义。默认预设:Skills 包含 `memory-continuity`、`agent-workflow`、`execution-agent-dispatch`、`session-logs`;Tool Groups 包含 `group:fs`、`group:runtime`、`group:memory`、`sessions_spawn`、`subagents`。提供「仅默认 / 全选 / 清空」快捷按钮。 +- **Skills & Tools**(可选):展开表单底部的折叠面板可自定义。默认预设:Skills 包含 `memory-continuity`、`session-logs`;Tool Groups 包含 `group:fs`、`group:runtime`、`group:memory`、`sessions_spawn`、`subagents`。提供「仅默认 / 全选 / 清空」快捷按钮。 保存后,OCM 会把主 Agent + skills + tools 写进 `openclaw.json`,并把 bot token 绑定到对应 `accountId`。 diff --git a/openclaw-manager.js b/openclaw-manager.js index 1d0a9d0..00a031c 100644 --- a/openclaw-manager.js +++ b/openclaw-manager.js @@ -64,7 +64,7 @@ function refreshPaths() { } // ── Default Skills & Tool Groups for new agents ───────────── -const DEFAULT_SKILLS = ['memory-continuity', 'agent-workflow', 'execution-agent-dispatch', 'session-logs']; +const DEFAULT_SKILLS = ['memory-continuity', 'session-logs']; const DEFAULT_TOOL_GROUPS = ['group:fs', 'group:runtime', 'group:memory', 'sessions_spawn', 'subagents']; function applySkillsTools(agentEntry, skills, toolGroups) { @@ -3029,14 +3029,11 @@ function showAddForm(type) { // ── Skills / Tools picker helper ────────────────────────── const AVAILABLE_SKILLS = [ { id:'memory-continuity', label:'Memory Continuity', isDefault:true }, - { id:'agent-workflow', label:'Agent Workflow', isDefault:true }, - { id:'execution-agent-dispatch', label:'Execution Dispatch', isDefault:true }, { id:'session-logs', label:'Session Logs', isDefault:true }, { id:'browser-use', label:'Browser Use', isDefault:false }, { id:'github', label:'GitHub', isDefault:false }, { id:'gh-issues', label:'GitHub Issues', isDefault:false }, { id:'coding-agent', label:'Coding Agent', isDefault:false }, - { id:'execution-agent-planner', label:'Execution Planner', isDefault:false }, { id:'discord', label:'Discord', isDefault:false }, { id:'weather', label:'Weather', isDefault:false }, { id:'summarize', label:'Summarize', isDefault:false },