Skills create-agent
Creates new Overstory agents for Overclaw by updating all seven integration points (config, manifest, agent-def, gateway prompt, task_router, generate_agent_context, and regeneration). Supports manual creation and optional analysis from logs, TROUBLESHOOTING.md, mulch, and project tree.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/austindixson/create-agent" ~/.claude/skills/openclaw-skills-create-agent && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/austindixson/create-agent" ~/.openclaw/skills/openclaw-skills-create-agent && rm -rf "$T"
manifest:
skills/austindixson/create-agent/SKILL.mdsource content
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
— capability entry.overstory/config.yaml
— agent + capabilityIndex.overstory/agent-manifest.json
— agent definition.overstory/agent-defs/<name>.md
— orchestrator system promptscripts/overclaw_gateway.py
— CAPABILITY_PATTERNSskills/nanobot-overstory-bridge/scripts/task_router.py
— CAPABILITY_PRIVILEGESskills/nanobot-overstory-bridge/scripts/generate_agent_context.py- 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