Install an AI coding skill
A skill is a simple text file in your project. No plugin, no complex setup. In 5 minutes, Claude Code understands what you want it to do.
A skill is a .md file that you place inside your project's .claude/commands/ folder. It contains natural language instructions for Claude Code.
Once the file is in place, type /skill-name inside Claude Code to activate it.
Find a skill
Browse the catalogue and open the skill that looks useful. Each page explains what the skill does and how to use it.
Copy the content
On the skill page, the install panel shows the raw file content. Click Copy to place it in your clipboard.
Create the .claude/commands/ folder
At the root of your project, create the .claude/commands/ folder if it does not exist yet. Claude Code detects commands from this folder.
mkdir -p .claude/commands
Create the .md file
Paste the copied content into a new file. The file name, without the .md extension, becomes the command you will use in your AI coding tool.
# From your project root touch .claude/commands/commit-message.md # Then paste the content into this file
Use your skill
Open Claude Code in your terminal, type / followed by the skill name. Claude Code detects the file and runs the instructions.
claude # Then inside Claude Code: /commit-message
your-project/ ├── .claude/ │ └── commands/ │ ├── commit-message.md ← your skills here │ ├── code-review.md │ └── write-tests.md ├── src/ ├── package.json └── README.md
700+ skills indexed from GitHub, with sources and licenses to review before use.
exploreBrowse the catalogue