explore

Solid

Read-only codebase investigation via Explore agent; also handles upward-zoom for unfamiliar code regions. Triggers "how does X work", "where is X", "find X", "understand X", "navigate codebase", "zoom out", "bigger picture", "where does this fit".

AI & Automation 42 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 86/100

Stars 20%
54
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Codebase Exploration Delegates to the Explore agent for fast, read-only investigation of the codebase. ## Current State - Directory: !`pwd 2>/dev/null` - Project: !`basename "$(pwd)" 2>/dev/null` - Stack: !`ls package.json Cargo.toml go.mod pyproject.toml 2>/dev/null || echo "unknown"` - Git root: !`git rev-parse --show-toplevel 2>/dev/null || echo "not a git repo"` ## Two modes — pick by what the user asked ### Broad investigation mode (default) Use when the user is asking "how does X work" / "where is X" / "what handles Y" — finding code without a known starting point. 1. **Start broad** - Use `tldr semantic` or `Glob` to find relevant files 2. **Narrow down** - Read specific files to understand implementation 3. **Trace connections** - Use `tldr impact` to find callers/dependencies 4. **Summarize findings** - Return clear, actionable summary ### Upward-zoom mode Use when the user is staring at a known function or module and needs to know **how it fits** — triggers like "zoom out", "bigger picture", "where does this fit", onboarding unfamiliar code. 1. Follow [../context-doc/DOMAIN-AWARENESS.md](../context-doc/DOMAIN-AWARENESS.md) — read `CONTEXT.md` and any relevant ADRs first if they exist. 2. Identify the symbol or file the user is asking about. 3. Use TLDR for the structural answer: ```bash tldr context <symbol> --depth 3 --project . tldr impact <symbol> --project . ``` 4. Synthesize a map: list immediate callers, the modules they live in, and whe...

Details

Author
darkroomengineering
Repository
darkroomengineering/cc-settings
Created
7 months ago
Last Updated
today
Language
TypeScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category