Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计异常

skill-manager技能经理

Agent Skill

skill-manager 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

514

周安装

21

GitHub Stars

244

下载量

165
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:skill-manager(技能经理)
来源仓库:https://github.com/buzhangsan/skill-manager
仓库路径:skills/skill-manager
安装命令:
npx skills add https://github.com/buzhangsan/skill-manager --skill skill-manager
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/buzhangsan/skill-manager --skill skill-manager

简介

skill-manager 可从社区数据库智能搜索并安装 31,767+ 个技能,支持文件夹级下载。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速发现、浏览与管理 Claude Code 技能生态。
  • 使用时可描述需求,系统返回匹配结果并自动下载完整技能文件夹至本地环境。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Skill Manager

A Claude Code skill that allows you to search, browse, and install skills from a database of 31,767+ community skills with intelligent folder-level downloads.

Description

Skill Manager provides an easy way to discover and install Claude Code skills. Simply describe what you're looking for, and it will search through a comprehensive database of skills, display matching results with ratings and descriptions, and automatically download the complete skill folder (not just SKILL.md) to your Claude environment.

Features

  • Search through 31,767+ skills from the community
  • Intelligent search with weighted scoring (name, description, author)
  • View skill details including stars, forks, author, and description
  • Smart installation with multiple methods:

- SVN export (preferred): Downloads only the skill folder efficiently - Git sparse checkout: Falls back if SVN unavailable - SKILL.md only: Final fallback for minimal installation

  • Complete folder download including all scripts, data, and documentation
  • Automatic configuration and usage guide display
  • Support for both English and Chinese descriptions

Installation Methods

The skill automatically selects the best available method:

1. SVN Export (Recommended)

  • Fastest and most efficient
  • Downloads only the specific skill folder
  • No Git history overhead
  • Requirement: SVN client installed

- Windows: choco install svn or download from TortoiseSVN - Mac: brew install svn - Linux: apt-get install subversion or yum install subversion

2. Git Sparse Checkout

  • Alternative when SVN unavailable
  • Uses Git's sparse checkout feature
  • Downloads only needed files
  • Requirement: Git installed

3. SKILL.md Only (Fallback)

  • Minimal installation
  • Downloads only the SKILL.md file
  • Works without any special tools
  • Limited functionality for skills requiring additional files

Usage

When you need to find and install a skill, simply tell Claude what you're looking for:

I need a skill for Python testing
Find me a skill to help with Docker
Search for skills related to API development

Claude will:

  1. Search the skills database
  2. Display matching results with ratings
  3. Ask you to select one
  4. Download the complete skill folder automatically
  5. Show you the configuration and usage guide

Installation

This skill includes the skills database file in the data/ directory:

  • data/all_skills_with_cn.json (30.33 MB)

Technical Details

The skill uses Node.js to:

  • Parse and search the JSON skills database
  • Automatically detect available download methods (SVN, Git, or HTTP)
  • Use SVN export for efficient folder-only downloads
  • Fall back to Git sparse checkout if SVN unavailable
  • Download complete skill folders with all files (scripts, data, docs)
  • Install skills to ~/.claude/skills/ directory
  • Parse skill configuration from SKILL.md content
  • Display formatted installation guides with method used

Download Method Selection

The skill intelligently selects the best method:

if (SVN available) {
  → Use SVN export (fastest, most efficient)
} else if (Git available) {
  → Use Git sparse checkout (slower but complete)
} else {
  → Download SKILL.md only (minimal fallback)
}

Why SVN for GitHub?

  • GitHub supports SVN protocol for folder-level access
  • Much faster than cloning entire repositories
  • No Git history overhead
  • Perfect for downloading specific skill folders

Examples

Example 1: Installing with SVN (Full Download)

User: I need help with Python testing
Assistant: [Searches database and shows results]
1. pytest-helper (by python-community)
   ⭐ 1,250 stars | 🔀 342 forks
   📝 Helps write and run pytest tests with fixtures and assertions...
   🔗 https://github.com/python-community/pytest-helper

User: Install the first one
Assistant: [Detects SVN, downloads complete folder with all scripts]
   ✓ SVN detected - using efficient folder download
   ✓ Method used: SVN
   ✓ Files installed: SKILL.md, pytest_runner.py, fixtures.py, README.md

Example 2: Fallback to Git Sparse Checkout

User: Find me skills for A股
Assistant: [Shows Chinese stock market skills]

User: Install technical-indicators
Assistant: [SVN not found, uses Git sparse checkout]
   ✓ Git detected - using sparse checkout
   ✓ Method used: Git Sparse Checkout
   ✓ Files installed: SKILL.md, skill.py, references/

Example 3: Search by author

User: Show me skills by pytorch
Assistant: [Searches and displays PyTorch organization skills]

Example 4: Search by functionality

User: Find skills for code review
Assistant: [Searches for code review related skills]

Commands

The skill responds to natural language requests like:

  • "Find skills for [topic]"
  • "Search for [keyword] skills"
  • "Show me skills by [author]"
  • "I need help with [task]"
  • "Install skill number [N]"
  • "Install [skill-name]"

Notes

  • Skills are installed to ~/.claude/skills/[skill-name]/SKILL.md
  • After installation, restart Claude Code to load the new skill
  • The database includes skills with GitHub stats (stars, forks) for quality reference
  • Search results are ranked by relevance and popularity

Requirements

  • Node.js runtime (>= 14.0.0)
  • Internet connection for downloading skills from GitHub
  • Skills database file (all_skills_with_cn.json)
  • Recommended: SVN client for optimal installation

- Windows: choco install svn or TortoiseSVN - Mac: brew install svn - Linux: apt-get install subversion

  • Alternative: Git client (usually pre-installed)

Performance Comparison

MethodSpeedFiles DownloadedDisk UsageRequirements
SVN Export⚡⚡⚡ FastAll skill filesMinimalSVN client
Git Sparse Checkout⚡⚡ MediumAll skill filesSmall.git overheadGit
SKILL.md Only⚡ Slow (HTTP)Only SKILL.mdMinimalNone

Recommendation: Install SVN for the best experience!

Database Statistics

  • Total Skills: 31,767
  • Skills with Chinese translations: 31,752 (99.95%)
  • Skills from diverse authors and organizations
  • Regular updates from GitHub repositories

Created: 2025-12-26 Version: 2.0.0 Updates in v2.0:

  • Added SVN export support for efficient folder downloads
  • Added Git sparse checkout as fallback method
  • Now downloads complete skill folders, not just SKILL.md
  • Automatic method detection and selection
  • Enhanced error handling and troubleshooting tips

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Antigravity

26.6%
按下载量换算44

Claude Code

21.41%
按下载量换算35

Gemini CLI

17.6%
按下载量换算29

OpenCode

13.2%
按下载量换算22

Codex

9.02%
按下载量换算15

trae

3.23%
按下载量换算5

安全审计

Gen Agent Trust Hub

未通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills