Advanced code search tool that finds definitions, usages, tests, and references across the entire codebase. Use when you need to understand how a symbol is used throughout the project.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add mattnigh/skills_collection --skill collection --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Collection?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/mattnigh-collection-9cc7dccf)More formats (shields.io, HTML) on the badges page.
---
name: search
description: Advanced code search tool that finds definitions, usages, tests, and references across the entire codebase. Use when you need to understand how a symbol is used throughout the project.
---
# Code Search
Intelligent code search that finds all references to symbols (functions, classes, variables, etc.) across code, tests, examples, benchmarks, and fuzz tests.
## Instructions
1. Run the search command with a symbol name:
```bash
uv run python .claude/skills/search/search.py <symbol>
```
## Features
- Finds function/class definitions
- Locates all usages and references
- Searches across:
- Source files (src/, include/)
- Test files (tests/)
- Examples (examples/)
- Benchmarks (benchmarks/)
- Fuzz tests (fuzz/)
- Shows context around each match
- Groups results by category
## Examples
Search for a function:
```bash
uv run python .claude/skills/search/search.py NetworkClient
```
Search for a method:
```bash
uv run python .claude/skills/search/search.py connect
```
Search for a variable:
```bash
uv run python .claude/skills/search/search.py server_address
```
## Notes
- More powerful than simple grep - understands C++ code structure
- Shows both definitions and all usages
- Helps trace how code flows through the system

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!