Creates new Skills following Anthropic best practices. Use when discovering reusable workflows or repetitive patterns. Triggers on: create skill, new workflow, codify this process, standardize workflow.
Creates well-structured Skills following Anthropic's official best practices.
Good candidates:
Not worth codifying:
---
name: processing-documents
description: "Processes documents and extracts data. Use when working with PDF or Word files. Triggers on: process document, extract data."
---
Field requirements:
| Field | Rules |
|-------|-------|
| name | Max 64 chars, lowercase letters/numbers/hyphens only |
| description | Max 1024 chars, non-empty, use third person |
Use gerund form (verb + -ing):
processing-pdfsanalyzing-spreadsheetsmanaging-databasesAvoid: helper, utils, tools, anthropic-*, claude-*
Always use third person (injected into system prompt):
# Good
description: "Processes Excel files and generates reports"
# Avoid
description: "I can help you process Excel files"
description: "You can use this to process Excel files"
Be specific and include triggers:
description: "Analyzes BigQuery data and generates reports. Use when querying sales metrics or creating dashboards. Triggers on: analyze data, bigquery report, sales metrics."
# [Skill Title]
[One sentence describing what this skill does]
## Quick Start
[Minimal example to get started - under 50 tokens]
## Process
1. [Step 1]
2. [Step 2]
3. [Step 3]
## Advanced Features
**[Feature A]**: See [FEATURE_A.md](FEATURE_A.md)
**[Feature B]**: See [FEATURE_B.md](FEATURE_B.md)
Only add context Claude doesn't already have. Challenge each piece:
Good (~50 tokens):
## Extract PDF text
Use pdfplumber:
\`\`\`python
import pdfplumber
with pdfplumber.open("file.pdf") as pdf:
text = pdf.pages[0].extract_text()
\`\`\`
Bad (~150 tokens): Explaining what PDFs are and how libraries work.
If content exceeds 500 lines, split into separate files using progressive disclosure.
Keep all reference files linked directly from SKILL.md:
# SKILL.md
**Basic usage**: [instructions here]
**Advanced features**: See [advanced.md](advanced.md)
**API reference**: See [reference.md](reference.md)
Use "old patterns" section instead of dates:
## Current method
Use the v2 API endpoint.
## Old patterns
<details>
<summary>Legacy v1 API (deprecated)</summary>
The v1 API used different endpoints...
</details>
Choose one term and stick with it:
skill-name/
├── SKILL.md # Main instructions (< 500 lines)
├── ADVANCED.md # Advanced features (loaded as needed)
├── REFERENCE.md # API reference (loaded as needed)
└── scripts/
└── utility.py # Executed, not loaded into context
Before saving:
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