exploration
Codebase exploration techniques for rapid discovery, architecture analysis, pattern detection, and dependency mapping.
npx skills add majiayu000/claude-skill-registry --skill exploration-fusengine-agents --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
**Session:** ${CLAUDE_SESSION_ID} # Exploration Skill ## Exploration Protocol ### Phase 1: Initial Reconnaissance ```bash # List root files ls -la # Find config files find . -maxdepth 2 -name "package.json" -o -name "*.config.*" -o -name "pyproject.toml" -o -name "go.mod" -o -name "Cargo.toml" 2>/dev/null # Check for common entry points ls -la src/ app/ lib/ cmd/ 2>/dev/null ``` ### Phase 2: Structure Mapping ```bash # Tree view (excluding common noise) tree -L 3 -I 'node_modules|dist|build|.git|__pycache__|.next|target|vendor' 2>/dev/null || find . -type d -maxdepth 3 | head -50 # Identify main directories ls -la src/ lib/ app/ internal/ pkg/ 2>/dev/null ``` ### Phase 3: Entry Points Detection ```bash # JavaScript/TypeScript grep -rn "main\|index\|app.listen\|createServer\|export default" --include="*.{js,ts,jsx,tsx}" | head -20 # Python grep -rn "if __name__\|main()\|app.run\|uvicorn" --include="*.py" | head -20 # Go grep -rn "func main\|http.ListenAndServe" --include="*.go" | head -20 # Rust grep -rn "fn main" --include="*.rs" | head -10 ``` ### Phase 4: Dependency Analysis ```bash # Node.js cat package.json 2>/dev/null | head -50 # Python cat pyproject.toml requirements.txt set
- Exploration Protocol
- Phase 1: Initial Reconnaissance
- Phase 2: Structure Mapping
- Phase 3: Entry Points Detection
- Phase 4: Dependency Analysis
- Phase 5: Pattern Detection
- Architecture Pattern Detection
- Pattern Indicators
- Tech Stack Detection
- JavaScript/TypeScript
- Python
- Go
- PHP
- Rust
List root files ls -la Find config files find . -maxdepth 2 -name "package.json" -o -name "*.config.*" -o -name "pyproject.toml" -o -name "go.mod" -o -name "Cargo.toml" 2>/dev/null Check for common entry points ls -la src/ app/ lib/ cmd/ 2>/dev/null Tree view (excluding common noise) tree -L 3 -I 'node_modules|dist|build|.git|__pycache__|.next|target|vendor' 2>/dev/null || find . -type d -maxdepth 3 | head -50 Identify main directories ls -la src/ lib/ app/ internal/ pkg/ 2>/dev/null
What does the exploration skill do?
Codebase exploration techniques for rapid discovery, architecture analysis, pattern detection, and dependency mapping.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill exploration-fusengine-agents --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
