Skills storybook
install
source · Clone the upstream repo
git clone https://github.com/TerminalSkills/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/TerminalSkills/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/storybook" ~/.claude/skills/terminalskills-skills-storybook && rm -rf "$T"
manifest:
skills/storybook/SKILL.mdsource content
Storybook
Overview
Storybook is a UI component workshop for developing, documenting, and testing components in isolation. It supports React, Vue, Svelte, and Angular with Component Story Format (CSF), interactive controls, accessibility auditing, and visual regression testing through Chromatic integration.
Instructions
- When writing stories, use Component Story Format (CSF) with a default export for component metadata and named exports for each variant (Primary, Secondary, Loading, Error, Disabled).
- When making stories interactive, use
for all dynamic props to enable the Controls panel, and addargs
functions withplay
for automated interaction testing.@storybook/test - When adding documentation, use autodocs tag for automatic generation from stories, or MDX files for combining prose with live component examples using doc blocks like
,<Canvas>
, and<Controls>
.<ArgTypes> - When testing accessibility, enable
which runs axe-core audits on every story automatically.@storybook/addon-a11y - When setting up visual regression, integrate Chromatic or Percy for screenshot comparison across PRs, and run
in CI to execute all play functions.@storybook/test-runner - When configuring globally, set shared decorators (ThemeProvider, RouterProvider) and parameters in
to apply to all stories..storybook/preview.ts - When organizing, use sidebar hierarchy with
and keep stories co-located with components (title: "Components/Forms/Input"
+Button.tsx
).Button.stories.tsx
Examples
Example 1: Build a component library with stories
User request: "Set up Storybook for our React component library with all variants"
Actions:
- Initialize Storybook with
for the React Vite frameworknpx storybook@latest init - Write stories for each component with args for variant, size, disabled, and loading states
- Add play functions for interactive components (buttons, forms, modals)
- Configure autodocs for automatic documentation generation
Output: A browsable component catalog with interactive controls and auto-generated docs.
Example 2: Add visual regression testing to CI
User request: "Set up visual testing for our Storybook components in CI"
Actions:
- Install
and configure CI pipeline@storybook/test-runner - Add
for accessibility checks@storybook/addon-a11y - Integrate Chromatic for visual regression screenshots on each PR
- Configure the test-runner to execute all play functions in headless Playwright
Output: A CI pipeline that catches visual regressions, accessibility issues, and broken interactions.
Guidelines
- Write at least one story per component variant: default, loading, error, disabled, and empty states.
- Use
for all dynamic props to enable the Controls panel and story composition.args - Keep stories next to components:
+Button.tsx
in the same directory.Button.stories.tsx - Add play functions for interactive components: buttons, forms, modals, and dropdowns.
- Use decorators for shared context (ThemeProvider, RouterProvider) at the preview level.
- Document design decisions in MDX: when to use each variant, dos and don'ts.
- Run
in CI to catch broken interactions before merge.storybook test-runner