storybook-gen
Generate Storybook stories from React components. Use when documenting components or setting up a design system.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/lxgicstudios/storybook-genStorybook Generator
Point it at a React component. Get back complete Storybook stories with all the variants, controls, and edge cases. No more writing boilerplate stories by hand.
One command. Zero config. Just works.
Quick Start
npx ai-storybook ./src/components/Button.tsx
What It Does
- Analyzes component props and generates appropriate controls
- Creates stories for common states (default, disabled, loading, error)
- Handles complex prop types including objects and callbacks
- Generates proper TypeScript types for story args
- Includes realistic example data, not just placeholder text
Usage Examples
# Generate stories for a single component
npx ai-storybook ./src/components/Card.tsx
# Process entire components directory
npx ai-storybook ./src/components/ --recursive
# Output CSF3 format
npx ai-storybook ./src/Button.tsx --format csf3
# Include interaction tests
npx ai-storybook ./src/Modal.tsx --with-interactions
# Specify output directory
npx ai-storybook ./src/Input.tsx -o ./stories/
Best Practices
- Write good prop types first - Better TypeScript types mean better generated stories
- Include JSDoc comments - The AI uses your documentation to create meaningful descriptions
- Generate, then customize - Use this for the boilerplate, add your specific edge cases manually
- Keep components focused - Components with clear, single responsibilities generate cleaner stories
When to Use This
- Setting up Storybook for an existing codebase
- Adding a new component and need stories fast
- Documenting a component library for your team
- Creating a design system with consistent story patterns
Part of the LXGIC Dev Toolkit
This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.
Find more:
- GitHub: https://github.com/LXGIC-Studios
- Twitter: https://x.com/lxgicstudios
- Substack: https://lxgicstudios.substack.com
- Website: https://lxgic.dev
Requirements
No install needed. Just run with npx. Node.js 18+ recommended.
npx ai-storybook --help
How It Works
The tool parses your React component to extract prop types, default values, and component structure. It then generates Storybook stories that exercise each prop combination, creating meaningful examples based on the prop names and types.
License
MIT. Free forever. Use it however you want.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-lxgicstudios-storybook-gen": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
script-gen
Generate package.json scripts with AI. Use when setting up npm scripts.
email-template-gen
Generate responsive email templates. Use when building transactional emails.
branch-namer
Generate descriptive git branch names from plain English. Use when you need a branch name that follows conventions.
cloudflare-gen
Generate Cloudflare Workers configuration and code. Use when building on the edge.
adr-writer
Generate Architecture Decision Records with AI. Use when documenting technical decisions.