1# Skill Creator
2
3> Create or update OpenClaw skills. Meta-skill for skill development.
4
5## Install
6
7Built-in skill. No installation needed.
8
9## What it does
10
11- Scaffold new skill directories
12- Generate SKILL.md with proper schema
13- Package scripts and reference files
14- Validate skill structure before publishing
15
16## Skill Structure
17
18
19my-skill/
20āāā SKILL.md # Skill definition (required)
21āāā scripts/ # Executable scripts
22ā āāā my-script.js
23āāā refs/ # Reference documents
24ā āāā api-docs.md
25āāā assets/ # Static assets
26 āāā icon.png
27
28
29## SKILL.md Format
30
31
32# My Skill
33
34> One-line description.
35
36## Description
37What this skill does and when to use it.
38
39## Triggers
40Keywords that activate this skill.
41
42## Scripts
43- \`scripts/my-script.js\` ā What it does
44
45## Configuration
46Required environment variables and setup.
47
48
49## Usage
50
51
52"Create a new skill called 'jira-sync'"
53"Update the weather skill to add hourly forecasts"
54"Package the finance skill for publishing"
55
56
57## Tags
58
59`meta` `development` `skills` `packaging`
60