| name | storybook-gen |
| description | Generate Storybook stories from React components. Use when documenting components or setting up a design system. |
Storybook 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
npx ai-storybook ./src/components/Card.tsx
npx ai-storybook ./src/components/ --recursive
npx ai-storybook ./src/Button.tsx --format csf3
npx ai-storybook ./src/Modal.tsx --with-interactions
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