19 lines
1.2 KiB
Markdown
19 lines
1.2 KiB
Markdown
# Directory Structure
|
|
|
|
```text
|
|
/
|
|
├── CLAUDE.md # Master configuration
|
|
├── .claude/ # Agent definitions, skills, hooks, rules, docs
|
|
├── src/ # Game source code (core, gameplay, ai, networking, ui, tools)
|
|
├── assets/ # Game assets (art, audio, vfx, shaders, data)
|
|
├── design/ # Game design documents (gdd, narrative, levels, balance)
|
|
├── docs/ # Technical documentation (architecture, api, postmortems)
|
|
│ └── engine-reference/ # Curated engine API snapshots (version-pinned)
|
|
├── tests/ # Test suites (unit, integration, performance, playtest)
|
|
├── tools/ # Build and pipeline tools (ci, build, asset-pipeline)
|
|
├── prototypes/ # Throwaway prototypes (isolated from src/)
|
|
└── production/ # Production management (sprints, milestones, releases)
|
|
├── session-state/ # Ephemeral session state (active.md — gitignored)
|
|
└── session-logs/ # Session audit trail (gitignored)
|
|
```
|