Creates well-structured agent skills according to the specification. Use when creating a new skill.
Creates well-structured agent skills according to the specification.
Every skill needs a SKILL.md file with YAML frontmatter:
---
name: my-skill-name
description: Does X when Y happens. Use for Z tasks.
---
# Skill Title
Instructions go here.
Keep the main SKILL.md under 500 lines. Move detailed reference material to separate files.
Additional files can be placed in three optional subdirectories. These files are loaded only when required.
scripts/: Contains executable code that agents can run. Scripts should:
references/: Contains additional documentation that agents can read when needed, such as domain- or task-specific files (finance.md, legal.md, etc.). Keep individual reference files focused. Agents load these on demand, so smaller files mean less use of context.assets/: Contains static resources:
my--skill is invalid)processing-pdfs, analyzing-data, managing-deploymentshelper, utils, toolslicense: License identifier (e.g., "MIT", "Apache-2.0")compatibility: Max 500 characters describing compatibility requirementsmetadata: Arbitrary metadata objectallowed-tools: List of tools the skill can useskills/my-skill/
└── SKILL.md
.skills/my-skill/
├── SKILL.md
└── scripts/
└── my-script.sh
└── resources/
└── specific-task.md
└── assets/
└── diagram.png
When referencing other files in your skill, use relative paths from the skill root:
See [the reference guide](references/REFERENCE.md) for details.
Run the extraction script:
scripts/extract.py
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer