Configure Skills
Skills are capability extension packs for Claude Code — they equip Claude with specialized domain knowledge, workflows, and toolchains. Install a Skill, and Claude gains a new ability.
Install Skills
Install via /plugin (Recommended)
Type /plugin in Claude Code to enter the plugin management interface. The built-in Marketplace sources from the Anthropic official Skills repository , allowing you to browse, install, and manage directly:
/plugin
Search for the desired Skill in the Discover tab and install it with one click.
Install via CLI
You can also install a specific Skill directly from the command line:
claude install <skill-name>Skills Marketplace
In addition to the built-in Marketplace, there are excellent third-party Skills platforms:
Skills.sh
An open Agent Skills ecosystem — search and install with a single command:
npx skills find <query>
ClawHub
A community-driven Skills publishing platform with version management and semantic search:

Project-Level Skills: CLAUDE.md
Create a CLAUDE.md file in your project root. Claude Code automatically loads it on startup as project-level context and conventions:
# Project Conventions
## Tech Stack
- Next.js 16 + TypeScript
- Tailwind CSS v4
- pnpm as package manager
## Coding Conventions
- Use PascalCase for component names
- Prefer Server Components
- Maintain at least 80% test coverageCLAUDE.md is the most common way to configure project-level Skills — no installation needed, just place it in the project root to take effect.
Learn More
- Anthropic Skills Official Repository — Anthropic’s official Skills collection
- Anthropic Skills Documentation
- Skills.sh — Open Skills Ecosystem
- ClawHub — Skills Publishing Platform