Install
openclaw skills install skill-scaffoldAI agent skill scaffolding CLI. Create skills for OpenClaw, Moltbot, Claude, Cursor, ChatGPT, Copilot instantly. Vibe-coding ready. MCP compatible.
openclaw skills install skill-scaffoldCreate AI agent skills in seconds. Supports OpenClaw/Moltbot, MCP servers, and generic skill structures.
Use this skill when the user mentions:
# Install globally
npm install -g skill-scaffold
# Create a OpenClaw skill
skill-scaffold my-awesome-skill
# Create an MCP server
skill-scaffold my-api --template mcp
# With all options
skill-scaffold weather-bot --template openclaw --cli --description "Weather alerts for agents"
| Command | Description |
|---|---|
skill-scaffold <name> | Create skill with default (openclaw) template |
skill-scaffold <name> --template mcp | Create MCP server scaffold |
skill-scaffold <name> --template generic | Create minimal skill |
skill-scaffold <name> --cli | Include CLI binary scaffold |
skill-scaffold --help | Show help |
Full skill structure for OpenClaw/Moltbot agents:
Model Context Protocol server scaffold:
Minimal structure:
| Option | Description | Default |
|---|---|---|
--template <type> | Template: openclaw, mcp, generic | openclaw |
--author <name> | Author name | NextFrontierBuilds |
--description <text> | Skill description | Auto-generated |
--dir <path> | Output directory | Current directory |
--cli | Include CLI binary scaffold | false |
--no-scripts | Skip scripts folder | false |
# Create in current directory
skill-scaffold my-skill
# Create in specific directory
skill-scaffold my-skill --dir ~/clawd/skills
# MCP server with custom author
skill-scaffold github-mcp --template mcp --author "YourName"
# Full CLI tool
skill-scaffold awesome-cli --cli --description "Does awesome things"
my-skill/
├── SKILL.md # Main documentation (OpenClaw reads this)
├── README.md # GitHub/npm readme
├── scripts/ # Helper scripts (optional)
└── bin/ # CLI binary (if --cli flag used)
└── my-skill.js
cd my-skillclawdhub publish . or npm publish