architect · impl · producer — structure the code, by discipline
The Architect bar at the impl gate, forward: structural conventions the code follows. Generic core: no code duplication (reuse hooks/tokens), orthogonal, contained complexity.
module-structure
- File layout matches the library convention; one component per folder; index re-export; no circular imports.
dependency-hygiene
- Imports only declared deps + peer React; no deep-import into another component's internals.
bundle
- No top-level side effects;
sideEffectshonored; dynamic-import the heavy optional parts.