Local plugins for myOperator UI
npx claudepluginhub ankish8/storybook-npmAutomated publishing workflow for myOperator UI CLI and MCP packages
Intelligent React component creation with design system validation, Figma integration, and automated testing
Create UIs matching the myOperator design system aesthetic. Generates standalone React/HTML/CSS code with consistent visual language.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
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