docs: update AGENTS.md to reference project-structure.txt and clarify legacy store status
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 1m36s

This commit is contained in:
2026-05-08 13:55:45 +02:00
parent 4eeb258d30
commit c7f024f2e3
2 changed files with 9 additions and 6 deletions
+9 -1
View File
@@ -233,7 +233,15 @@ src/
└── utils.ts # General utilities (cn function)
```
*Note: A complete, up-to-date project tree is automatically generated on each commit and saved to `docs/project-structure.txt`. This file is generated by the pre-commit hook using `.husky/scripts/generate-project-tree.js` and respects `.gitignore` rules.*
*For a complete, up-to-date project tree, see `docs/project-structure.txt` (auto-generated on each commit).*
### Quick Reference
- **Modular Stores**: `src/lib/game/stores/` (USE THESE)
- **Legacy Store**: `src/lib/game/store.ts` and `src/lib/game/store-modules/` (DEPRECATED - being migrated)
- **Utilities**: `src/lib/game/utils/` (new home for migrated utilities)
- **Project Structure**: `docs/project-structure.txt` (full tree, auto-generated)
*Note: The project tree in `docs/project-structure.txt` is automatically generated on each commit by the pre-commit hook using `.husky/scripts/generate-project-tree.js` and respects `.gitignore` rules.*
## Key Systems