A collection of skills for Claude Code.
| Skill | Description |
|---|---|
| product-management | Product management skill for reviewing PRDs, specs, feature planning, and prioritization (inspired by Eno Reyes (co-founder of FactoryAI), who demoed his PM skill in this video on the Behind the Craft channel by Peter Yang ) |
For all your projects (personal):
# Copy a skill folder into your personal skills directory
cp -r product-management ~/.claude/skills/product-managementFor a specific project (shared with team via git):
# Copy into the project's .claude/skills directory
cp -r product-management .claude/skills/product-managementClaude Code discovers skills automatically from both locations — no plugin installation needed. Customize the templates and configuration to match your team's workflow.
Each skill follows this convention:
<skill-name>/
├── SKILL.md # The skill file (required). YAML frontmatter with name and description, followed by skill content.
├── templates/ # Supporting templates and reference docs (optional)
└── examples/ # Real-world configuration examples (optional)
- Create a subfolder named after your skill
- Add a
SKILL.mdwith frontmatter:nameanddescription - Add supporting files (templates, examples) as needed
- Add your skill to the table above
- Open a PR
MIT