Agent skill · Design & Presentation

scout-repos

Fetch .claude/ configs from curated repos in sources.yml, compare against dotforge template, report novel patterns.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill scout-repos --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/analysis/scout-repos/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Scout Repos Review curated public repos for Claude Code configuration patterns worth adopting. ## Step 0: Discover tools WebFetch and WebSearch are deferred tools — they may not be loaded yet. Run `ToolSearch("WebFetch WebSearch")` to ensure both tools are available before proceeding. ## Step 1: Load sources Read `$DOTFORGE_DIR/practices/sources.yml`. Build a list of repos with their focus areas. ## Step 2: Fetch each repo's config For each source, use `gh` CLI to fetch their Claude Code configuration files: ```bash # Fetch CLAUDE.md gh api repos/{owner}/{repo}/contents/CLAUDE.md --jq '.content' | base64 -d 2>/dev/null # Fetch .claude/ directory listing gh api repos/{owner}/{repo}/contents/.claude --jq '.[].name' 2>/dev/null # Fetch specific files gh api repos/{owner}/{repo}/contents/.claude/settings.json --jq '.content' | base64 -d 2>/dev/null gh api repos/{owner}/{repo}/contents/.claude/rules --jq '.[].name' 2>/dev/null ``` If `gh` fails (rate limit, private repo), try WebFetch on the raw GitHub URL: ``` https://raw.githubusercontent.com/{owner}/{repo}/main/CLAUDE.md https://raw.githubusercontent.com/{owner}/{repo}/main/.claude/settings.json ``` If both fail, skip the repo and

What's inside
Steps it walks through
  1. Step 0: Discover tools
  2. Step 1: Load sources
  3. Step 2: Fetch each repo's config
  4. Step 3: Analyze patterns
  5. Hooks
  6. Settings
  7. Rules
  8. Agents
  9. Commands/Skills
  10. Step 4: Compare against dotforge
  11. Step 5: Report
  12. Constraints
Ships with 1 file
  • metadata.json
Commands it runs
Fetch CLAUDE.md
gh api repos/{owner}/{repo}/contents/CLAUDE.md --jq '.content' | base64 -d 2>/dev/null
Fetch .claude/ directory listing
gh api repos/{owner}/{repo}/contents/.claude --jq '.[].name' 2>/dev/null
Fetch specific files
gh api repos/{owner}/{repo}/contents/.claude/settings.json --jq '.content' | base64 -d 2>/dev/null
gh api repos/{owner}/{repo}/contents/.claude/rules --jq '.[].name' 2>/dev/null
More from claude-skill-registry
All skills →
About this skill
What does the scout-repos skill do?

Fetch .claude/ configs from curated repos in sources.yml, compare against dotforge template, report novel patterns.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill scout-repos --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going