Agent skill
searching-code
Intelligent codebase search via WarpGrep. Use when user asks "how does X work", "trace flow", "find all implementations", "understand codebase", or needs cross-file exploration in large repos (1000+ files).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/searching-code
SKILL.md
Intelligent Code Search with WarpGrep
WarpGrep is an RL-trained search agent that reasons about code, not just pattern matches.
How It Works
- 8 parallel searches per turn (explores multiple hypotheses)
- 4 reasoning turns (follows causal chains across files)
- F1=0.73 in ~3.8 steps (vs 12.4 for standard search)
When to Use WarpGrep
| Use WarpGrep | Use Built-in Grep |
|---|---|
| "How does auth flow work?" | "Find class UserService" |
| "Trace data from API to DB" | Simple regex patterns |
| "Find all error handling" | "Where is X defined?" |
| Large repos (1000+ files) | Known file patterns |
| Before major refactoring | Quick needle lookups |
Query Formulation
Good queries (reasoning required):
"How does authentication flow from the login handler to the database?"
"Find all places where user permissions are checked"
"Trace the request lifecycle from router to response"
Bad queries (use Grep instead):
"Find UserService" → use Grep
"Search for 'import React'" → use Grep
Workflow
- Formulate query: Describe WHAT you want to understand, not just WHAT to find
- Run WarpGrep:
mcp__morphllm__warpgrep_codebase_search - Interpret results: Ranked snippets with file paths and line numbers
- Follow up: Read specific files for deeper understanding
Parameters
search_string: "natural language description of what to find"
repo_path: "/absolute/path/to/repo"
Tips
- Be specific about the behavior or flow you're investigating
- Include context: "in the API layer" or "during startup"
- WarpGrep handles ambiguity better than exact pattern matching
- Results include surrounding context for understanding
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?