What problem does it solve? Storybook stories across a design system often drift into inconsistent naming, layout, and docs configurations, making documentation harder to navigate and review. This Skill standardizes how *.stories.tsx files are written so every story follows the same conventions. ## Core Features & Use Cases - Meta Typing Rules: Enforces satisfies Meta<typeof Component> and StoryObj<typeof Component> typing patterns. - Layout and Docs Configuration: Requires centered layout, light background, and dynamic docs source for stories with interactive controls. - Naming Conventions: Standardizes export names such as Base, {Property}Showcase, With{Feature}, and ResponsivenessShowcase. - Use Case: When adding a new Button story to a design system, the Skill ensures it uses a Base export with centered layout, dynamic docs source, and no redundant argTypes. ## Quick Start Ask the assistant to create or review a Storybook story for a component and it will apply these story conventions automatically.