Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By Ankish8
Intelligent React component creation with design system validation, Figma integration, and automated testing
npx claudepluginhub ankish8/storybook-npm --plugin component-creatorAnalyzes codebase to check if component exists, suggests creating variants vs new components, and identifies reusable subcomponents. Activate when creating new components to avoid duplication and ensure proper architecture.
Ensures CSS variables are used instead of hardcoded colors, validates semantic tokens, checks responsive design patterns, and enforces design system consistency. Activate when creating or validating components.
Generates comprehensive Storybook stories following the Button/AlertConfiguration pattern with installation instructions, design tokens table, typography table, and usage examples. Activate when creating component documentation.
Modifies files
Hook triggers on file write and edit operations
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
AI-powered generative UI with Thesys - create React components from natural language.
Design and build UIs with Subframe. Create pixel-perfect React + Tailwind pages using your design system, explore design variations, and implement with business logic.
UI/UX Design Plugin - Visual fidelity from Figma/mockups, design system enforcement, React UI prototyping with pattern memory, and brand icon asset generation.
Teach your AI agent the Plex UI component library — subpath imports, unified size scale (3xs–3xl), semantic colors, dark mode via light-dark(), and 460+ icons.
Suite of tools for creating elaborate, multi-component HTML artifacts using React, Tailwind CSS, and shadcn/ui. Use for complex artifacts requiring state management, routing, or shadcn/ui components.
Expert shadcn/ui with Radix UI and Base UI detection, component patterns, registries, theming, and migration
Create UIs matching the myOperator design system aesthetic. Generates standalone React/HTML/CSS code with consistent visual language.
Automated publishing workflow for myOperator UI CLI and MCP packages
Developer workflow plugin for myOperator component creation and release publishing
Create UIs matching the myOperator design system aesthetic. Generates standalone React/HTML/CSS code with consistent visual language.
Intelligent React component creation with design system validation, Figma integration, and automated testing
A React component library with CLI tooling for easy integration. Built with Tailwind CSS, fully compatible with Bootstrap projects.
# Initialize in your project
npx myoperator-ui init
# Add components
npx myoperator-ui add button badge table
import { Button } from "@/components/ui/button"
import { Badge } from "@/components/ui/badge"
function App() {
return (
<div>
<Button variant="default" size="md">
Click me
</Button>
<Badge variant="active">Active</Badge>
</div>
)
}
# Initialize project with Tailwind config
npx myoperator-ui init
# Add specific components
npx myoperator-ui add button
npx myoperator-ui add button badge table
# Interactive component selection
npx myoperator-ui add
# Update components to latest version
npx myoperator-ui@latest update button
npx myoperator-ui@latest update --all
# Preview updates without applying
npx myoperator-ui@latest update --all --dry-run
See CLI documentation for full command reference.
The CLI automatically detects Bootstrap and configures Tailwind to avoid style conflicts. All components use the tw- prefix by default.
# Install dependencies
npm install
# Run Storybook
npm run storybook
# Run tests
npm test
# Build CLI
cd packages/cli && npm run build
src/components/ui/ # Source components
packages/cli/ # CLI package (myoperator-ui)
scripts/ # Build and development scripts
MIT