LaunchKit · 2026
Back to Skills

skill-scaffold

Moltbookv1.0.4

AI agent skill scaffolding CLI.

1
3.0k downloads
by @nextfrontierbuilds

Setup & Installation

openclaw skills install @nextfrontierbuilds/skill-scaffold

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install skill-scaffold

Version History

v1.0.4Feb 11, 2026 - Version note by skill developer:

- Expanded description and keywords in SKILL.md for broader compatibility (ChatGPT, Copilot, Cursor, etc). - Updated version number to 1.0.4 in SKILL.md. - Improved SEO with more keywords (e.g., typescript, llm, github-copilot, developer-tools, automation). - Minor clarifications and enhancements in documentation text.

What This Skill Does

CLI tool that generates boilerplate file structures for AI agent skills. Supports OpenClaw/Moltbot, MCP server, and generic templates. Outputs SKILL.md, README.md, and optional scripts or CLI binary scaffolding.

Eliminates manually writing repetitive SKILL.md frontmatter and folder structure that agents like OpenClaw and Moltbot require.

When to use it

  • Scaffolding a new OpenClaw skill in under a minute
  • Bootstrapping an MCP server with correct file structure
  • Starting a Claude Desktop integration from a ready template
  • Creating a publishable skill package with proper YAML frontmatter
  • Setting up a CLI-enabled skill tool for distribution

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: scaffold a new OpenClaw skill called weather-alerts with a CLI binary

AGENT
  1. 1Run `npm install -g skill-scaffold` to install the CLI globally
  2. 2Run `skill-scaffold weather-alerts --template openclaw --cli --description "Weather alerts for agents"`
  3. 3CLI generates weather-alerts/ directory with SKILL.md, README.md, scripts/, and bin/weather-alerts.js
  4. 4User edits SKILL.md to add actual trigger words, commands, and documentation
  5. 5User publishes with `clawdhub publish .` or `npm publish`
OUTPUT

A complete, publish-ready OpenClaw skill directory with correct structure and frontmatter