Thanks for your interest in contributing to Marketing Skills! This guide will help you add new skills or improve existing ones.
You can also suggest new skills by opening a skill request.
mkdir -p skills/your-skill-nameEvery skill needs a SKILL.md file with YAML frontmatter:
---
name: your-skill-name
description: When to use this skill. Include trigger phrases and keywords that help agents identify relevant tasks.
---
# Your Skill Name
Instructions for the agent go here...Optional frontmatter fields: license (default: MIT), metadata (author, version, etc.)
- Directory name: lowercase, hyphens only (e.g.,
emails) - Name field: must match directory name exactly
- Description: 1-1024 characters, include trigger phrases
skills/your-skill-name/
├── SKILL.md # Required - main instructions
├── references/ # Optional - additional documentation
│ └── guide.md
├── scripts/ # Optional - executable code
│ └── helper.py
└── assets/ # Optional - templates, images, data
└── template.json
- Keep
SKILL.mdunder 500 lines - Move detailed reference material to
references/ - Include step-by-step instructions
- Add examples of inputs and outputs
- Cover common edge cases
- Read the existing skill thoroughly
- Test your changes locally
- Keep changes focused and minimal
- Update the version in metadata if making significant changes
- Fork the repository
- Create a feature branch (
git checkout -b feature/new-skill-name) - Make your changes
- Test locally with an AI agent
- Submit a pull request using the appropriate template:
-
namematches directory name -
descriptionclearly explains when to use the skill - Instructions are clear and actionable
- No sensitive data or credentials
- Follows existing skill patterns in the repo
Open an issue if you have questions or need help with your contribution.