Help us improve
Share bugs, ideas, or general feedback.
Searches local, marketplace, GitHub, and web sources for existing Claude Code skills before creating new ones. Prevents duplication by ranking candidates by relevance and prompting user to use, fork, or create.
npx claudepluginhub aaione/everything-claude-code-zhHow this skill is triggered — by the user, by Claude, or both
Slash command
/everything-claude-code:skill-scoutThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
在创建新技能之前使用此技能。目标是避免重复现有的社区或市场工作,同时在采纳任何外部内容之前进行审查。
Searches local, marketplace, GitHub, and web skill sources to avoid duplicating existing skills. Indexed results are ranked and presented with fork/extend options.
Searches tiered sources like Anthropic repos and GitHub for Claude Code skills matching a query, fetches SKILL.md files, applies toothbrush filter for quality, and outputs comparison tables with verdicts.
Searches Claude Code skills across local ~/.claude/skills, skills.sh CLI directory, and GitHub fallback. Outputs markdown table and JSON with install info, sorted by source.
Share bugs, ideas, or general feedback.
在创建新技能之前使用此技能。目标是避免重复现有的社区或市场工作,同时在采纳任何外部内容之前进行审查。
来源:由 redminwang 从过时的社区 PR #1232 中抢救。
如果用户明确表示跳过搜索或从头创建,确认后继续请求的创建工作流。
提取:
先搜索已安装和市场技能名称。优先使用本地来源,因为它们已经是用户环境的一部分。
find ~/.claude/skills -maxdepth 2 -name SKILL.md 2>/dev/null | grep -iE "keyword|synonym"
find ~/.claude/plugins/marketplaces -path '*/skills/*/SKILL.md' 2>/dev/null | grep -iE "keyword|synonym"
然后搜索 frontmatter 描述:
grep -RilE "keyword|synonym" ~/.claude/skills ~/.claude/plugins/marketplaces 2>/dev/null
使用可用的 GitHub 和 Web 搜索工具。优先使用简洁的查询:
gh search repos "claude code skill keyword" --limit 10 --sort stars
gh search code "name: keyword" --filename SKILL.md --limit 10
对于 Web 搜索,最多使用三个针对性查询,如:
"claude code skill" keyword
"SKILL.md" keyword
"everything-claude-code" keyword
在推荐任何外部技能进行采纳或分叉之前:
SKILL.md frontmatter 和说明。按以下标准排名候选:
将最终列表限制在 10 个结果以内。
给用户一个简短的表格:
| 选项 | 含义 |
|---|---|
| 使用现有的 | 直接调用或安装匹配的技能。 |
| 分叉或扩展 | 复制最接近的技能并修改。 |
| 全新创建 | 确认没有接近的匹配后构建新技能。 |
仅在用户选择该路径或搜索未找到接近的匹配时才创建新技能。
| # | 技能 | 来源 | 匹配原因 | 差距 |
| --- | --- | --- | --- | --- |
| 1 | article-writing | 本地 ECC | 起草文章和指南 | 不专注于发布说明 |
| 2 | content-engine | 本地 ECC | 多格式内容工作流 | 比需要的更重 |
| 3 | blog-writer | GitHub | 有近期提交的博客写作技能 | 需要安全审查 |
我找到了两个接近的本地匹配和一个外部候选。最接近的匹配是
`article-writing`;它涵盖起草和修订,但不包含你要求的发布说明
检查清单。我可以按原样使用、分叉为发布说明变体,或创建全新技能。
search-first - 通用的搜索先行工作流。skill-stocktake - 审计已安装技能的健康状况、重复和差距。agent-sort - 分类和组织现有的智能体和技能。