Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
aaaaqwq avatar

Skill Search

  • 7 installs
  • 82 repo stars
  • Updated August 2, 2026
  • aaaaqwq/agi-super-skills

skill-search is a Claude Code skill that searches GitHub and skill marketplaces for high-star SKILL.md skills and installs the chosen one into the global skills directory.

About

skill-search is a Claude Code skill that finds and installs other Claude Code skills. It searches curated awesome-list repos, skill marketplaces (SkillsMP, ClawdHub), and the GitHub API, ranks results by star count, then clones and installs the chosen skill into the global skills directory. It applies strict filtering rules to prefer high-star, deduplicated skills.

  • Searches GitHub, awesome-lists, and skill marketplaces for SKILL.md skills
  • Ranks candidates by GitHub stars and dedupes before install
  • Clones and installs the chosen skill into ~/.claude/skills/

Skill Search by the numbers

  • 7 all-time installs (skills.sh)
  • Ranked #558 of 781 Skill Development skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
At a glance

skill-search capabilities & compatibility

Free; uses git clone and public GitHub/marketplace search.

Capabilities
skill search · skill install · catalog discovery
Works with
github
Use cases
research · web search
Pricing
Free
From the docs

What skill-search says it does

从多个渠道搜索、筛选、安装 Claude Code Skills。**优中择优,高 stars 优先。**
SKILL.md
cp -r {skill_dir} ~/.claude/skills/{name}/ # 全局
SKILL.md
npx skills add https://github.com/aaaaqwq/agi-super-skills --skill skill-search

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs7
repo stars82
Last updatedAugust 2, 2026
Repositoryaaaaqwq/agi-super-skills

What it does

Use when a developer wants to discover and install a new Claude Code skill from GitHub or skill marketplaces.

Who is it for?

Finding and installing new Claude Code skills ranked by GitHub stars.

When should I use this skill?

When the user asks to search for or install a new skill for a given task or platform.

What you get

A ranked shortlist of high-star skills, with the chosen one cloned and installed into the skills directory.

  • ranked skill shortlist
  • installed skill

By the numbers

  • 12+ curated source repos listed
  • Star filter: >100 preferred, >10 secondary, <10 last resort

Files

SKILL.mdMarkdownGitHub ↗

Skill 搜索与安装助手(v2)

从多个渠道搜索、筛选、安装 Claude Code Skills。优中择优,高 stars 优先。

搜索策略(按优先级执行)

第一层:精选聚合仓库(本地缓存优先)

先从这些顶级仓库搜索,覆盖面最广、质量最高:

仓库⭐ Stars说明搜索方式
hesreallyhim/awesome-claude-code24.8K官方级精选合集clone → find SKILL.md
sickn33/antigravity-awesome-skills14.7K900+ Skills 大全clone → find SKILL.md
VoltAgent/awesome-agent-skills7.8K380+ 社区 skillsclone → find SKILL.md
VoltAgent/awesome-claude-code-subagents11.2K100+ 子agentclone → find SKILL.md
travisvn/awesome-claude-skills7.6K精选资源列表README 提取链接
jeremylongshore/claude-code-plugins-plus-skills1.4K分类插件+skillsclone → find SKILL.md
heilcheng/awesome-agent-skills2.3K多agent工具教程README 提取链接
rohitg00/awesome-claude-code-toolkit545135 agents + 35 skillsclone → find SKILL.md
menkesu/awesome-pm-skills18528个PM技能clone → find SKILL.md
ramihassen95/claude-builder-templateTDD/subagent/debugclone → find SKILL.md
aAAaqwq/AGI-Super-Skills自有 skill 仓库(首选)直接引用
VoltAgent/awesome-openclaw-skillsOpenClaw 专属 skillsclone → find SKILL.md
VoltAgent/awesome-claude-code-subagents11.2K100+ 子agent(可分配给团队agent)clone → find SKILL.md

缓存机制:首次搜索时 clone 到 /tmp/skill-cache/,后续搜索复用(同一会话内)。

CACHE="/tmp/skill-cache"
mkdir -p "$CACHE"
# 只在不存在时 clone
[ -d "$CACHE/awesome-claude-code" ] || git clone --depth 1 https://github.com/hesreallyhim/awesome-claude-code.git "$CACHE/awesome-claude-code"
# 搜索
find "$CACHE" -name "SKILL.md" | xargs grep -li "{关键词}" 2>/dev/null

第二层:网页搜索平台

当聚合仓库未找到时,搜索这些 skill 市场网站:

平台URL搜索方式
SkillsMPhttps://skillsmp.comweb_fetch 抓取搜索页
ClawdHubhttps://clawhub.comweb_fetch 抓取
SkillKithttps://skillkit.dev (如存在)web_fetch
# 示例:搜索 SkillsMP
web_fetch("https://skillsmp.com/search?q={关键词}")

第三层:GitHub 全局搜索

聚合仓库和网站都没有时,GitHub API 兜底:

# 搜索关键词组合(按效果排序)
"claude skill {关键词}" sort:stars
"SKILL.md {关键词}" sort:stars  
"{关键词} agent skill" sort:stars

筛选规则(严格执行):

  • ⭐ > 100 优先展示
  • ⭐ > 10 次选
  • ⭐ < 10 仅在无更好选择时展示
  • 必须包含 SKILL.md 文件
  • 同类 skill 只展示最高星的 1-2 个

结果展示

每个结果包含:

📦 {技能名称}
📝 {一句话描述}
⭐ {Stars} | 🔗 {仓库URL}
📂 {SKILL.md 路径}

排序:⭐ Stars 降序,同分看最近更新时间。

展示 Top 5-10 个结果,让用户选择。

安装流程

1. 去重检查ls ~/.claude/skills/ ~/clawd/skills/ 是否已存在 2. clone + 定位git clone --depth 1find -name SKILL.md 3. 双路径安装

   cp -r {skill_dir} ~/.claude/skills/{name}/     # 全局
   cp -r {skill_dir} ~/clawd/skills/{name}/       # workspace(团队共享)

4. 清理rm -rf {temp_dir} 5. 确认:输出安装路径 + 提示重启生效

依赖处理

  • Python → 提示 pip install
  • Node.js → 提示 npm install
  • 需要 API key → 明确告知

搜索技巧

用户说搜索关键词
"找个写代码的"coding, development, code-generation
"SEO相关"seo, content-writing, programmatic-seo
"UI设计"ui-ux, frontend-design, web-design
"自动化XX平台"{platform}-automation
"提高编程能力"tdd, code-review, debugging, subagent, coding-agent

错误处理

  • GitHub rate limit → 切换到 web_fetch 搜索
  • clone 失败 → 检查网络,重试一次
  • SKILL.md 无效 → 跳过,标记 ⚠️
  • 无结果 → 建议用 skillforge 自动生成

Related skills

FAQ

How does skill-search rank results?

It sorts by GitHub stars in descending order, prioritizing skills with more than 100 stars and showing only the top-starred one or two per category.

Where does it install skills?

It clones and copies the skill into ~/.claude/skills/ (and a workspace skills directory) after a dedupe check.

Skill Developmentagentsresearch

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.