在创建前检索本地与在线技能来源,快速找到可复用技能
复制安装指令,让 AI 自动完成配置 · 推荐新手
请帮我安装 askskill 上的 "skill-scout" 技能: 1. 下载 https://raw.githubusercontent.com/affaan-m/ECC/main/skills/skill-scout/SKILL.md 2. 保存为 ~/.claude/skills/skill-scout/SKILL.md 3. 装好后重载技能,告诉我可以用了
我想做一个用于整理会议纪要并生成待办事项的技能。请先搜索本地、市场、GitHub 和网页来源,看看是否已有可直接使用或可 fork 的技能,并按来源列出名称、链接、功能差异和推荐方案。
返回候选技能清单、来源链接、能力对比,以及直接使用、fork 或新建的建议。
我要搭建一个内容发布工作流,包括抓取素材、生成摘要、输出社媒文案。请先搜索现有技能来源,找出能覆盖这些步骤的技能组合,并说明每个技能适合放在哪个环节。
给出可组合的技能方案、每步对应技能及整体工作流建议。
我准备新建一个用于分析 GitHub issue 并自动生成修复建议的技能。请先全面搜索相关现有技能,判断是否已有相似方案,并总结缺口、可复用部分和新技能应重点补足的能力。
输出相似技能调研结果、能力缺口分析,以及是否应新建技能的结论。
Use this skill before creating a new skill. The goal is to avoid duplicating existing community or marketplace work, while still vetting anything external before adoption.
Source: salvaged from stale community PR #1232 by redminwang.
If the user explicitly says to skip search or create from scratch, acknowledge that and proceed with the requested creation workflow.
Extract:
Search installed and marketplace skill names first. Local sources are preferred because they are already part of the user's environment.
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"
Then search frontmatter descriptions:
grep -RilE "keyword|synonym" ~/.claude/skills ~/.claude/plugins/marketplaces 2>/dev/null
Use available GitHub and web search tools. Prefer concise queries:
gh search repos "claude code skill keyword" --limit 10 --sort stars
gh search code "name: keyword" --filename SKILL.md --limit 10
For web search, use at most three targeted queries such as:
"claude code skill" keyword
"SKILL.md" keyword
"everything-claude-code" keyword
Before recommending any external skill for adoption or forking:
SKILL.md frontmatter and instructions.Rank candidates by:
Cap the final list at 10 results.
Give the user a short table:
| Option | Meaning |
|---|---|
| Use existing | Invoke or install a matching skill as-is. |
| Fork or extend | Copy the closest skill and modify it. |
| Create fresh | Build a new skill after confirming no close match exists. |
Only create a new skill after the user chooses that path or after the search finds no close match.
| # | Skill | Source | Why it matches | Gap |
| --- | --- | --- | --- | --- |
| 1 | article-writing | Local ECC | Drafts articles and guides | Not focused on release notes |
| 2 | content-engine | Local ECC | Multi-format content workflow | Heavier than needed |
| 3 | blog-writer | GitHub | Blog writing skill with recent commits | Needs security review |
I found two close local matches and one external candidate. The closest fit is
`article-writing`; it covers drafting and revision, but it does not include the
release-note checklist you asked for. I can either use it as-is, fork it into a
release-note variant, or create a fresh skill.
…
通过双评审智能体对结果进行对抗式校验,提升输出发布前的可靠性
将当前对话中的可复用流程整理并保存为可反复调用的技能文件