Documentation
README
Skill Creator
Create a new skill by generating a SKILL.md file with YAML frontmatter.
Steps
- Identify the task pattern the user wants to capture as a skill
- Write clear, specific instructions that an AI agent can follow
- Create a directory with this structure:
my-skill/
βββ SKILL.md # Instructions + frontmatter
βββ template.md # (optional) Template files
βββ example.py # (optional) Example scripts
- The SKILL.md must have this format:
---
name: skill-name
description: "Brief description of what this skill does"
tags: [category1, category2]
version: "1.0.0"
---
# Skill Name
## Purpose
What this skill accomplishes.
## Instructions
Step-by-step instructions for the agent.
## Examples
Concrete examples of input/output.
This is the opening of the README. Read the full README on GitHub.