create-storybook-docs — design-system create-storybook-docs, spark-web, community, design-system, ide skills, react-components, react-hooks, tailwindcss, typescript, ui-library, Claude Code

v1.0.0

このスキルについて

React UIコンポーネントの高度なドキュメントとアクセシビリティ機能を必要とするフロントエンドエージェントに最適です。 Create or update Storybook stories and documentation for a Spark UI component. Use when the user wants to add stories, update documentation, or improve component documentation in Storybook.

# Core Topics

leboncoin leboncoin
[87]
[21]
Updated: 3/10/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 9/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review
Review Score
9/11
Quality Score
59
Canonical Locale
en
Detected Body Locale
en

React UIコンポーネントの高度なドキュメントとアクセシビリティ機能を必要とするフロントエンドエージェントに最適です。 Create or update Storybook stories and documentation for a Spark UI component. Use when the user wants to add stories, update documentation, or improve component documentation in Storybook.

このスキルを使用する理由

React UIコンポーネントのStorybookストーリーとMDXドキュメントを作成および更新するエージェントの能力を強化し、アクセシビリティ機能を活用し、Meta定義とMDXファイルを通じてコンポーネントの発見性を高める。

おすすめ

React UIコンポーネントの高度なドキュメントとアクセシビリティ機能を必要とするフロントエンドエージェントに最適です。

実現可能なユースケース for create-storybook-docs

新しいReact UIコンポーネントのStorybookストーリーを作成する
アクセシビリティ機能を使用して既存のコンポーネントドキュメントを更新する
Spark UIコンポーネントのMDXドキュメントを生成する

! セキュリティと制限

  • React UIコンポーネントが必要
  • Storybookのインストールが必要
  • ストーリーとMDXドキュメントの作成および更新のみ

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is create-storybook-docs?

React UIコンポーネントの高度なドキュメントとアクセシビリティ機能を必要とするフロントエンドエージェントに最適です。 Create or update Storybook stories and documentation for a Spark UI component. Use when the user wants to add stories, update documentation, or improve component documentation in Storybook.

How do I install create-storybook-docs?

Run the command: npx killer-skills add leboncoin/spark-web/create-storybook-docs. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for create-storybook-docs?

Key use cases include: 新しいReact UIコンポーネントのStorybookストーリーを作成する, アクセシビリティ機能を使用して既存のコンポーネントドキュメントを更新する, Spark UIコンポーネントのMDXドキュメントを生成する.

Which IDEs are compatible with create-storybook-docs?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for create-storybook-docs?

React UIコンポーネントが必要. Storybookのインストールが必要. ストーリーとMDXドキュメントの作成および更新のみ.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add leboncoin/spark-web/create-storybook-docs. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use create-storybook-docs immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

create-storybook-docs

Install create-storybook-docs, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Create Storybook Documentation

Create or update Storybook stories and MDX documentation for Spark UI components.

When to Use

  • User wants to add Storybook stories
  • User wants to update component documentation
  • Component is missing stories or documentation
  • User mentions "stories", "storybook", or "documentation"

Instructions

Stories File (ComponentName.stories.tsx)

  1. Meta Definition:

    tsx
    1const meta: Meta<typeof ComponentName> = { 2 title: 'Components/ComponentName', 3 component: ComponentName, 4} 5export default meta
  2. Story Guidelines:

    • Use *.stories.tsx extension
    • One story per prop/feature (avoid mixing many props)
    • Use Components/* meta structure
    • Avoid _args when using JS logic (useState, etc.)
    • Include all variants and states
  3. Required Stories (in order):

    • Default: Minimal common case
    • Uncontrolled: Stateful with internal state
    • Controlled: Stateless with props
    • Other variants alphabetically

Documentation File (ComponentName.doc.mdx)

  1. Sections Order (must follow this exact order):

    • Title: H1 heading with component description
    • Meta: Link to stories using <Meta of={stories} />
    • Install: Installation instructions
    • Import: Import examples
    • Props table: Use custom ArgTypes component
    • Usage: Examples in specific order (Default, Uncontrolled, Controlled, others alphabetically)
    • Advanced Usage: Complex examples and edge cases
    • Accessibility: Keyboard interactions and a11y requirements
  2. Usage Section Format:

    mdx
    1## Usage 2 3### Default 4<Canvas of={stories.Default} /> 5 6### Uncontrolled 7Description of uncontrolled usage. 8<Canvas of={stories.Uncontrolled} /> 9 10### Controlled 11Description of controlled usage. 12<Canvas of={stories.Controlled} />
  3. For Compound Components:

    • Use ArgTypes with subcomponents prop
    • Document each sub-component separately

Reference

See documentation/contributing/WritingStories.mdx for complete guidelines.

Examples

Reference existing stories in packages/components/src/*/ComponentName.stories.tsx and ComponentName.doc.mdx.

関連スキル

Looking for an alternative to create-storybook-docs or another community skill for your workflow? Explore these related open-source skills.

すべて表示

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

カスタマイズ可能なウィジェットプラグインをprompts.chatのフィードシステム用に生成する

149.6k
0
AI

flags

Logo of vercel
vercel

React フレームワーク

138.4k
0
ブラウザ

pr-review

Logo of pytorch
pytorch

Pythonにおけるテンソルと動的ニューラルネットワーク(強力なGPUアクセラレーション)

98.6k
0
開発者