# Architect Impl Producer Governance

> Internal governance (not user-invocable): the Architect bar for react-component, impl-producer face. Structural conventions the CODE must follow, by discipline. Loaded while building.

- Skill: `cyberuni/architect-impl-producer-governance` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberuni/architect-impl-producer-governance`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberuni/architect-impl-producer-governance/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Web & Frontend
- Author: cyberuni (https://skillmd.com/u/cyberuni)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/cyberuni/architect-impl-producer-governance

---


# 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; `sideEffects` honored; dynamic-import the heavy optional parts.

