Claude Skills
Reusable system prompts that give Claude Code specialized expertise. Install once, use everywhere — skills work across Claude Code, Cursor, Copilot, Windsurf, and Cline.
What are Claude Skills?
Claude skills are reusable system prompts that give AI coding assistants specialized expertise. Think of them as plugins for your AI — each skill is a set of instructions that teaches your assistant how to handle specific tasks like code review, testing, frontend development, or DevOps.
Unlike traditional IDE plugins that require compiled code, Claude Code skills are text-based and portable. A skill written for Claude Code also works as a Cursor rule, a Copilot instruction, or a Windsurf rule. This makes them the most flexible way to customize AI coding behavior.
How Claude Code Skills Work
When you install a skill, it adds instructions to your project's CLAUDE.md file. Claude Code reads this file at the start of every session, giving it the expertise defined in the skill. Here's the flow:
- Install — Add a skill from the Skills Playground directory or any GitHub repo
- Load — Claude Code reads the skill instructions from CLAUDE.md
- Apply — The AI follows the skill's patterns, rules, and best practices
- Persist — Skills stay active across sessions until you remove them
Types of Claude Code Skills
The Claude Code ecosystem includes several types of extensibility:
Skills
System prompts that define coding patterns, review standards, and workflow conventions. The most common and portable type.
Plugins
Bundles of skills, hooks, agents, and commands packaged together. Install with claude plugin add. Plugins guide →
Hooks
Event-driven scripts that run before/after Claude Code actions. Automate linting, validation, and workflows. Hooks guide →
Custom Commands
Slash commands you create (e.g., /deploy, /review) that run predefined workflows. Commands guide →
Skill Categories
Browse 8,633 skills across 10 categories:
Testing & QA
1867 skills
Skills for test-driven development, writing comprehensive test suites, and quality assurance workflo
Developer Workflow
1786 skills
Developer workflow skills for git, commits, deployments, and day-to-day productivity.
Automation & Integrations
1531 skills
Skills for automating workflows, building MCP servers, and integrating external tools.
Frontend Development
1023 skills
Claude Code skills for building production-grade user interfaces, responsive layouts, and accessible
Security
840 skills
Application security auditing, vulnerability scanning, and hardening skills.
Code Review & Quality
659 skills
Automated code review skills covering bugs, security vulnerabilities, performance, and refactoring.
Debugging
443 skills
Systematic debugging skills for finding and fixing bugs, memory leaks, and race conditions.
Documentation
359 skills
Skills for generating clear documentation, API specs, READMEs, and technical writing.
Browse All Categories →
How to Install Claude Code Skills
From Skills Playground
Find a skill in the directory and copy the install command:
claude install-skill https://github.com/owner/repo
Using Claude Code Plugins
For bundled skills with hooks and commands:
claude plugin add https://github.com/owner/plugin-repo
Manual Installation
Copy the skill's system prompt into your project's CLAUDE.md file. Claude Code reads this file automatically.
Cross-Platform
Skills are portable. Use the same content in:
- Claude Code —
CLAUDE.md or .claude/settings.json
- Cursor —
.cursorrules
- GitHub Copilot —
.github/copilot-instructions.md
- Windsurf —
.windsurfrules
Skill Examples
Here are some of the most popular skills on Skills Playground:
- Code Review — Automated PR review with bug detection, security scanning, and style checks
- Frontend Development — Production-grade UI patterns, accessibility, responsive design
- Testing — Test-driven development, comprehensive test suites, coverage analysis
- DevOps — CI/CD pipelines, Docker, Kubernetes, GitHub Actions automation
- Security — OWASP vulnerability scanning, dependency auditing, hardening
Browse all 8,633 skills →
Skills vs MCP Servers
Both extend your AI assistant, but in different ways:
- Skills change how your AI thinks — coding patterns, review standards, best practices
- MCP Servers extend what your AI can do — database queries, API calls, cloud management
Use both together for maximum capability. Read the full comparison: Skills vs MCP Servers
Frequently Asked Questions
Do skills work with Cursor and other editors?
Can I create my own skills?
What's the difference between skills and plugins?
A skill is a single system prompt. A
plugin is a bundle that can include multiple skills plus hooks, agents, and custom commands. Plugins are the recommended way to distribute complex capabilities.