You don’t need to write every skill from scratch. The community has built hundreds of ready-to-use skills.
Where to Find Skills
- ComposioHQ/awesome-claude-skills for categorized, production-ready skills
- hesreallyhim/awesome-claude-code for the meta-list of everything
- alirezarezvani/claude-skills for 192+ skills across engineering, marketing, and compliance
How to Install
Most skills are just Markdown files. Drop them into your project:
# Clone the skills repo
git clone https://github.com/ComposioHQ/awesome-claude-skills /tmp/skills
# Copy the skills you want
cp -r /tmp/skills/tdd .claude/skills/
cp -r /tmp/skills/security-audit .claude/skills/
Or just copy the raw Markdown content into .claude/skills/your-skill/SKILL.md.
Popular Categories
- TDD enforcement: auto-generates tests before implementation
- Security auditing: scans for OWASP vulnerabilities
- DevOps: infrastructure-as-code, CI/CD pipeline generation
- Code review: automated review against team standards
- Documentation: generates docs from code
Customize After Installing
Community skills are starting points. Edit them to match your stack:
# .claude/skills/tdd/SKILL.md
# Modified from community version to use our test runner
Run `bun test` instead of `npm test`.
Use vitest, not jest.
Tip
Before installing, read the skill’s Markdown file. Some skills are opinionated about frameworks or patterns that might not match your project.