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

v1.0.0

Acerca de este Skill

Perfecto para agentes Frontend que necesitan documentación avanzada de componentes de interfaz de usuario React y características de accesibilidad. 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

Perfecto para agentes Frontend que necesitan documentación avanzada de componentes de interfaz de usuario React y características de accesibilidad. 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.

¿Por qué usar esta habilidad?

Habilita a los agentes a crear y actualizar historias de Storybook y documentación MDX para componentes de interfaz de usuario React, aprovechando las características de accesibilidad y mejorando la capacidad de descubrimiento de componentes a través de definiciones de Meta y archivos MDX.

Mejor para

Perfecto para agentes Frontend que necesitan documentación avanzada de componentes de interfaz de usuario React y características de accesibilidad.

Casos de uso accionables for create-storybook-docs

Creación de historias de Storybook para nuevos componentes de interfaz de usuario React
Actualización de la documentación de componentes existentes con características de accesibilidad
Generación de documentación MDX para componentes de interfaz de usuario Spark

! Seguridad y limitaciones

  • Requiere componentes de interfaz de usuario React
  • Necesita instalación de Storybook
  • Limitado a la creación y actualización de historias y documentación MDX

Why this page is reference-only

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

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

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?

Perfecto para agentes Frontend que necesitan documentación avanzada de componentes de interfaz de usuario React y características de accesibilidad. 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: Creación de historias de Storybook para nuevos componentes de interfaz de usuario React, Actualización de la documentación de componentes existentes con características de accesibilidad, Generación de documentación MDX para componentes de interfaz de usuario Spark.

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?

Requiere componentes de interfaz de usuario React. Necesita instalación de Storybook. Limitado a la creación y actualización de historias y documentación 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.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

create-storybook-docs

Install create-storybook-docs, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
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.

Habilidades relacionadas

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

Ver todo

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
Inteligencia Artificial

widget-generator

Logo of f
f

Generar complementos de widgets personalizables para el sistema de feeds de prompts.chat

149.6k
0
Inteligencia Artificial

flags

Logo of vercel
vercel

El Marco de React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensores y redes neuronales dinámicas en Python con fuerte aceleración de GPU

98.6k
0
Desarrollador