-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Contributing Guide
Leo edited this page Mar 13, 2026
·
1 revision
We actively merge community contributions. Two went in just today.
- New skills that fill gaps in existing categories
- Python scripts that add runnable tools to existing skills
- Improvements to existing skill descriptions and workflows
- Reference documents that add depth to skills
- New agent personas with unique perspectives and direct commands
- Must follow the Personas Overview format
- Must include at least 3 slash commands
- Wiki pages, tutorials, usage examples
- Translations
git clone https://github.com/YOUR_USERNAME/claude-skills.git
cd claude-skills
git checkout dev
git checkout -b feat/your-featureAlways branch from dev, never from main.
mkdir -p category/your-skill
# Write your SKILL.md following the Skill Format specSee Skill Format for the complete specification.
Before submitting, verify:
-
SKILL.mdhas proper frontmatter (name, description, license, metadata) - Description includes trigger phrases for AI activation
- Workflow has numbered steps with clear outputs
- Python scripts use stdlib only (no pip dependencies)
- No hardcoded secrets, API keys, or credentials
- SKILL.md is under 200 lines (use
references/for depth) - Tested with at least one AI tool (Claude Code, Codex, or Gemini)
git add .
git commit -m "feat(category): add your-skill — brief description"
git push origin feat/your-featureOpen a PR targeting the dev branch.
- ✅ Skills with runnable scripts (not just instructions)
- ✅ Clean code following existing patterns
- ✅ stdlib-only Python (no external dependencies)
- ✅ Proper frontmatter and trigger phrases
- ✅ Fills a real gap (check Skills Overview first)
⚠️ External dependencies (numpy, requests, etc.) — must use stdlib⚠️ Binary files in the repo (zip, images, etc.)⚠️ Skills that duplicate existing ones without clear differentiation⚠️ Missing frontmatter or vague descriptions
- ❌ Skills that require paid API keys to function
- ❌ Malicious code, data exfiltration, or prompt injection
- ❌ Copied content without attribution
- ❌ PRs targeting
maininstead ofdev
Be respectful, be constructive, be helpful. We're building something together.
Open a Discussion or check existing ones.