explore

Solid

Explore the codebase to map structure, symbols, and dependencies. Use when the user says "explore", "find where X is", "how does X work in the code", or "map the codebase".

AI & Automation 33 stars 0 forks Updated yesterday Apache-2.0

Install

View on GitHub

Quality Score: 83/100

Stars 20%
51
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Explore command Read-only codebase orientation. Emit architecture, pattern, tooling, and dependency summaries for a repo-local task. ## When to apply / NOT **Apply:** - Pre-implementation codebase orientation (feature, fix, refactor) - File and symbol mapping: "where is X defined", "what uses Y" - Architectural surveys: module boundaries, control flow, coupling - Dependency tracing: import graphs, transitive deps, config files **NOT apply:** - External library docs, SDK APIs, or framework behavior; use a doc-retrieval workflow instead - User wants a packed repo file as a deliverable artifact - Implementation, editing, or committing anything ## Process 1. **Scope**: parse the task. Identify files/dirs/concerns. State scope explicitly before dispatching. 2. **Dispatch decision**: for multi-file or uncertain tasks, dispatch Explore agent(s) instead of reading directly. Escalation: 1 agent for single-concern known scope; 3 agents for multiple concerns or unknown scope; 5 agents for cross-module or architectural survey. Auto-skip (direct reads allowed) only for single file under 50 LOC. 3. **Discovery**: token-efficient flags mandatory: - File discovery: `fd -e <ext> --max-results 50` - Symbol search: `ast-grep run -p 'PATTERN' -l <lang> -C 1` or `git --no-pager grep -n -C 2 'pattern'` - Content preview: `bat -P -p -n -r START:END file` or `Read -offset -limit` - Directory structure: `eza --tree --level=2` 4. **Synthesis**: emit all Required Output sections. 5....

Details

Author
OutlineDriven
Repository
OutlineDriven/odin-claude-plugin
Created
8 months ago
Last Updated
yesterday
Language
Python
License
Apache-2.0

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category