Loading Screen Tip:

If you want your LLM to always have context of your entire project, you're better off making the AI write documentation in .md (Markdown) NOT HTML (Really important, don't use HTML).

Separate your entire doc files like this
>02_database_schema.md
>03_api_endpoints_part1.md
>04_api_endpoints_part2.md

Then create an extra md calld 01_index.md where you explain and reference the rest of the of the files so the LLM can load this one first and then know which one to load later for context depending on what it needs to be done in your code, this way it will have full context compared as if it was an entire document. For my 25K line project my entire documentation this way is 107KB.