skills$openclaw/skill-scaffold
nextfrontierbuilds218

by nextfrontierbuilds

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.

218 stars926 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

nameskill-scaffold
descriptionAI agent skill scaffolding CLI. Create OpenClaw, Moltbot, Claude, and MCP skills instantly. npx skill-scaffold. Perfect for vibe coding. OpenClaw Skills integration.
ownernextfrontierbuilds
repositorynextfrontierbuilds/skill-scaffold
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @nextfrontierbuilds/skill-scaffold
last updatedFeb 7, 2026

Maintainer

nextfrontierbuilds

nextfrontierbuilds

Maintains skill-scaffold in the OpenClaw Skills directory.

View GitHub profile
File Explorer
6 files
.
bin
skill-scaffold.js
8.9 KB
_meta.json
470 B
package.json
1.1 KB
README.md
2.2 KB
SKILL.md
3.3 KB
SKILL.md

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

CommandDescription
skill-scaffold <name>Create skill with default (openclaw) template
skill-scaffold <name> --template mcpCreate MCP server scaffold
skill-scaffold <name> --template genericCreate minimal skill
skill-scaffold <name> --cliInclude CLI binary scaffold
skill-scaffold --helpShow 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

OptionDescriptionDefault
--template <type>Template: openclaw, mcp, genericopenclaw
--author <name>Author nameNextFrontierBuilds
--description <text>Skill descriptionAuto-generated
--dir <path>Output directoryCurrent directory
--cliInclude CLI binary scaffoldfalse
--no-scriptsSkip scripts folderfalse

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

  1. cd my-skill
  2. Edit SKILL.md with your actual documentation
  3. Add implementation (scripts or bin/)
  4. Test locally
  5. Publish: clawdhub publish . or npm 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
README.md

skill-scaffold

AI agent skill scaffolding CLI. Create Clawdbot, Moltbot, Claude, and MCP skills instantly.

npm version License: MIT

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

TemplateUse Case
clawdbotClawdbot/Moltbot skills with SKILL.md, triggers, examples
mcpModel Context Protocol servers for Claude/Cursor
genericMinimal 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.