Learning Folder Structure
So I started using the Folder structure for my agency and I've got a few clarifying questions with growing folders. I work mainly with Antigravity in the terminal My folder structure right now is build like this: Main Folder/ ├── CLAUDE.md ├── STARTUP.md │ ├── core/ │ ├── platform/ │ │ ├── REFERENCE.md │ │ ├── apps/ │ │ │ └── dashboard/ │ │ │ ├── CLAUDE.md │ │ │ ├── AGENTS.md │ │ │ ├── public/ │ │ │ └── src/ │ │ │ ├── app/ │ │ │ ├── components/ │ │ │ └── lib/ │ │ ├── docs/ │ │ │ └── DEPLOY.md │ │ ├── infra/ │ │ │ ├── docker/ │ │ │ ├── nginx/ │ │ │ └── pocketbase/ │ │ └── pb_data/ │ │ │ └── website/ │ └── REFERENCE.md │ ├── delivery/ ├── blueprints/ │ ├── README.md └── clients/ ├── CLAUDE.md ├── client1/ │ └──PROJECT.md └── client2/ └── PROJECT.md My questions: When working on something specific for example client1 do i go into the client1 folder and then open claude or from the main folder since the routing is in the CLAUDE.md? Are there enough md files or am I missing crucial md files? Is the layout too big or is it fine? When in the example above do I still give the model a role when prompting and what to do and not do even if most of that is in the md file already? I guess thats about it, thank you in advance for any help!