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

À propos de ce Skill

Parfait pour les agents Frontend qui ont besoin de documentation avancée de composants d'interface utilisateur React et de fonctionnalités d'accessibilité. 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

Parfait pour les agents Frontend qui ont besoin de documentation avancée de composants d'interface utilisateur React et de fonctionnalités d'accessibilité. 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.

Pourquoi utiliser cette compétence

Permet aux agents de créer et de mettre à jour des histoires Storybook et une documentation MDX pour les composants d'interface utilisateur React, en exploitant les fonctionnalités d'accessibilité et en améliorant la découverte de composants grâce aux définitions Meta et aux fichiers MDX.

Meilleur pour

Parfait pour les agents Frontend qui ont besoin de documentation avancée de composants d'interface utilisateur React et de fonctionnalités d'accessibilité.

Cas d'utilisation exploitables for create-storybook-docs

Création d'histoires Storybook pour de nouveaux composants d'interface utilisateur React
Mise à jour de la documentation de composants existants avec des fonctionnalités d'accessibilité
Génération de documentation MDX pour les composants d'interface utilisateur Spark

! Sécurité et Limitations

  • Nécessite des composants d'interface utilisateur React
  • Nécessite l'installation de Storybook
  • Limité à la création et à la mise à jour d'histoires et de documentation 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?

Parfait pour les agents Frontend qui ont besoin de documentation avancée de composants d'interface utilisateur React et de fonctionnalités d'accessibilité. 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: Création d'histoires Storybook pour de nouveaux composants d'interface utilisateur React, Mise à jour de la documentation de composants existants avec des fonctionnalités d'accessibilité, Génération de documentation MDX pour les composants d'interface utilisateur 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?

Nécessite des composants d'interface utilisateur React. Nécessite l'installation de Storybook. Limité à la création et à la mise à jour d'histoires et de documentation 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.

Compétences associées

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

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

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

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur