Template skill demonstrating proper structure. Use this as a reference when creating new skills. Copy this folder and modify for your use case.
This is a template skill. Key things to note:
SKILL.md is required with YAML frontmatter (name, description)scripts/, references/, assets/---
name: kebab-case-name # Required, max 64 chars
description: Short desc # Required, max 1024 chars, no angle brackets
display_title: Nice Name # Optional, used in API upload
---
make init SKILL=my-skill-nameSKILL.mdmake validate SKILL=my-skill-namemake upload SKILL=my-skill-nameFrom Anthropic's skill-creator guidance:
Claude is already smart. Only add context it doesn't have. Don't over-explain.
references/Match specificity to task fragility:
references/ when approaching this limitmy-skill/
├── SKILL.md # Required - main skill definition
├── scripts/ # Optional - automation scripts
│ └── helper.py
├── references/ # Optional - additional documentation
│ └── api-guide.md
└── assets/ # Optional - images, templates, etc.
└── template.json
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