Claude-skill-registry file-searcher

Grep the workspace for a pattern using file_search.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/file-searcher" ~/.claude/skills/majiayu000-claude-skill-registry-file-searcher && rm -rf "$T"
manifest: skills/data/file-searcher/SKILL.md
source content

When to use

  • User asks "where is X used/defined" or "find occurrences of pattern".

Procedure

  1. Translate the question into a concise regex pattern.
  2. Call
    file_search
    :
    • pattern
      : the regex
    • optional
      extensions
      : narrow to
      .cs,.md,.proto
      etc
  3. Return results as a short list: file + line + snippet.
  4. If truncated, narrow the search (extensions / more specific pattern) and repeat.