This file is for durable engineering wisdom that should survive refactors. It represents general senior-engineer maturity and expertise.
- Every warning is harmful. Warnings indicate mismatch between intent and reality; either fix immediately or stop and design a clean fix.
- Lint/format discipline applies everywhere, including standalone code. Even demo or standalone subprojects should wire and pass ESLint + Prettier (or arc lint equivalents), ideally via local scripts and scoped overrides rather than by skipping checks.
- Independent validation/review tasks should run in parallel. When tasks do not depend on one another (e.g., separate review prompts, independent checks), launch them concurrently and reserve sequential execution for true dependency chains only.
- Tests must not rely on fixed non-zero sleeps for correctness. If a test cares about ordering, gate the relevant async boundary explicitly or wait on an observable condition; `setTimeout(..., 0