Agent Skills: file-searcher

Grep the workspace for a pattern using file_search.

UncategorizedID: aevatarAI/aevatar-agent-framework/file-searcher

Install this agent skill to your local

pnpm dlx add-skill https://github.com/aevatarAI/aevatar-agent-framework/tree/HEAD/examples/SkillsMCPUnifiedDemo/agent_skills/file-searcher

Skill Files

Browse the full folder contents for file-searcher.

Download Skill

Loading file tree…

examples/SkillsMCPUnifiedDemo/agent_skills/file-searcher/SKILL.md

Skill Metadata

Name
file-searcher
Description
Grep the workspace for a pattern using file_search.

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.