feat: update docs for token efficient usage
Some checks failed
Deploy to Staging / Build Images (push) Has started running
Deploy to Staging / Deploy to Staging (push) Has been cancelled
Deploy to Staging / Verify Staging (push) Has been cancelled
Deploy to Staging / Notify Staging Ready (push) Has been cancelled
Deploy to Staging / Notify Staging Failure (push) Has been cancelled

This commit is contained in:
Eric Gullickson
2026-01-03 11:59:47 -06:00
parent 3dd86c37ff
commit b933329539
19 changed files with 333 additions and 71 deletions

18
backend/src/CLAUDE.md Normal file
View File

@@ -0,0 +1,18 @@
# backend/src/
## Files
| File | What | When to read |
| ---- | ---- | ------------ |
| `app.ts` | Fastify application setup and routes | Route registration, middleware setup |
| `index.ts` | Application entry point | Server startup, initialization |
## Subdirectories
| Directory | What | When to read |
| --------- | ---- | ------------ |
| `features/` | Feature capsules (self-contained modules) | Feature development, API endpoints |
| `core/` | Shared infrastructure (auth, config, logging) | Cross-cutting concerns, plugins |
| `_system/` | System utilities (migrations, CLI, schema) | Database migrations, schema generation |
| `shared-minimal/` | Minimal shared utilities | Shared type utilities |
| `scripts/` | Backend-specific scripts | Utility scripts |