From ecc
Searches local, marketplace, GitHub, and web skill sources to avoid duplicating existing skills. Indexed results are ranked and presented with fork/extend options.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ecc:skill-scoutThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill before creating a new skill. The goal is to avoid duplicating
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.
search-first - General search-before-building workflow.skill-stocktake - Audit installed skills for health, duplicates, and gaps.agent-sort - Categorize and organize existing agents and skills.npx claudepluginhub affaan-m/ecc --plugin eccSearches 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.
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.
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.