# Architect Impl Governance

> Internal governance (not user-invocable): the Architect bar for react-component at the impl gate. Code-structure criteria by discipline, loaded by both the impl-producer (self-align) and impl-judge (grade).

- Skill: `cyberuni/architect-impl-governance-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add cyberuni/architect-impl-governance-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/cyberuni/architect-impl-governance-2/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-22
- Page: https://skillmd.com/skills/cyberuni/architect-impl-governance-2

---


# architect · impl — the code-structure bar, by discipline

The Architect bar at the **impl gate**: structural conventions the **code** follows. Generic core:
no code duplication (reuse hooks/tokens), orthogonal, contained complexity.

## module-structure
- Library file layout; one component per folder; index re-export; no circular imports.

## dependency-hygiene
- Only declared deps + peer React; no deep-import into another component's internals.

## bundle
- No top-level side effects; `sideEffects` honored; dynamic-import heavy optional parts.

## How each face uses it
- **impl-producer** — lay the code out to satisfy the above.
- **impl-judge** — check duplication, layout/export convention, circular imports, tree-shaking.

