> storybook
Assists with developing, documenting, and testing UI components in isolation using Storybook. Use when writing component stories, setting up visual regression testing, configuring addons, or generating component documentation. Trigger words: storybook, stories, csf, component story format, visual testing, chromatic, storybook addons.
curl "https://skillshub.wtf/TerminalSkills/skills/storybook?format=md"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
argsfor all dynamic props to enable the Controls panel, and addplayfunctions with@storybook/testfor automated interaction testing. - 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>,<Controls>, and<ArgTypes>. - When testing accessibility, enable
@storybook/addon-a11ywhich runs axe-core audits on every story automatically. - When setting up visual regression, integrate Chromatic or Percy for screenshot comparison across PRs, and run
@storybook/test-runnerin CI to execute all play functions. - When configuring globally, set shared decorators (ThemeProvider, RouterProvider) and parameters in
.storybook/preview.tsto apply to all stories. - When organizing, use sidebar hierarchy with
title: "Components/Forms/Input"and keep stories co-located with components (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
npx storybook@latest initfor the React Vite framework - 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
@storybook/test-runnerand configure CI pipeline - Add
@storybook/addon-a11yfor accessibility checks - 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
argsfor all dynamic props to enable the Controls panel and story composition. - Keep stories next to components:
Button.tsx+Button.stories.tsxin the same directory. - 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
storybook test-runnerin CI to catch broken interactions before merge.
> related_skills --same-repo
> zustand
You are an expert in Zustand, the small, fast, and scalable state management library for React. You help developers manage global state without boilerplate using Zustand's hook-based stores, selectors for performance, middleware (persist, devtools, immer), computed values, and async actions — replacing Redux complexity with a simple, un-opinionated API in under 1KB.
> zoho
Integrate and automate Zoho products. Use when a user asks to work with Zoho CRM, Zoho Books, Zoho Desk, Zoho Projects, Zoho Mail, or Zoho Creator, build custom integrations via Zoho APIs, automate workflows with Deluge scripting, sync data between Zoho apps and external systems, manage leads and deals, automate invoicing, build custom Zoho Creator apps, set up webhooks, or manage Zoho organization settings. Covers Zoho CRM, Books, Desk, Projects, Creator, and cross-product integrations.
> zod
You are an expert in Zod, the TypeScript-first schema declaration and validation library. You help developers define schemas that validate data at runtime AND infer TypeScript types at compile time — eliminating the need to write types and validators separately. Used for API input validation, form validation, environment variables, config files, and any data boundary.
> zipkin
Deploy and configure Zipkin for distributed tracing and request flow visualization. Use when a user needs to set up trace collection, instrument Java/Spring or other services with Zipkin, analyze service dependencies, or configure storage backends for trace data.