What problem does it solve? When creating or restructuring components in a multi-library Nx monorepo, inconsistent naming, misplaced barrels, and missing required files cause review churn and broken public APIs. This Skill encodes the exact folder layout, casing rules, and per-lib file requirements so new code matches the codebase on the first pass. ## Core Features & Use Cases - Naming conventions: PascalCase folders for components, camelCase for utilities and hooks, with one responsibility per file. - Barrel rules: Defines when an index.ts barrel is required (public components, package layers) and when it is an anti-pattern (single-file internal helpers). - Per-lib file matrix: Specifies which files (impl, types, tests, stories, MDX docs, Figma Code Connect) are required for ui-react, ui-rnative, design-core, and utils-shared, including chart exceptions under Components/visualization/. - Use Case: Before scaffolding a new TextInput component in ui-react, load this Skill to generate the correct folder structure with all required files and re-export it from the parent Components barrel. ## Quick Start Ask the assistant to scaffold a new component in libs/ui-react following the component anatomy conventions and verify the folder layout and barrel exports.