# Repository Guidelines ## Project Structure & Module Organization - `README.md`: Project overview and quick context. - `assets/`: Optimized images and brand assets (place new images here). Existing legacy files: `hexai.png`, `hexai-small.png`. - `src/`: Future implementation code. - `tests/`: Future test suites mirroring `src/` paths. - `scripts/`: Helper tools and maintenance scripts. ## Coding Style & Naming Conventions - Aim for at least 85% unit test coverage of all source code. - Always run the gofumpt code reformater on all go files modified. - Ensure that all unit tests pass before merging any changes. - If possible, construct individual methods so that they can be unit tested. But only if it doesn't add too much boilerplate to the code base. - There should be no source code file larger than 1000 lines. If so, split it up into multiple. - There should be no function larger then 50 lines. If so, refactor or split up into multiple smaller functions. - Markdown: ATX `#` headings, sentence‑case titles, wrap lines ~100 chars, use fenced code blocks and descriptive link text. - Filenames: docs use `lowercase-with-dashes.md`; images use kebab‑case with size/purpose suffix (e.g., `hexai-small.png`). - Code (when added): follow language idioms