A curated collection of 140+ production-ready Agent Skills for Claude and other AI agents.
Skills are instruction sets that AI agents load to improve performance on specialized tasks. They teach agents workflows, best practices, and domain knowledge for specific tasks like debugging, copywriting, API design, or infrastructure setup.
Clone and use directly:
git clone https://github.com/coppermare/skillverse.gitCopy skills to your agent's directory:
# For Claude Code
cp -r skillverse/skills/* ~/.claude/skills/
# For Cursor
cp -r skillverse/skills/* ~/.cursor/skills/Use in conversations:
Use the copywriting skill to write a landing page headline
Apply the systematic-debugging skill to find this bug
Use the api-design-principles skill for this endpoint
All 140 skills live in the skills/ directory with a flat structure. Each skill contains:
SKILL.md- The skill instructions and guidelinesATTRIBUTION.md- Source attribution and license info
| Category | Skills | Examples |
|---|---|---|
| Marketing & Growth | 24 | seo-audit, copywriting, page-cro, analytics-tracking |
| Productivity | 18 | systematic-debugging, brainstorming, code-review-excellence |
| Infrastructure | 16 | terraform-module-library, github-actions-templates, k8s-manifest-generator |
| Mobile | 14 | building-native-ui, expo-deployment, react-native-architecture |
| Enterprise & Finance | 12 | stripe-integration, better-auth-best-practices, billing-automation |
| Backend & Database | 10 | api-design-principles, architecture-patterns, sql-optimization-patterns |
| Development | 8 | mcp-builder, nextjs-app-router-patterns, typescript-advanced-types |
| Design | 7 | web-design-guidelines, tailwind-design-system, responsive-design |
| Business Analytics | 7 | startup-metrics-framework, market-sizing-analysis, kpi-dashboard-design |
| Testing | 4 | webapp-testing, e2e-testing-patterns, python-testing-patterns |
| Creative | 4 | algorithmic-art, canvas-design, slack-gif-creator |
| Data Engineering | 4 | dbt-transformation-patterns, airflow-dag-patterns, spark-optimization |
| AI/ML | 3 | rag-implementation, langchain-architecture, prompt-engineering-patterns |
skillverse/
├── skills/ # All 140 skills (flat structure)
│ ├── api-design-principles/
│ │ ├── SKILL.md
│ │ └── ATTRIBUTION.md
│ ├── copywriting/
│ └── ...
├── README.md # This file
├── SKILL-RESOURCES.md # External skill directories (16K+ more skills)
└── skills.json # Machine-readable skill catalog
Looking for more? SKILL-RESOURCES.md has links to 16,000+ additional skills from marketplaces and other repositories.
Contributions welcome:
- Suggest skills - Open an issue with skill recommendations
- Add skills - Submit a PR with new skills following the template structure
- Report issues - Flag outdated or broken skills
Each skill needs two files:
SKILL.md:
---
name: my-skill
description: What this skill does
version: 1.0.0
---
# My Skill
[Instructions, guidelines, and examples]ATTRIBUTION.md:
# Attribution
- **Source**: Original or adapted from [source]
- **License**: MIT / Apache 2.0 / etc.
- **Author**: Name- Repository structure and custom skills: MIT
- Individual skills: Various (MIT, Apache 2.0, proprietary)
Check each skill's ATTRIBUTION.md for specific license terms.
- Repository: https://github.com/coppermare/skillverse
- External Skills: SKILL-RESOURCES.md - 16,000+ additional skills
Maintained by Kristi Kumrija