affaan-m/ECC

skill-scout

Search existing local, marketplace, GitHub, and web skill sources before creating a new skill. Use when the user wants to create, build, fork, or find a skill for a workflow.

86CollectingNetwork access
See how to use itView GitHub source
npx skills add https://github.com/affaan-m/ECC --skill "skills/skill-scout"
Automated source guide

Source checked Jul 28, 2026·Refresh due Oct 26, 2026

Reorganized from the pinned upstream SKILL.md

Turn skill-scout's source instructions into a guide you can follow

According to the pinned SKILL.md from affaan-m/ECC: 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.

npx skills add https://github.com/affaan-m/ECC --skill "skills/skill-scout"
Check the pinned source

Best fit

  • The user says "create a skill", "build a skill", "make a skill", or "new
  • The user asks "is there a skill for X?" or "does a skill exist that does Y?"
  • The user describes a workflow and you are about to suggest creating a new

Bring this context

  • A concrete task that matches the documented purpose of skill-scout.
  • The files, examples, or context the task depends on.
  • Your constraints, target environment, and definition of done.

Expected outputs

  • Exact keyword match in the skill name.
  • Keyword or synonym match in description.
  • Local installed or marketplace source.

Key source sections

Read skill-scout through these 5 source sections

Sections are extracted automatically from the pinned SKILL.md and link back to the source.

01

Step 1 - Capture Intent

The task the skill should perform.

SKILL.md · Step 1 - Capture Intent
The task the skill should perform.The trigger conditions for using it.The domain, tools, frameworks, or data sources involved.
02

Step 2 - Search Local Sources

Search installed and marketplace skill names first. Local sources are preferred because they are already part of the user's environment.

SKILL.md · Step 2 - Search Local Sources
Search installed and marketplace skill names first. Local sources are preferred because they are already part of the user's environment.Then search frontmatter descriptions:
03

Step 3 - Search Remote Sources

Use available GitHub and web search tools. Prefer concise queries:

SKILL.md · Step 3 - Search Remote Sources
Use available GitHub and web search tools. Prefer concise queries:For web search, use at most three targeted queries such as:
04

Step 4 - Vet External Matches

Before recommending any external skill for adoption or forking:

SKILL.md · Step 4 - Vet External Matches
Read the SKILL.md frontmatter and instructions.Look for unexpected shell commands, file writes, network calls, credentialCheck whether the repository appears maintained.
05

Step 5 - Rank Results

1. Exact keyword match in the skill name. 2. Keyword or synonym match in description. 3. Local installed or marketplace source. 4. Maintained GitHub source with recent activity. 5. Web-only mention.

SKILL.md · Step 5 - Rank Results
Exact keyword match in the skill name.Keyword or synonym match in description.Local installed or marketplace source.

SkillSignal prompt templates

Provide the task, context, and acceptance criteria

These prompts were written by SkillSignal from the source structure; they are not upstream text.

Task-start prompt

Confirm source fit, inputs, and outputs before acting.

Use skill-scout to help me with: [specific task]. Context: [files, data, or background]. Constraints: [environment, scope, and prohibited actions]. Before acting, check the pinned SKILL.md and explain which sections apply, what inputs are still missing, and what you will deliver.

Source-guided execution

Make the Agent explicitly follow the key extracted sections.

Apply the pinned skill-scout source to [task]. Pay particular attention to these source sections: “Step 1 - Capture Intent”, “Step 2 - Search Local Sources”, “Step 3 - Search Remote Sources”, “Step 4 - Vet External Matches”, “Step 5 - Rank Results”. Preserve the important decision at each step. Mark facts not covered by the source as “needs confirmation” instead of inventing them. Then verify the result against my acceptance criteria: [criteria].

Result-review prompt

Check omissions, permissions, and source drift before delivery.

Review the current skill-scout result: (1) does it satisfy the original task; (2) were any applicable steps or limits in the pinned SKILL.md missed; (3) did it perform any unauthorized file, command, network, or data action; and (4) which conclusions remain unverified? List issues first, then fix only what the source or user authorization supports.

Output checklist

Verify each item before delivery

The task matches the purpose documented in the SKILL.md.

The source section “Step 1 - Capture Intent” has been checked.

The source section “Step 2 - Search Local Sources” has been checked.

The source section “Step 3 - Search Remote Sources” has been checked.

The source section “Step 4 - Vet External Matches” has been checked.

Inputs, constraints, and acceptance criteria are explicit.

Unverified facts, compatibility, and outcome claims are clearly marked.

Any file, command, network, or data action has been reviewed.

Choose a different workflow

When another Skill is the better fit

FAQ

What does skill-scout do?

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.

How do I start using skill-scout?

The catalog detected this source-specific install command: npx skills add https://github.com/affaan-m/ECC --skill "skills/skill-scout". Inspect the command and pinned source before running it.

Which Agent platforms does it declare?

No dedicated Agent platform is declared in the pinned source record.

Repository stars
234,327
Repository forks
35,711
Quality
86/100
Source repository last pushed

Quality breakdown

Based on traceable docs and repository signals; stars are not treated as quality.

86/100
Documentation28/30
Specificity22/25
Maintenance20/20
Trust signals16/25

Compare before choosing

Related Agent Skills and source variants

These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.

View original Skill.mdThis page is parsed directly from the repository SKILL.md without editorial rewriting. Collected: Jul 28, 2026 · about 3 min

Skill Scout

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.

When to Use

  • The user says "create a skill", "build a skill", "make a skill", or "new skill".
  • The user asks "is there a skill for X?" or "does a skill exist that does Y?"
  • The user describes a workflow and you are about to suggest creating a new skill.
  • The user wants to fork or extend an existing skill.

If the user explicitly says to skip search or create from scratch, acknowledge that and proceed with the requested creation workflow.

How It Works

Step 1 - Capture Intent

Extract:

  • The task the skill should perform.
  • The trigger conditions for using it.
  • The domain, tools, frameworks, or data sources involved.
  • Three to five search keywords plus useful synonyms.

Step 2 - Search Local Sources

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

Step 3 - Search Remote Sources

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

Step 4 - Vet External Matches

Before recommending any external skill for adoption or forking:

  • Read the SKILL.md frontmatter and instructions.
  • Look for unexpected shell commands, file writes, network calls, credential handling, or package installs.
  • Check whether the repository appears maintained.
  • Prefer copying into a fresh local branch and reviewing the diff over editing marketplace originals.

Step 5 - Rank Results

Rank candidates by:

  1. Exact keyword match in the skill name.
  2. Keyword or synonym match in description.
  3. Local installed or marketplace source.
  4. Maintained GitHub source with recent activity.
  5. Web-only mention.

Cap the final list at 10 results.

Step 6 - Present Decision Options

Give the user a short table:

OptionMeaning
Use existingInvoke or install a matching skill as-is.
Fork or extendCopy the closest skill and modify it.
Create freshBuild 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.

Examples

Result Table

| # | 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 |

User-Facing Summary

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.

Anti-Patterns

  • Do not jump directly to new skill creation when a search is reasonable.
  • Do not install external skills without reading them first.
  • Do not present a long unranked list of weak matches.
  • Do not treat web-only mentions as trusted sources.
  • Do not edit installed marketplace originals in place.

Related

  • 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.
Source repo
affaan-m/ECC
Skill path
skills/skill-scout/SKILL.md
Commit SHA
4e973d3eaf92
Repository license
MIT
Data collected