π¦ ClawHub
Beta Skill Maker
by @1477009639zw-blip
Creates production-ready SKILL.md files for OpenClaw AI agents. Takes a skill concept and outputs a complete, publishable SKILL.md with metadata, instruction...
TERMINAL
clawhub install beta-skill-makerπ About This Skill
name: skill-maker description: Creates 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. metadata: openclaw: emoji: "π¦" requires: bins: - python3 - markdown always: false
Skill Maker
Creates complete, production-ready SKILL.md files for OpenClaw agents. Perfect for publishing on ClawHub or ugig.net.
Usage
python3 skill_maker.py --name "my-skill" --desc "Does X" --output ./my-skill/
What it generates
SKILL.md β full skill file with frontmatter, instructions, examplesreferences/ β reference docs if applicableREADME.md β quick start guideInput options
| 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 |
Output structure
{skill-name}/
βββ SKILL.md # Main skill file
βββ references/ # Supporting docs
β βββ overview.md # Feature breakdown
βββ README.md # Quick start
Example
python3 skill_maker.py \
--name "market-brief" \
--desc "Generates hourly market briefings" \
--category trading \
--emoji "π" \
--output ./market-brief/
Notes
π‘ Examples
python3 skill_maker.py \
--name "market-brief" \
--desc "Generates hourly market briefings" \
--category trading \
--emoji "π" \
--output ./market-brief/