Skip to main content
ClaudeWave
Skill95 repo starsupdated 6d 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.

Install in Claude Code
Copy
git clone --depth 1 https://github.com/aspenkit/aspens /tmp/architecture && cp -r /tmp/architecture/.agents/skills/architecture ~/.claude/skills/architecture
Then start a new Claude Code session; the skill loads automatically.

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