···1616 - `export GOCACHE=/tmp/go-build`
1717 - `export GOMODCACHE=/tmp/go-modcache`
1818 - Alternative persistent path inside repo: `export GOCACHE=$PWD/.cache/go-build && export GOMODCACHE=$PWD/.cache/go-modcache`
1919-- `gofumpt -l -w .` then `go vet ./...`: Baseline formatting and static checks.
1919+- `task fmt` (preferred) or `gofumpt -l -w .`, then `go vet ./...`: Baseline formatting and static checks.
2020- From the repo root, run `golangci-lint run ./...`: Expanded Go linters.
2121- `export ENABLE_MOCKS=1`: to test without kroger, openai credentials
2222- `go test ./...`: Run unit tests across all packages; add `-cover` when changing core logic.
···2626- `tailwind\generate.sh`: run when ever you change css or html
27272828## Coding Style & Naming Conventions
2929-- Go 1.24; keep code `gofumpt`-clean before review. Favor small, focused functions and table-driven tests.
2929+- Go 1.24; always format Go changes with `task fmt` or `gofumpt`, and keep code `gofumpt`-clean before review. Favor small, focused functions and table-driven tests.
3030- Exported identifiers in `CamelCase`; package-private helpers in `lowerCamel`. Template names mirror file names in `internal/templates`.
3131- Prefer standard library first; add dependencies sparingly and record rationale in PR description if new.
3232- Prefer simple html to javascript frameworks