Agent skill

exploration

Codebase exploration techniques for rapid discovery, architecture analysis, pattern detection, and dependency mapping.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 7 KB
Bundled scripts: none
Path: skills/analysis/exploration-fusengine-agents/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

**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

What's inside
Steps it walks through
  1. Exploration Protocol
  2. Phase 1: Initial Reconnaissance
  3. Phase 2: Structure Mapping
  4. Phase 3: Entry Points Detection
  5. Phase 4: Dependency Analysis
  6. Phase 5: Pattern Detection
  7. Architecture Pattern Detection
  8. Pattern Indicators
  9. Tech Stack Detection
  10. JavaScript/TypeScript
  11. Python
  12. Go
  13. PHP
  14. Rust
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going