Skills quick-skill-maker
Creates a complete SKILL.md in one command. Input name + description + emoji → output a production-ready OpenClaw skill file.
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/1477009639zw-blip/betasqmaker" ~/.claude/skills/openclaw-skills-quick-skill-maker && 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/1477009639zw-blip/betasqmaker" ~/.openclaw/skills/openclaw-skills-quick-skill-maker && rm -rf "$T"
manifest:
skills/1477009639zw-blip/betasqmaker/SKILL.mdsource content
Quick Skill Maker
Create a production-ready
SKILL.md in one command.
Usage
python3 maker.py --name "my-skill" --desc "Does X" --emoji "🚀"
Examples
# Research skill python3 maker.py --name market-research --desc "Market research reports" --emoji "🔍" # Trading skill python3 maker.py --name spx-analysis --desc "SPX technical analysis" --emoji "📈" # Any skill python3 maker.py --name "your-skill" --desc "What it does" --emoji "🛠️"
Output
Creates
SKILL.md in current directory.