Skill Package Contents
Your package must include a
SKILL.md file with appropriate front matter that
complies with the
skill specification. Skills typically also
include:
- Supporting scripts
- Prompt files
- Configuration files
- Example outputs or other reference assets
Avoid including the following items, which increase upload time and reduce scan
performance:
- Virtual environments
- Build artifacts
- Version control metadata
- Dependency caches
- Large files unrelated to the skill
Use the following example command to create a ZIP archive while excluding unnecessary
components:
zip -r my-skill.zip . \
-x ".git/*" "__pycache__/*" "*.pyc" ".venv/*" "venv/*" "node_modules/*"