Claude Code Tools

A comprehensive toolkit for enhancing Claude Code with skills, plugins, and MCP servers.

Claude Code Tools

Extension toolkit for Claude Code, including Skills, Plugins, and MCP Servers.

中文文档

Directory Structure

.
├── skills/           # Claude Code Skills
├── plugins/          # Claude Code Plugins
├── mcp-servers/      # MCP (Model Context Protocol) Servers

Skills

Custom skills that extend Claude Code's command capabilities.

skill-get

Install skills from any source with a single command.

A unified skill installer supporting multiple sources.

Quick Install

# Install to current project (recommended)
npx @prgrmrwy/install-skill-get

# Or install to user level
npx @prgrmrwy/install-skill-get --global

Design Principle: Prioritize precise searches from third-party marketplaces, with GitHub search as a fallback to avoid name collisions.

Supported Data Sources (by search priority)

PrioritySourceEffectivenessDescription
1github.com/anthropics/skills⭐ OfficialOfficial skill repository, stable API
2prompts.chat/skills⭐⭐ BestMCP API, full content retrieval
3skills.sh⭐⭐ ExcellentVercel official, REST API + npx
4mcpservers.org/claude-skills⭐ EffectiveStructured directory, page scraping
5skillhub.club⭐ Effective7000+ AI-evaluated skills
6claudemarketplaces.com⚠️ PartialHomepage accessible
7skillsmp.com❌ DifficultCloudflare protected, requires npx
8smithery.ai/skills❌ HardestHTTP 429 rate limiting
9GitHub Search⭐ FallbackLast resort, avoids name collision
-Direct Git/HTTP URL-User provides full address
-Local path-Copy local folder

Data source validation date: 2026-01-24

Usage Examples

Install skill (search by name)

User: install playwright-testing

skill-get will search across 9 sources by priority, then ask for installation location (project or user level).

Install from specific URL

User: install docx from https://github.com/anthropics/skills

Update installed skill

User: update playwright-testing

Checks remote version based on installation record, downloads and installs if updates available.

List installed skills

User: list installed skills

Package skill

User: package skill-get

Packages skill directory into a .skill file for distribution.

Unpack skill

User: unpack my-skill.skill to ~/.claude/skills/

Get help

User: skill-get help

Shows supported commands, search order, and configuration options.

Custom Search Order

Edit ~/.claude/skill-get-config.json to customize marketplace search priority:

{
  "marketplaces": [
    "github.com/anthropics/skills",
    "prompts.chat/skills",
    "skills.sh",
    "mcpservers.org/claude-skills",
    "skillhub.club",
    "claudemarketplaces.com",
    "skillsmp.com",
    "smithery.ai/skills",
    "github-search"
  ]
}

Recommendation: Keep github-search last as a fallback to avoid name collisions.

Installation Locations

TypePathDescription
User-level~/.claude/skills/Available to all projects
Project-level.claude/skills/Only for current project

Plugins

Plugin system to enhance Claude Code functionality.

MCP Servers

MCP servers that provide Claude with external tool and resource access capabilities.