Skip to main content
ClaudeWave
Skill95 estrellas del repoactualizado 7d ago

architecture

The architecture skill provides import graph analysis and codebase structure documentation, including hub file identification and domain cluster mapping. Use it when understanding file dependencies, planning code changes that might have wide impact, or assessing how modifications in one file will propagate through the codebase.

Instalar en Claude Code
Copiar
git clone --depth 1 https://github.com/aspenkit/aspens /tmp/architecture && cp -r /tmp/architecture/.agents/skills/architecture ~/.claude/skills/architecture
Después abre una sesión nueva de Claude Code; el skill carga automáticamente.

SKILL.md

# Architecture

This skill provides codebase structure and import graph data.

When you need to understand file relationships, hub files, or domain clusters,
check `references/code-map.md` for the full import graph analysis.

## Key Rules

- Check hub files (high fan-in) before modifying - changes propagate widely
- Respect domain cluster boundaries - keep related files together
- Check cross-domain dependencies before creating new imports