Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问clear审计通过

storybookStorybook 组件文档

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

7,114

周安装

285

GitHub Stars

87

下载量

2,303
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:storybook(Storybook 组件文档)
来源仓库:https://github.com/mindrally/skills
仓库路径:skills/storybook
安装命令:
npx skills add https://github.com/mindrally/skills --skill storybook
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/mindrally/skills --skill storybook

简介

storybook 用于辅助组件文档化与可视化测试,支持交互式示例和 props 参数调试。

  • 适用于需要独立开发组件、统一设计语言或提升团队协作效率的前端项目。
  • 通过 npx skills add 命令从 GitHub 安装,需确认项目是否已配置 Storybook 启动脚本。
  • 建议在使用前验证插件兼容性和构建产物输出路径。
  • 涉及动态数据时应使用 mock 服务,避免依赖真实后端接口造成不稳定。

SKILL.md

Storybook Best Practices

You are an expert in building and documenting component libraries with Storybook. Apply these guidelines when creating stories, organizing components, and maintaining design systems.

Project Structure

Directory Organization

  • Place stories alongside component files (Component.stories.tsx)
  • Use consistent naming conventions for story files
  • Organize stories by feature or component type
  • Maintain a clear hierarchy matching your component library

File Naming

  • Use PascalCase for component story files
  • Follow pattern: ComponentName.stories.tsx
  • Group related stories in the same file
  • Use descriptive story names that explain the variant

Writing Stories

Story Structure

import type { Meta, StoryObj } from '@storybook/react';
import { Component } from './Component';

const meta: Meta<typeof Component> = {
  title: 'Category/Component',
  component: Component,
  parameters: {
    layout: 'centered',
  },
  tags: ['autodocs'],
  argTypes: {
    // Define arg types here
  },
};

export default meta;
type Story = StoryObj<typeof meta>;

export const Default: Story = {
  args: {
    // Default props
  },
};

export const Variant: Story = {
  args: {
    variant: 'secondary',
  },
};

Story Best Practices

  • Create a Default story showing primary usage
  • Add stories for each significant variant
  • Include edge cases and error states
  • Document interactive states (hover, focus, disabled)
  • Show responsive behavior when relevant

Component Documentation

Autodocs

  • Enable autodocs for automatic documentation generation
  • Write clear JSDoc comments for components and props
  • Document prop types, defaults, and requirements
  • Include usage examples in component comments

Custom Documentation

  • Add MDX files for complex documentation needs
  • Include design rationale and usage guidelines
  • Document accessibility considerations
  • Provide code examples for common use cases

Args and Controls

ArgTypes Configuration

argTypes: {
  variant: {
    control: 'select',
    options: ['primary', 'secondary', 'tertiary'],
    description: 'Visual style variant',
    table: {
      defaultValue: { summary: 'primary' },
    },
  },
  size: {
    control: 'radio',
    options: ['sm', 'md', 'lg'],
  },
  disabled: {
    control: 'boolean',
  },
  onClick: {
    action: 'clicked',
  },
}

Args Best Practices

  • Use meaningful default values
  • Group related args logically
  • Provide descriptions for complex props
  • Set up actions for callback props

Decorators and Parameters

Decorators

decorators: [
  (Story) => (
    <ThemeProvider theme={defaultTheme}>
      <Story />
    </ThemeProvider>
  ),
],
  • Use decorators for consistent story wrappers
  • Apply theme providers at the appropriate level
  • Add layout containers when needed
  • Keep decorators simple and reusable

Parameters

parameters: {
  layout: 'centered', // or 'fullscreen', 'padded'
  backgrounds: {
    default: 'light',
    values: [
      { name: 'light', value: '#ffffff' },
      { name: 'dark', value: '#1a1a1a' },
    ],
  },
  viewport: {
    defaultViewport: 'responsive',
  },
},

Testing with Storybook

Interaction Testing

import { within, userEvent } from '@storybook/testing-library';
import { expect } from '@storybook/jest';

export const Clickable: Story = {
  play: async ({ canvasElement }) => {
    const canvas = within(canvasElement);
    const button = canvas.getByRole('button');

    await userEvent.click(button);
    await expect(button).toHaveFocus();
  },
};

Visual Testing

  • Configure visual regression testing
  • Capture stories at multiple viewports
  • Test theme variations (light/dark mode)
  • Document visual test coverage

Accessibility Testing

  • Enable a11y addon for accessibility checks
  • Address all accessibility violations
  • Test keyboard navigation in stories
  • Document ARIA requirements

Addons and Configuration

Essential Addons

  • @storybook/addon-essentials (docs, controls, actions, viewport)
  • @storybook/addon-a11y for accessibility testing
  • @storybook/addon-interactions for interaction testing
  • @storybook/addon-designs for design spec integration

Configuration

// .storybook/main.ts
const config: StorybookConfig = {
  stories: ['../src/**/*.stories.@(js|jsx|ts|tsx)'],
  addons: [
    '@storybook/addon-essentials',
    '@storybook/addon-a11y',
    '@storybook/addon-interactions',
  ],
  framework: {
    name: '@storybook/react-vite',
    options: {},
  },
};

export default config;

Design System Integration

Design Tokens

  • Import design tokens from your token system
  • Apply tokens consistently in stories
  • Document token usage in component docs
  • Show token variations in dedicated stories

Theme Support

  • Configure theme provider in preview.js
  • Create stories for each theme variant
  • Test components across all supported themes
  • Document theme-specific behavior

Performance

Build Optimization

  • Use lazy loading for large story collections
  • Optimize static assets
  • Configure proper caching
  • Monitor and improve build times

Story Performance

  • Avoid heavy computations in stories
  • Use mock data efficiently
  • Lazy load complex dependencies
  • Profile and optimize slow stories

Best Practices Summary

  • Write stories that serve as living documentation
  • Test components in isolation before integration
  • Keep stories simple and focused
  • Maintain consistency across all stories
  • Update stories when components change
  • Use stories for design review and QA
  • Make accessibility testing part of the workflow
  • Integrate with your CI/CD pipeline

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenCode

28.63%
按下载量换算659

Claude Code

24.75%
按下载量换算570

Antigravity

17.25%
按下载量换算397

Codex

13.18%
按下载量换算304

Gemini CLI

8.86%
按下载量换算204

github-copilot

3.38%
按下载量换算78

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills