218★skill-scaffold – OpenClaw Skill
skill-scaffold is an OpenClaw Skills integration for ai ml workflows. AI agent skill scaffolding CLI. Create OpenClaw, Moltbot, Claude, and MCP skills instantly. npx skill-scaffold. Perfect for vibe coding.
Skill Snapshot
| name | skill-scaffold |
| description | AI agent skill scaffolding CLI. Create OpenClaw, Moltbot, Claude, and MCP skills instantly. npx skill-scaffold. Perfect for vibe coding. OpenClaw Skills integration. |
| owner | nextfrontierbuilds |
| repository | nextfrontierbuilds/skill-scaffold |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @nextfrontierbuilds/skill-scaffold |
| last updated | Feb 7, 2026 |
Maintainer

name: skill-scaffold description: AI agent skill scaffolding CLI. Create OpenClaw, Moltbot, Claude, and MCP skills instantly. npx skill-scaffold. Perfect for vibe coding. author: NextFrontierBuilds version: 1.0.2 keywords:
- ai
- ai-agent
- ai-coding
- skill
- scaffold
- generator
- openclaw
- moltbot
- openclaw
- mcp
- claude
- claude-code
- cursor
- copilot
- vibe-coding
- cli
- devtools
- agentic
Skill Scaffold
Create AI agent skills in seconds. Supports OpenClaw/Moltbot, MCP servers, and generic skill structures.
Trigger Words
Use this skill when the user mentions:
- "create a skill"
- "scaffold a skill"
- "new skill template"
- "skill generator"
- "make a openclaw skill"
- "mcp server template"
Quick Start
# 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"
Commands
| 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 |
Templates
OpenClaw (default)
Full skill structure for OpenClaw/Moltbot agents:
- SKILL.md with YAML frontmatter, trigger words, commands table
- README.md with badges, installation, features
- scripts/ folder for helpers
MCP
Model Context Protocol server scaffold:
- SKILL.md with MCP config examples
- Tools and resources documentation
- Ready for Claude Desktop/Cursor integration
Generic
Minimal structure:
- Basic SKILL.md
- Simple README.md
Options
| 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 |
Usage Examples
# 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"
Output Structure
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
After Creating
cd my-skill- Edit SKILL.md with your actual documentation
- Add implementation (scripts or bin/)
- Test locally
- Publish:
clawdhub publish .ornpm publish
Notes
- Skill names must be lowercase with hyphens only
- SEO keywords are auto-included in generated files
- Works with OpenClaw, Moltbot, and any agent that reads SKILL.md
skill-scaffold
AI agent skill scaffolding CLI. Create Clawdbot, Moltbot, Claude, and MCP skills instantly.
Stop copy-pasting skill templates. Generate production-ready AI agent skills in seconds.
Install
npm install -g skill-scaffold
Usage
# Create a Clawdbot/Moltbot skill
skill-scaffold my-awesome-skill
# Create an MCP server
skill-scaffold my-api --template mcp
# Create with CLI binary included
skill-scaffold cli-tool --cli
Templates
| Template | Use Case |
|---|---|
clawdbot | Clawdbot/Moltbot skills with SKILL.md, triggers, examples |
mcp | Model Context Protocol servers for Claude/Cursor |
generic | Minimal skill structure |
Options
--template <type> clawdbot (default), mcp, generic
--author <name> Author name for package
--description <text> Skill description
--dir <path> Output directory
--cli Include CLI binary scaffold
--no-scripts Skip scripts folder
Output
my-skill/
├── SKILL.md # Agent documentation
├── README.md # npm/GitHub readme
├── scripts/ # Helper scripts
└── bin/ # CLI (if --cli)
Examples
# Weather alerts skill
skill-scaffold weather-alerts --description "Real-time weather notifications"
# GitHub MCP server
skill-scaffold github-mcp --template mcp --author "MyName"
# Full CLI tool in custom directory
skill-scaffold super-tool --cli --dir ~/projects
Works With
- 🤖 Clawdbot / Moltbot - AI agent framework
- 🧠 Claude - Anthropic's AI assistant
- ✨ Cursor - AI-powered code editor
- 🔌 MCP - Model Context Protocol servers
- 🎯 Any agent that reads SKILL.md
Keywords
AI, agent, skill, scaffold, generator, Clawdbot, Moltbot, Claude, Cursor, MCP, vibe coding, automation, LLM, GPT, Copilot, devtools, CLI
Author
tytaninc7 / NextFrontierBuilds
License
MIT
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install skill-scaffold?
Run openclaw add @nextfrontierbuilds/skill-scaffold in your terminal. This installs skill-scaffold into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/nextfrontierbuilds/skill-scaffold. Review commits and README documentation before installing.
