Install
openclaw skills install beta-skill-makerCreates production-ready SKILL.md files for OpenClaw AI agents. Takes a skill concept and outputs a complete, publishable SKILL.md with metadata, instructions, and examples.
openclaw skills install beta-skill-makerCreates complete, production-ready SKILL.md files for OpenClaw agents. Perfect for publishing on ClawHub or ugig.net.
python3 skill_maker.py --name "my-skill" --desc "Does X" --output ./my-skill/
SKILL.md — full skill file with frontmatter, instructions, examplesreferences/ — reference docs if applicableREADME.md — quick start guide| Flag | Description |
|---|---|
--name | Skill name (lowercase, URL-safe) |
--desc | Short description (<50 chars) |
--output | Output directory |
--category | Category: productivity/trading/research/automation |
--emoji | Emoji icon |
{skill-name}/
├── SKILL.md # Main skill file
├── references/ # Supporting docs
│ └── overview.md # Feature breakdown
└── README.md # Quick start
python3 skill_maker.py \
--name "market-brief" \
--desc "Generates hourly market briefings" \
--category trading \
--emoji "📊" \
--output ./market-brief/