MCPMarket
SubmitPower Your AgentsConnect
Skills/Install/Claude Code
CLI

Install Skills in Claude Code

Filesystem-based Skills that live with your code. Install globally or per-project, and share with your team via git.

Installation Steps

1

Create the skills directory

Choose where to install your Skill based on the scope you need:

RecommendedProject Skills

Travel with your codebase and stay in sync across your team via git.

Project skill (git-friendly)
mkdir -p .claude/skills/my-skill
Personal Skills

Available across all projects on your machine.

Personal skill (all projects)
mkdir -p ~/.claude/skills/my-skill
2

Create SKILL.md

Every Skill needs a SKILL.md file with YAML frontmatter. The name and description fields are required.

SKILL.md
---
name: code-review
description: Review code for best practices and security issues. Use when asked to review or audit code.
---

# Code Review Skill

When reviewing code, analyze for:

1. Security vulnerabilities
2. Performance issues
3. Code style consistency
4. Maintainability

Provide structured feedback with severity levels.
3

Add resources (optional)

Skills can include additional files and scripts. Code is executed by Claude; only the output enters the context.

Directory structure
my-skill/
├── SKILL.md        # Required
├── reference.md    # Additional docs
└── scripts/
    └── validate.py # Executable
4

Verify installation

Skills are loaded at startup. Restart Claude Code and run the doctor command to verify your installation:

Verify skills loaded
claude doctor

Expected output: You should see your skill listed under "Loaded Skills" with a green checkmark.

Via Plugins

Plugins are distribution containers that can bundle Skills alongside slash commands, agents, and MCP servers. This is the recommended approach for team sharing.

1. Add a plugin marketplace:

Add GitHub marketplace
/plugin marketplace add owner/repo

2. Install a Skill from the marketplace:

Install from marketplace
/plugin install skill-name@marketplace-name

Marketplace sources: GitHub repos, GitLab URLs, local paths, or HTTP URLs to marketplace.json files.

Team Sharing

Option 1Git (Single Project)

Project Skills in .claude/skills/ can be committed to version control:

git add .claude/skills/
git commit -m "Add team code review skill"
git push

Team members get the Skills when they pull. Best for project-specific skills.

RecommendedPlugin Marketplace (Multi-Project)

For Skills used across multiple projects, distribute via a team plugin marketplace:

.claude/settings.json
# In .claude/settings.json
{
  "extraKnownMarketplaces": {
    "team-tools": {
      "source": {
        "source": "github",
        "repo": "your-org/claude-plugins"
      }
    }
  },
  "enabledPlugins": {
    "code-review@team-tools": true
  }
}

Provides versioning, easy updates, and works across all team projects.

Enterprise: Admins can restrict allowed marketplaces using strictKnownMarketplaces in managed settings.

Platform Comparison

FeatureClaude CodeClaude.ai
InstallationFilesystemZIP upload
Version controlYesNo
Team sharingGit + MarketplaceIndividual
Plugin ecosystemYesNo
Network accessFullLimited

Troubleshooting

Skill not loading?
  • Check the file path matches expected locations
  • Verify SKILL.md has valid YAML frontmatter
  • Ensure name uses only lowercase letters, numbers, and hyphens
  • Restart Claude Code after making changes
Claude not using the Skill?
  • Make the description more specific about when to use it
  • Include trigger phrases like "when user asks to..."
  • Try explicitly mentioning the Skill's purpose in your prompt

Ready to explore pre-built Skills?

Browse SkillsClaude.ai Guide
MCPMarket

Discover MCP servers that connect MCP clients like Claude and Cursor to your favorite tools. Browse the MCP Market to get started.

Browse

  • MCP Search
  • MCP Servers
  • MCP Clients
  • Agent Skills
  • Categories
  • What is an MCP server?
  • Model Context Protocol

Rankings

  • Top MCPs Today
  • Top Agent Skills Today
  • Top 100 Agent Skills
  • Top 100 MCP Servers

About

  • News
  • Submit
  • Contact
  • Contexta AI

© 2025 MCP Market. All rights reserved.