Skip to main content
ClaudeWave
Skill828 estrellas del repoactualizado 13d ago

codebase-visualizer

The codebase-visualizer skill generates an interactive tree visualization of a project's file structure by executing a Python script from the project root, producing an HTML file that displays the codebase architecture in a browser. Use this skill when onboarding to a new repository or analyzing how code files and directories are organized within a project.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/huangjia2019/claude-code-engineering /tmp/codebase-visualizer && cp -r /tmp/codebase-visualizer/04-Skills/projects/04-codebase-visualizer ~/.claude/skills/codebase-visualizer
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

Run the visualization script from your project root:

```bash
python .claude/skills/codebase-visualizer/scripts/visualize.py .
```

This creates `codebase-map.html` and opens it in your default browser.