A collection of skills for AI coding agents. Skills are packaged instructions and scripts that extend agent capabilities.
Skills follow the Agent Skills format.
See SKILLS.md for the complete catalog with detailed metadata.
A meta-skill that guides you through creating new Agent Skills with best practices, templates, and validation.
Use when:
- Creating a new skill from scratch
- Learning the Agent Skills format
- Validating skill structure and YAML frontmatter
- Packaging skills for distribution
Capabilities:
- Initialize new skill templates with proper directory structure
- Validate skill naming conventions and required fields
- Package skills into
.skilldistribution files - Provide reference documentation for workflows and output patterns
- Guide through the 6-phase skill creation process
Copy the skill directory to your Claude skills folder:
# Install skill-creator
cp -r skills/skill-creator ~/.claude/skills/
# Or install all skills
cp -r skills/* ~/.claude/skills/Upload the skill's SKILL.md file to your project knowledge, or paste its contents into the conversation:
# Example: Add skill-creator to project knowledge
# Upload: skills/skill-creator/SKILL.mdSkills are automatically available once installed. The agent will use them when relevant tasks are detected.
Examples with skill-creator:
Help me create a new skill for deployment automation
Validate my skill structure
Package this skill for distribution
I want to build a skill that monitors server logs
Each skill contains:
SKILL.md- Instructions for the agentscripts/- Helper scripts for automation (optional)references/- Supporting documentation (optional)
MIT