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

Об этом навыке

Идеально для агентов Frontend, которым необходима расширенная документация компонентов UI React и функции доступности. 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

Идеально для агентов Frontend, которым необходима расширенная документация компонентов UI React и функции доступности. 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.

Зачем использовать этот навык

Наделяет агентов возможностью создавать и обновлять истории Storybook и документацию MDX для компонентов UI React, используя функции доступности и улучшая обнаруживаемость компонентов через определения Meta и файлы MDX.

Подходит лучше всего

Идеально для агентов Frontend, которым необходима расширенная документация компонентов UI React и функции доступности.

Реализуемые кейсы использования for create-storybook-docs

Создание историй Storybook для новых компонентов UI React
Обновление документации существующих компонентов с функциями доступности
Генерация документации MDX для компонентов UI Spark

! Безопасность и ограничения

  • Требует компонентов UI React
  • Требует установки Storybook
  • Ограничен созданием и обновлением историй и документации 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?

Идеально для агентов Frontend, которым необходима расширенная документация компонентов UI React и функции доступности. 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: Создание историй Storybook для новых компонентов UI React, Обновление документации существующих компонентов с функциями доступности, Генерация документации MDX для компонентов UI 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?

Требует компонентов UI React. Требует установки 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.

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.

Связанные навыки

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. 🦞

widget-generator

Logo of f
f

Создание настраиваемых плагинов виджетов для системы ленты новостей prompts.chat

flags

Logo of vercel
vercel

Фреймворк React

138.4k
0
Браузер

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Разработчик