Claude Skills Manage
A Claude Code Skill which can determine what skill you should use in your project and load it from local or github
Ask AI about Claude Skills Manage
Powered by Claude ยท Grounded in docs
I know everything about Claude Skills Manage. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
Claude Skills Manager
English
An intelligent Skills management system that runs as a Claude Code Custom Skill. It helps you sync, search, and load skills from remote repositories.
Demo
Example: Search for skills to help with "personal website development"
Skills synced from claudekit-skills and awesome-claude-code

Quick Start
Step 1: Install as Claude Code Skill
# Clone to Claude Code skills directory
git clone https://github.com/Azurboy/claude_skills_control.git ~/.claude/skills/skills-manager
# Enter directory and build
cd ~/.claude/skills/skills-manager
npm install
npm run build
Step 2: Configure Skills Repository
# Use a community skills repository (or your own)
node dist/cli.js config https://github.com/ComposioHQ/awesome-claude-skills
# Sync skills
node dist/cli.js sync
Step 3: Use in Claude Code
Now you can use it directly in Claude Code:
You: "Find me a skill about MCP Server development"
Claude will automatically:
1. Search through all synced skills
2. Recommend the most relevant ones
3. Load them after your confirmation
4. Use the skill content to help you
That's it! No changes needed to your own skills repository.
Why Skills Manager?
The Problem
Imagine you have 100+ skills in your Claude Code:
react-hooks.mdmcp-guide.mddocker-deploy.mdapi-design.md- ... and 96 more
When you need help with "creating an MCP Server to connect external APIs", how do you find the right skill?
Without Skills Manager: Manually search through 100 files, trying to remember which one is relevant. Takes 10-20 minutes.
With Skills Manager: Just say "find me a skill about MCP Server" and get instant recommendations.
The Solution: Three-Tier Matching
Your query: "create MCP Server"
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 1: Keyword Pre-filtering (Local) โ
โ - Extract keywords: [mcp, server] โ
โ - Match against name/description/tags โ
โ - Filter to top 20 candidates โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 2: LLM Selection (Smart) โ
โ - Send only 20 candidates (~1K tokens) โ
โ - LLM picks the 5 most relevant โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Layer 3: User Confirmation + Load โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Why three layers?
| Approach | 100 skills | 500 skills | Problem |
|---|---|---|---|
| Send all to LLM | ~10K tokens | ~50K tokens | Context explosion, expensive |
| Pure keyword matching | Fast but imprecise | Fast but imprecise | Can't understand semantics |
| Three-tier | ~1K tokens | ~1K tokens | Fast + Accurate + Controllable |
Features
- Remote Repository Sync - Clone and update skills from GitHub repositories
- Three-Tier Matching - Keyword pre-filtering + LLM selection + User confirmation
- Usage Tracking - Learn from feedback to improve future recommendations
- Bilingual Support - Works with both English and Chinese queries
- Dynamic Loading - Load skill content directly into your Claude Code session
Commands Reference
| Command | Description |
|---|---|
sync | Sync skills from remote repository |
list | List all available skills |
load <query> | Search and find matching skills |
show <skill-id> | View a specific skill |
inject <id> [id...] | Load skills by ID |
config [repo-url] | View or update configuration |
feedback <id> useful|notuseful [scenario] | Mark skill usefulness |
stats | View usage statistics |
Example: Search and Load
# Search for skills
node dist/cli.js load "create MCP Server"
# Output shows pre-filtered candidates:
# 1. [mcp-builder] - Guide for creating MCP servers...
# 2. [connect-apps] - Connect Claude to external apps...
# Load the skill you want
node dist/cli.js inject mcp-builder
Example: Usage Feedback
# Mark as useful with scenario description
node dist/cli.js feedback mcp-builder useful "building API integration tools"
# Mark as not useful
node dist/cli.js feedback some-skill notuseful
Supported Skills Repository Formats
Format 1: Standard (Recommended)
your-skills-repo/
โโโ skills/
โ โโโ react-best-practices.md
โ โโโ nodejs-api-design.md
โ โโโ docker-compose.md
โโโ README.md
Format 2: Composio Style
your-skills-repo/
โโโ mcp-builder/
โ โโโ SKILL.md
โโโ pdf-tools/
โ โโโ SKILL.md
โโโ README.md
Skill File Format
Each skill file should include frontmatter:
---
name: React Best Practices
description: Best practices for React development
tags: [react, hooks, performance]
domain: frontend
scenario: development
level: intermediate
---
# React Best Practices
Your skill content here...
Configuration
Configuration is stored in ~/.claude-skills-config.json:
{
"repoUrl": "https://github.com/user/skills-repo",
"cacheDir": "~/.claude-skills-cache",
"autoSync": true
}
Usage data is stored in ~/.claude-skills-cache/usage.json.
Recommended Skills Repositories
- ComposioHQ/awesome-claude-skills - High-quality community skills
- travisvn/awesome-claude-skills - Curated community skills
FAQ
Q: Do I need to modify my own skills repository?
A: No. Skills Manager works with any skills repository that follows standard formats. Just point it to your repo URL.
Q: Why do I need to run npm install and npm run build?
A: The CLI is written in TypeScript and needs to be compiled. This is a one-time setup.
Q: Can I use this without Claude Code?
A: Yes, you can use it as a standalone CLI tool. Just run commands like node dist/cli.js load "your query".
ไธญๆ
ๆบ่ฝ Skills ็ฎก็็ณป็ป๏ผไฝไธบ Claude Code Custom Skill ่ฟ่ก๏ผๅธฎๅฉไฝ ไป่ฟ็จไปๅบๅๆญฅใๆ็ดขๅๅ ่ฝฝ skillsใ
ๆผ็คบ
็คบไพ๏ผๆ็ดขๅธฎๅฉ"ๅผๅไธชไบบ็ฝ็ซ"็ skills
Skills ๆฅๆบ๏ผclaudekit-skills ๅ awesome-claude-code

ๅฟซ้ๅผๅง
็ฌฌไธๆญฅ๏ผๅฎ่ฃ ไธบ Claude Code Skill
# ๅ
้ๅฐ Claude Code skills ็ฎๅฝ
git clone https://github.com/Azurboy/claude_skills_control.git ~/.claude/skills/skills-manager
# ่ฟๅ
ฅ็ฎๅฝๅนถๆๅปบ
cd ~/.claude/skills/skills-manager
npm install
npm run build
็ฌฌไบๆญฅ๏ผ้ ็ฝฎ Skills ไปๅบ
# ไฝฟ็จ็คพๅบ skills ไปๅบ๏ผๆไฝ ่ชๅทฑ็๏ผ
node dist/cli.js config https://github.com/ComposioHQ/awesome-claude-skills
# ๅๆญฅ skills
node dist/cli.js sync
็ฌฌไธๆญฅ๏ผๅจ Claude Code ไธญไฝฟ็จ
็ฐๅจๅฏไปฅ็ดๆฅๅจ Claude Code ไธญไฝฟ็จ๏ผ
ไฝ : "ๅธฎๆๆพไธไธชๅ
ณไบ MCP Server ๅผๅ็ skill"
Claude ไผ่ชๅจ๏ผ
1. ๆ็ดขๆๆๅทฒๅๆญฅ็ skills
2. ๆจ่ๆ็ธๅ
ณ็ๅ ไธช
3. ๅจไฝ ็กฎ่ฎคๅๅ ่ฝฝๅฎไปฌ
4. ไฝฟ็จ skill ๅ
ๅฎนๆฅๅธฎๅฉไฝ
ๅฐฑ่ฟไน็ฎๅ๏ผไธ้่ฆไฟฎๆนไฝ ่ชๅทฑ็ skills ไปๅบใ
ไธบไปไน้่ฆ Skills Manager๏ผ
้ฎ้ข
ๆณ่ฑกไธไธไฝ ็ Claude Code ้ๆ 100+ ไธช skills๏ผ
react-hooks.mdmcp-guide.mddocker-deploy.mdapi-design.md- ... ่ฟๆ 96 ไธช
ๅฝไฝ ้่ฆ"ๅๅปบไธไธช่ฟๆฅๅค้จ API ็ MCP Server"ๆถ๏ผๆไนๆพๅฐๅฏนๅบ็ skill๏ผ
ๆฒกๆ Skills Manager๏ผ ๆๅจ็ฟปๆพ 100 ไธชๆไปถ๏ผๅชๅๅๅฟๅชไธชๆฏ็ธๅ ณ็ใ้่ฆ 10-20 ๅ้ใ
ๆไบ Skills Manager๏ผ ๅช้่ฏด"ๅธฎๆๆพไธไธชๅ ณไบ MCP Server ็ skill"๏ผ็ซๅณ่ทๅพๆจ่ใ
่งฃๅณๆนๆก๏ผไธๅฑๅน้ ็ญ็ฅ
ไฝ ็ๆฅ่ฏข: "ๅๅปบ MCP Server"
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ็ฌฌไธๅฑ: ๅ
ณ้ฎ่ฏ้ข็ญ้ (ๆฌๅฐ) โ
โ - ๆๅๅ
ณ้ฎ่ฏ: [mcp, server] โ
โ - ๅน้
name/description/tags โ
โ - ็ญ้ๅบๅ 20 ไธชๅ้ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ็ฌฌไบๅฑ: LLM ็ฒพ้ (ๆบ่ฝ) โ
โ - ๅชๅ้ 20 ไธชๅ้ (~1K tokens) โ
โ - LLM ้ๅบๆ็ธๅ
ณ็ 5 ไธช โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ ็ฌฌไธๅฑ: ็จๆท็กฎ่ฎค + ๅ ่ฝฝ โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
ไธบไปไน้่ฆไธๅฑ๏ผ
| ๆนๆก | 100 skills | 500 skills | ้ฎ้ข |
|---|---|---|---|
| ๅ จ้จๅ็ป LLM | ~10K tokens | ~50K tokens | ไธไธๆ็็ธ๏ผๆๆฌ้ซ |
| ็บฏๅ ณ้ฎ่ฏๅน้ | ๅฟซไฝไธๅ | ๅฟซไฝไธๅ | ๆ ๆณ็่งฃ่ฏญไน |
| ไธๅฑ็ญ็ฅ | ~1K tokens | ~1K tokens | ๅฟซ้ + ็ฒพๅ + ๅฏๆง |
ๅ่ฝ็นๆง
- ่ฟ็จไปๅบๅๆญฅ - ไป GitHub ไปๅบๅ ้ๅๆดๆฐ skills
- ไธๅฑๅน้ ็ญ็ฅ - ๅ ณ้ฎ่ฏ้ข็ญ้ + LLM ็ฒพ้ + ็จๆท็กฎ่ฎค
- ไฝฟ็จ่ฟฝ่ธช - ไปๅ้ฆไธญๅญฆไน ๏ผๆน่ฟๆชๆฅๆจ่
- ไธญ่ฑๆๆฏๆ - ๆฏๆไธญ่ฑๆๆททๅๆฅ่ฏข
- ๅจๆๅ ่ฝฝ - ๅฐ skill ๅ ๅฎน็ดๆฅๅ ่ฝฝๅฐ Claude Code ไผ่ฏไธญ
ๅฝไปคๅ่
| ๅฝไปค | ่ฏดๆ |
|---|---|
sync | ไป่ฟ็จไปๅบๅๆญฅ skills |
list | ๅๅบๆๆๅฏ็จ skills |
load <query> | ๆ็ดขๅนถๆฅๆพๅน้ ็ skills |
show <skill-id> | ๆฅ็ๆๅฎ skill |
inject <id> [id...] | ๆ ID ๅ ่ฝฝ skills |
config [repo-url] | ๆฅ็ๆๆดๆฐ้ ็ฝฎ |
feedback <id> useful|notuseful [ๅบๆฏ] | ๆ ่ฎฐ skill ๆฏๅฆๆ็จ |
stats | ๆฅ็ไฝฟ็จ็ป่ฎก |
็คบไพ๏ผๆ็ดขๅนถๅ ่ฝฝ
# ๆ็ดข skills
node dist/cli.js load "ๅๅปบ MCP Server"
# ่พๅบๆพ็คบ้ข็ญ้็ๅ้๏ผ
# 1. [mcp-builder] - ๅๅปบ MCP ๆๅกๅจ็ๆๅ...
# 2. [connect-apps] - ่ฟๆฅ Claude ๅฐๅค้จๅบ็จ...
# ๅ ่ฝฝไฝ ๆณ่ฆ็ skill
node dist/cli.js inject mcp-builder
็คบไพ๏ผไฝฟ็จๅ้ฆ
# ๆ ่ฎฐไธบๆ็จ๏ผๅนถๆทปๅ ๅบๆฏๆ่ฟฐ
node dist/cli.js feedback mcp-builder useful "ๆๅปบ API ้ๆๅทฅๅ
ท"
# ๆ ่ฎฐไธบๆ ็จ
node dist/cli.js feedback some-skill notuseful
ๆฏๆ็ Skills ไปๅบๆ ผๅผ
ๆ ผๅผ 1๏ผๆ ๅๆ ผๅผ๏ผๆจ่๏ผ
your-skills-repo/
โโโ skills/
โ โโโ react-best-practices.md
โ โโโ nodejs-api-design.md
โ โโโ docker-compose.md
โโโ README.md
ๆ ผๅผ 2๏ผComposio ้ฃๆ ผ
your-skills-repo/
โโโ mcp-builder/
โ โโโ SKILL.md
โโโ pdf-tools/
โ โโโ SKILL.md
โโโ README.md
Skill ๆไปถๆ ผๅผ
ๆฏไธช skill ๆไปถๅบๅ ๅซ frontmatter๏ผ
---
name: React Best Practices
description: React ๅผๅๆไฝณๅฎ่ทต
tags: [react, hooks, performance]
domain: frontend
scenario: development
level: intermediate
---
# React Best Practices
Skill ๅ
ๅฎน...
้ ็ฝฎ
้
็ฝฎๅญๅจๅจ ~/.claude-skills-config.json๏ผ
{
"repoUrl": "https://github.com/user/skills-repo",
"cacheDir": "~/.claude-skills-cache",
"autoSync": true
}
ไฝฟ็จๆฐๆฎๅญๅจๅจ ~/.claude-skills-cache/usage.jsonใ
ๆจ่็ Skills ไปๅบ
- ComposioHQ/awesome-claude-skills - ้ซ่ดจ้็คพๅบ skills
- travisvn/awesome-claude-skills - ็ฒพ้็คพๅบ skills
ๅธธ่ง้ฎ้ข
Q: ๆ้่ฆไฟฎๆน่ชๅทฑ็ skills ไปๅบๅ๏ผ
A: ไธ้่ฆใSkills Manager ๅฏไปฅไธไปปไฝ้ตๅพชๆ ๅๆ ผๅผ็ skills ไปๅบ้ ๅไฝฟ็จใๅช้ๆๅไฝ ็ไปๅบ URL ๅณๅฏใ
Q: ไธบไปไน้่ฆ่ฟ่ก npm install ๅ npm run build๏ผ
A: CLI ๆฏ็จ TypeScript ็ผๅ็๏ผ้่ฆ็ผ่ฏใ่ฟๆฏไธๆฌกๆง่ฎพ็ฝฎใ
Q: ๅฏไปฅไธๅจ Claude Code ไธญไฝฟ็จๅ๏ผ
A: ๅฏไปฅใไฝ ๅฏไปฅๅฐๅฎไฝไธบ็ฌ็ซ็ CLI ๅทฅๅ
ทไฝฟ็จ๏ผ็ดๆฅ่ฟ่ก node dist/cli.js load "ไฝ ็ๆฅ่ฏข" ็ญๅฝไปคใ
License
MIT
