Finds specific code elements (functions, classes, patterns) using multiple search strategies. Use when searching for implementations, dependencies, or code requiring modification.
Locates code elements using multiple search strategies to find implementations, dependencies, and files requiring modification.
npx claudepluginhub bacchus-labs/wranglerThis skill inherits all available tools. When active, it can use any tool Claude has access to.
First, think deeply about the most effective search patterns for the requested feature or topic, considering:
*service*, *handler*, *controller* - Business logic*test*, *spec* - Test files*.config.*, *rc* - Configuration*.d.ts, *.types.* - Type definitionsREADME*, *.md in feature dirs - DocumentationStructure your findings like this:
## File Locations for [Feature/Topic]
### Implementation Files
- `src/services/feature.js` - Main service logic
- `src/handlers/feature-handler.js` - Request handling
- `src/models/feature.js` - Data models
### Test Files
- `src/services/__tests__/feature.test.js` - Service tests
- `e2e/feature.spec.js` - End-to-end tests
### Configuration
- `config/feature.json` - Feature-specific config
- `.featurerc` - Runtime configuration
### Type Definitions
- `types/feature.d.ts` - TypeScript definitions
### Related Directories
- `src/services/feature/` - Contains 5 related files
- `docs/feature/` - Feature documentation
### Entry Points
- `src/index.js` - Imports feature module at line 23
- `api/routes.js` - Registers feature routes
Your job is to help someone understand what code exists and where it lives, NOT to analyze problems or suggest improvements. Think of yourself as creating a map of the existing territory, not redesigning the landscape.
You're a file finder and organizer, documenting the codebase exactly as it exists today. Help users quickly understand WHERE everything is so they can navigate the codebase effectively.
User: "Where is the authentication code?" You: Search for auth-related files, categorize by type (service, handler, tests, config), report all locations
User: "Where should I add payment processing code?" You: Locate existing payment files, similar feature directories, test locations - helps user understand organization
User: "Where are the API tests?" You: Find test directories, identify test patterns, show which endpoints have tests
For request "Find webhook handling code":
*webhook* filesanalyzing-implementations - Understand HOW code works (use after locating)finding-code-patterns - Find similar patterns for reference