# Send Skill Scaffold to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "skill-scaffold",
    "name": "Skill Scaffold",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/NextFrontierBuilds/skill-scaffold",
    "canonicalUrl": "https://clawhub.ai/NextFrontierBuilds/skill-scaffold",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/skill-scaffold",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-scaffold",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "bin/skill-scaffold.js",
      "package.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "skill-scaffold",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T00:08:01.324Z",
      "expiresAt": "2026-05-16T00:08:01.324Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-scaffold",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=skill-scaffold",
        "contentDisposition": "attachment; filename=\"skill-scaffold-1.0.4.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "skill-scaffold"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/skill-scaffold"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/skill-scaffold",
    "downloadUrl": "https://openagent3.xyz/downloads/skill-scaffold",
    "agentUrl": "https://openagent3.xyz/skills/skill-scaffold/agent",
    "manifestUrl": "https://openagent3.xyz/skills/skill-scaffold/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/skill-scaffold/agent.md"
  }
}
```
## Documentation

### 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

CommandDescriptionskill-scaffold <name>Create skill with default (openclaw) templateskill-scaffold <name> --template mcpCreate MCP server scaffoldskill-scaffold <name> --template genericCreate minimal skillskill-scaffold <name> --cliInclude CLI binary scaffoldskill-scaffold --helpShow help

### 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

cd my-skill
Edit SKILL.md with your actual documentation
Add implementation (scripts or bin/)
Test locally
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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: NextFrontierBuilds
- Version: 1.0.4
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-09T00:08:01.324Z
- Expires at: 2026-05-16T00:08:01.324Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/skill-scaffold)
- [Send to Agent page](https://openagent3.xyz/skills/skill-scaffold/agent)
- [JSON manifest](https://openagent3.xyz/skills/skill-scaffold/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/skill-scaffold/agent.md)
- [Download page](https://openagent3.xyz/downloads/skill-scaffold)