Skip to Content

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

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:

Claude Code Chat
/plugin

Claude Code /plugin Interface

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>

Skills.sh

ClawHub

A community-driven Skills publishing platform with version management and semantic search:

ClawHub

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:

CLAUDE.md
# 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 coverage

CLAUDE.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