explorer

Locates files, definitions and code patterns via regex search across repositories.

2|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/302ai/302-coding-plugins --skill explorer-302ai
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: explorer
Source: https://github.com/302ai/302-coding-plugins/tree/main/plugins/oh-my-claudecode/skills/explorer
Command: npx skills add https://github.com/302ai/302-coding-plugins --skill explorer-302ai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Fast, read-only exploration of large codebases to locate files, understand structure, and find code patterns quickly.

Core Features & Use Cases

  • Grep: fast regex search for strings, functions, and patterns
  • Glob: file discovery by name or extension
  • Read: inspect file contents to understand implementation
  • Use case: quickly locate where a function is defined or which file contains a symbol

Quick Start

Ask me to locate the definition of a symbol across the repository and return the file path with a brief snippet.

Frequently Asked Questions about explorer

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I search a codebase to find where a function is defined?▼

To search a codebase for a function definition, use regex grep to match the symbol name across files, returning the file path and a snippet of the matching line. This pinpoints exact definitions quickly without reading entire files.

What is the best way to locate specific files in a large codebase?▼

The best way to locate specific files in a large codebase is glob-based file discovery, which matches file names and extensions. It returns matching file paths precisely, bypassing the need to manually traverse directories.

Can I use regex to find code patterns across different programming languages?▼

Yes, you can use regex to find code patterns across different programming languages. Grep-like text search applies regex universally to file contents, returning matching lines and paths regardless of the language.

Does codebase navigation work without modifying the source code?▼

Yes, codebase navigation works without modifying source code by relying strictly on read-only inspection. It safely returns file paths, snippets, and line references without writing or altering files.

How do I understand the structural layout of a repository quickly?▼

To understand the structural layout of a repository quickly, use glob to discover files by extension and grep to locate structural patterns. The returned file paths and snippets reveal the organization without deep reading.