Create Agent
/install create-agent
Create Agent
Creates and registers new Overstory agents so Overclaw can recognize and use them. Automates the steps documented in .overstory/CREATING_AGENTS.md.
When to use
- You want to add a new agent type (e.g. troubleshooter, docs-writer) to Overclaw.
- You want to ensure all seven integration points are updated consistently.
- You want to suggest new agents from Overclaw logs, TROUBLESHOOTING.md, mulch, or project structure.
Scripts
create_agent.py
Main CLI for creating or validating agents.
Manual creation:
python3 scripts/create_agent.py \
--name "troubleshooter" \
--description "Analyzes logs and troubleshoots issues" \
--capabilities "troubleshoot,debug,analyze" \
--model "sonnet" \
--tools "Read,Glob,Grep,Bash" \
--can-spawn false \
--constraints "read-only"
Options: --dry-run (preview only), --no-regenerate (skip gateway context regeneration), --rollback-on-fail (revert changes if validation fails).
Analysis mode (suggestions only):
python3 scripts/create_agent.py \
--analyze-from-logs \
--analyze-from-troubleshooting \
--suggest-only
analyze_agent_needs.py
Helper for analysis mode: parses logs, TROUBLESHOOTING.md, mulch, and project tree to suggest new agent definitions. Can be run standalone or via create_agent.py --analyze-*.
Integration points updated
.overstory/config.yaml— capability entry.overstory/agent-manifest.json— agent + capabilityIndex.overstory/agent-defs/\x3Cname>.md— agent definitionscripts/overclaw_gateway.py— orchestrator system promptskills/nanobot-overstory-bridge/scripts/task_router.py— CAPABILITY_PATTERNSskills/nanobot-overstory-bridge/scripts/generate_agent_context.py— CAPABILITY_PRIVILEGES- Regeneration of gateway-context.md and skills-manifest.json
References
- CREATING_AGENTS.md — Step-by-step explainer
- .overstory/agent-defs/blogger.md — Example agent def
- .overstory/agent-defs/supervisor.md — Example coordinator-style agent
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install create-agent - 安装完成后,直接呼叫该 Skill 的名称或使用
/create-agent触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Create Agent 是什么?
Creates new Overstory agents for Overclaw by updating all seven integration points (config, manifest, agent-def, gateway prompt, task_router, generate_agent_... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 483 次。
如何安装 Create Agent?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install create-agent」即可一键安装,无需额外配置。
Create Agent 是免费的吗?
是的,Create Agent 完全免费(开源免费),可自由下载、安装和使用。
Create Agent 支持哪些平台?
Create Agent 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Create Agent?
由 austindixson(@austindixson)开发并维护,当前版本 v1.0.0。