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

storybook-stories故事书故事

Agent Skill

storybook-stories 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,665

周安装

68

GitHub Stars

323

下载量

539
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

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

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装并使用。
  • 建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • storybook-stories 属于前端设计类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Storybook Stories

This skill enforces consistent Storybook story creation patterns across the application. It ensures that all components have proper documentation, interactive examples, and follow the established project structure.

<critical_component_usage> MANDATORY: Always Use Base UI Components from @agh/ui

CRITICAL REQUIREMENTS:

  • ALWAYS import components from @agh/ui package (packages/ui)
  • ALWAYS use existing base UI components instead of creating new ones from scratch
  • ALWAYS follow design system rules from @.cursor/rules/react.mdc and @.cursor/rules/shadcn.mdc
  • ALWAYS use design tokens (e.g., bg-background, text-foreground, border-border) instead of explicit colors
  • NEVER create components from scratch when a base component exists in @agh/ui
  • NEVER use explicit color values (e.g., bg-white, text-black) - always use design tokens
  • NEVER duplicate component logic - compose from base components
  • NEVER set tags: ["autodocs"] or enable Storybook autodocs on any story meta (packages/ui, web/src/components/ui, or web/src/systems/**). Use parameters.docs.description.component, JSDoc on stories, and the Docs addon manually if needed.

Available Base Components: All components from packages/ui/src/components are available via @agh/ui:

  • Button, Card, Dialog, Input, Select, Badge, Avatar, Accordion, Alert, etc.
  • See packages/ui/src/index.ts for complete list of exports

Design System Rules:

  • Follow React best practices: @.cursor/rules/react.mdc
  • Follow Shadcn UI patterns: @.cursor/rules/shadcn.mdc
  • Use design tokens for theming: bg-background, text-foreground, border-border, etc. </critical_component_usage>

Instructions

  1. File Location & Naming

- Place story files in a stories/ folder within the same category folder as the component. - Example: src/components/base/accordion.tsx -> src/components/base/stories/accordion.stories.tsx. - Use the Storybook instance that matches the layer: - packages/ui/.storybook for packages/ui/src/components/*.stories.tsx - web/.storybook for web/src/components/ui/**/*.stories.tsx and web/src/systems/**/components/stories/*.stories.tsx

  1. Component Imports

- MANDATORY: Import base UI components from @agh/ui - Use: import {Button, Card, Dialog} from "@agh/ui"; - Only import custom/domain-specific components from local files - Check packages/ui/src/index.ts to see available components before creating new ones

  1. Meta Configuration

- Title should follow the directory structure: components/custom/ComponentName or components/ui/ComponentName. - Include component in the meta object. - Set parameters.layout to "centered" by default. - Add parameters.docs.description.component to describe the component. - Use decorators if the component requires a specific container width or context. - MANDATORY: Use explicit type annotation: const meta: Meta<typeof Component> = {...} - MANDATORY: Do not add tags: ["autodocs"] to meta (any layer). Autodocs inflates generated docs noise and is forbidden in this repo. - web system stories may rely on the shared QueryClient + router + MSW decorators from web/.storybook/preview.ts; prefer those global decorators over per-story provider duplication.

  1. Story Definition

- Define a helper type: type Story = StoryObj<typeof meta>;. - Export stories as named constants (PascalCase). - Always add JSDoc comments above each story export; these appear in the Storybook UI. - Use the Default story as the primary example. - MANDATORY: All stories must include args property, even if empty: args: {} - Keep it concise: Create only essential stories (2-5 max per component). Avoid over-engineering with excessive variations or complex scenarios. - For system stories, keep titles aligned to the domain surface: systems/<name>/<ComponentName>.

  1. Render vs Args

- Use render functions for compound components (like Accordion, Dialog, Select) that require children composition. - Use args for simple components (like Button, Badge) where props define the variation. - MANDATORY: Even when using render, include args: {} property

  1. Design System Compliance

- ALWAYS use design tokens for colors: bg-background, text-foreground, border-border - NEVER use explicit colors: bg-white, text-black, border-gray-200 - Follow accessibility guidelines from @.cursor/rules/shadcn.mdc - Use semantic HTML elements and proper ARIA attributes

Example Template

Using Base UI Components from @agh/ui

import type { Meta, StoryObj } from "@storybook/react";
import { Button, Card, CardHeader, CardTitle, CardContent } from "@agh/ui";
import { MyCustomComponent } from "./my-custom-component";

const meta: Meta<typeof MyCustomComponent> = {
  title: "components/custom/MyCustomComponent",
  component: MyCustomComponent,
  parameters: {
    layout: "centered",
    docs: {
      description: {
        component: "A custom component that composes base UI components from @agh/ui.",
      },
    },
  },
  // Optional decorator using design tokens
  decorators: [
    Story => (
      <div className="w-[400px] p-4 bg-background border border-border rounded-lg">
        <Story />
      </div>
    ),
  ],
};

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

/**
 * Default usage showing the standard behavior
 * Uses base Button and Card components from @agh/ui
 */
export const Default: Story = {
  args: {},
  render: () => (
    <Card>
      <CardHeader>
        <CardTitle>My Custom Component</CardTitle>
      </CardHeader>
      <CardContent>
        <MyCustomComponent>
          <Button variant="default">Action</Button>
        </MyCustomComponent>
      </CardContent>
    </Card>
  ),
};

/**
 * Variation with specific props
 * All styling uses design tokens (bg-background, text-foreground, etc.)
 */
export const WithVariant: Story = {
  args: {},
  render: () => (
    <div className="bg-card border border-border rounded-lg p-4">
      <MyCustomComponent variant="secondary">
        <Button variant="outline">Secondary Action</Button>
      </MyCustomComponent>
    </div>
  ),
};

Story for Base UI Component (from @agh/ui)

import type { Meta, StoryObj } from "@storybook/react";
import { Button } from "@agh/ui";

const meta: Meta<typeof Button> = {
  title: "components/ui/Button",
  component: Button,
  parameters: {
    layout: "centered",
    docs: {
      description: {
        component: "A button component with multiple variants and sizes.",
      },
    },
  },
};

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

/**
 * Default button with standard styling
 */
export const Default: Story = {
  args: {
    children: "Button",
    variant: "default",
    size: "default",
  },
};

/**
 * All variants using design tokens
 */
export const AllVariants: Story = {
  args: {},
  render: () => (
    <div className="flex flex-wrap gap-4 bg-background p-4 rounded-lg">
      <Button variant="default">Default</Button>
      <Button variant="secondary">Secondary</Button>
      <Button variant="outline">Outline</Button>
      <Button variant="ghost">Ghost</Button>
      <Button variant="muted">Muted</Button>
    </div>
  ),
};

Best Practices

Autodocs (forbidden)

Do not use Storybook autodocs. Never set tags: ["autodocs"] on meta for packages/ui, web/src/components/ui, or web/src/systems/** stories. Rationale: autodocs-generated pages add noise and duplicate what we already express with concise stories, parameters.docs.description.component, and per-story JSDoc. If a component needs richer prose, write it in the description fields and keep the canvas as the source of truth.

Conciseness & Simplicity

  • DO: Create only essential stories that demonstrate core functionality
  • DO: Use minimal, realistic examples that show the component's purpose
  • DO: Focus on one concept per story
  • DON'T: Create excessive variations that don't add value
  • DON'T: Over-engineer with complex mock data or elaborate scenarios
  • DON'T: Create stories for every possible prop combination
  • DON'T: Add unnecessary decorators or wrappers unless required

Story Count Guidelines:

  • Simple components (Button, Badge): 2-3 stories max (Default + 1-2 key variations)
  • Medium components (Card, Dialog): 3-4 stories max (Default + key use cases)
  • Complex components: 4-5 stories max (Default + essential scenarios)
  • Never create more than 5 stories per component unless absolutely necessary

Component Usage

  • Base Components First: Always check @agh/ui for existing components before creating new ones
  • Composition Over Creation: Compose complex components from base UI components
  • Compound Components: Always demonstrate the full structure (Parent + Children) when using compound components from @agh/ui
  • Design Tokens: Always use design tokens (bg-background, text-foreground, etc.) instead of explicit colors

Story Structure

  • Mock Data: Keep mock data minimal and realistic - only include what's necessary to demonstrate the component
  • Interactivity: For components like Accordion or Dialog, ensure the render function sets up the component in a way that allows interaction (e.g., not force-controlled unless necessary)
  • Cleanliness: Remove unused imports and generic "template" comments
  • Type Safety: Always use explicit type annotation for meta: const meta: Meta<typeof Component>
  • Args Property: Always include args: {} in all stories, even when using custom render functions
  • One Story Per Concept: Each story should demonstrate one clear use case or variation, not multiple concepts

Design System Compliance

  • Follow React Rules: Adhere to patterns in @.cursor/rules/react.mdc
  • Follow Shadcn Rules: Adhere to patterns in @.cursor/rules/shadcn.mdc
  • Accessibility: Use semantic HTML and proper ARIA attributes
  • Theme Support: All stories should work in both light and dark themes using design tokens

Common Mistakes to Avoid

Creating components from scratch when base components exist:

// ❌ BAD: Creating a button from scratch
export const Bad: Story = {
  render: () => <button className="bg-blue-500 text-white px-4 py-2 rounded">Click me</button>,
};

// ✅ GOOD: Using base Button from @agh/ui
import { Button } from "@agh/ui";
export const Good: Story = {
  args: {},
  render: () => <Button variant="default">Click me</Button>,
};

Enabling autodocs on meta:

// ❌ BAD: autodocs tag (forbidden in this repo)
const meta: Meta<typeof Button> = {
  title: "ui/Button",
  component: Button,
  tags: ["autodocs"],
};

// ✅ GOOD: no autodocs tag; describe the component in parameters.docs
const meta: Meta<typeof Button> = {
  title: "ui/Button",
  component: Button,
  parameters: {
    layout: "centered",
    docs: {
      description: {
        component: "Primary action button with variants and sizes.",
      },
    },
  },
};

Using explicit colors instead of design tokens:

// ❌ BAD: Using explicit colors
<div className="bg-white text-black border-gray-200">

// ✅ GOOD: Using design tokens
<div className="bg-background text-foreground border-border">

Missing args property:

// ❌ BAD: Missing args property
export const Bad: Story = {
  render: () => <Button>Click</Button>,
};

// ✅ GOOD: Including args property
export const Good: Story = {
  args: {},
  render: () => <Button>Click</Button>,
};

Missing explicit type annotation:

// ❌ BAD: Type inference
const meta = {
  title: "Components/Button",
  component: Button,
} satisfies Meta<typeof Button>;

// ✅ GOOD: Explicit type annotation
const meta: Meta<typeof Button> = {
  title: "Components/Button",
  component: Button,
};

Over-engineering stories with unnecessary examples:

// ❌ BAD: Too many stories with similar variations
export const Default: Story = { ... };
export const WithIcon: Story = { ... };
export const WithIconLeft: Story = { ... };
export const WithIconRight: Story = { ... };
export const WithLongText: Story = { ... };
export const WithShortText: Story = { ... };
export const Disabled: Story = { ... };
export const Loading: Story = { ... };
export const WithTooltip: Story = { ... };
export const InCard: Story = { ... };
export const InDialog: Story = { ... };
// ... 10+ stories for a simple button

// ✅ GOOD: Concise, focused stories
export const Default: Story = {
  args: {
    children: "Button",
    variant: "default",
  },
};

export const Variants: Story = {
  args: {},
  render: () => (
    <div className="flex gap-2">
      <Button variant="default">Default</Button>
      <Button variant="secondary">Secondary</Button>
      <Button variant="outline">Outline</Button>
    </div>
  ),
};

export const Disabled: Story = {
  args: {
    children: "Disabled",
    disabled: true,
  },
};
// Only 3 stories covering essential use cases

Over-complicated mock data or scenarios:

// ❌ BAD: Unnecessarily complex mock data
const mockUsers = [
  { id: "1", name: "John Doe", email: "john@example.com", role: "admin", avatar: "...", lastLogin: "...", permissions: [...], metadata: {...} },
  { id: "2", name: "Jane Smith", email: "jane@example.com", role: "user", avatar: "...", lastLogin: "...", permissions: [...], metadata: {...} },
  // ... 10 more users with full data
];

// ✅ GOOD: Minimal, realistic data
const mockUsers = [
  { id: "1", name: "John Doe", email: "john@example.com" },
  { id: "2", name: "Jane Smith", email: "jane@example.com" },
];

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.88%
按下载量换算183

Claude

31.65%
按下载量换算171

Cursor

20.32%
按下载量换算110

Gemini CLI

10.42%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills