react-component-generator
Generate React components following best practices with TypeScript, Tailwind CSS, and Zustand state management. Use this skill when the user requests creating React components, UI elements, or mentions component generation. Supports common component patterns including basic components, forms, lists, cards, buttons, modals, and stateful components with Zustand integration.
What this skill does
# React Component Generator This skill provides templates and best practices for generating high-quality React components using TypeScript, Tailwind CSS, and Zustand for state management. ## Purpose Generate production-ready React components that follow industry best practices and maintain consistency across the codebase. The skill includes pre-built templates for common component patterns and comprehensive best practices documentation. ## When to Use This Skill Use this skill when: - The user requests creating a new React component - The user asks for UI elements like forms, buttons, cards, lists, or modals - The user mentions component generation or scaffolding - The user needs a component with Zustand state management - The user wants to follow React best practices ## Available Component Templates The skill provides the following templates in the `assets/` directory: ### 1. BasicComponent.tsx A simple presentational component template for UI elements without complex state. **When to use:** - Simple UI elements (headers, footers, containers) - Presentational components that receive data via props - Reusable layout components **Key features:** - TypeScript interface for props - JSDoc documentation - Tailwind CSS styling - Children support ### 2. StatefulComponent.tsx A component with integrated Zustand store for state management. **When to use:** - Components requiring complex local state - Components with multiple related state values - Components with state that might be shared across instances - Components with async operations **Key features:** - Complete Zustand store setup - State and actions separation - TypeScript interfaces for store - Loading state handling ### 3. FormComponent.tsx A form component with validation, error handling, and submission logic. **When to use:** - Login/registration forms - Contact forms - Data entry forms - Any form with validation requirements **Key features:** - Built-in validation logic - Error state management - Form submission handling - Accessible form inputs with labels - Loading state during submission ### 4. ListComponent.tsx A reusable list component for displaying collections of items. **When to use:** - Todo lists - User lists - Product catalogs - Any itemized data display **Key features:** - Generic item type support - Item click handlers - Delete functionality - Empty state handling - Responsive design ### 5. CardComponent.tsx A flexible card component for content display. **When to use:** - Product cards - User profile cards - Content previews - Dashboard widgets **Key features:** - Optional image section - Header and footer sections - Click handling - Flexible content area ### 6. ButtonComponent.tsx A versatile button component with multiple variants and states. **When to use:** - Any button needs in the application - Call-to-action buttons - Form submission buttons - Action buttons **Key features:** - Multiple variants (primary, secondary, danger, success, outline) - Multiple sizes (sm, md, lg) - Loading state with spinner - Disabled state - Full-width option ### 7. ModalComponent.tsx A modal/dialog component with backdrop and accessibility features. **When to use:** - Confirmation dialogs - Content detail views - Settings panels - Any overlay UI **Key features:** - ESC key handling - Backdrop click to close - Body scroll prevention - Multiple sizes - Accessible markup ## How to Use Templates When generating a component: 1. **Identify the component type** - Determine which template best fits the user's requirements. 2. **Read the appropriate template** - Load the template file from the `assets/` directory: ``` Read assets/BasicComponent.tsx ``` 3. **Customize the template** - Replace placeholder names and add specific functionality: - Replace `ComponentName` with the actual component name (PascalCase) - Update the interface name from `ComponentNameProps` to match - If using Zustand, update `useComponentNameStore` to match - Modify props to match requirements - Adjust Tailwind classes for styling - Add or remove features as needed 4. **Follow naming conventions** - Refer to `references/best-practices.md` for: - Component naming (PascalCase) - Props interface naming (ComponentName + "Props") - Store naming (use + ComponentName + "Store") - File organization 5. **Apply best practices** - Consult `references/best-practices.md` for guidance on: - TypeScript patterns - Zustand store structure - Tailwind CSS class organization - Accessibility requirements - Performance optimization - Error handling ## Component Naming Guidelines Apply these naming rules when generating components: 1. **Component name**: Use PascalCase based on the user's description - "login form" → `LoginForm` - "user profile card" → `UserProfileCard` - "data table" → `DataTable` 2. **Props interface**: ComponentName + "Props" - `LoginForm` → `LoginFormProps` - `UserProfileCard` → `UserProfileCardProps` 3. **Zustand store**: "use" + ComponentName + "Store" - `LoginForm` → `useLoginFormStore` - `DataTable` → `useDataTableStore` 4. **File name**: Match the component name exactly - `LoginForm` → `LoginForm.tsx` - `UserProfileCard` → `UserProfileCard.tsx` ## Best Practices Reference For detailed guidance, consult `references/best-practices.md` which covers: - Component structure and file organization - TypeScript best practices - Zustand state management patterns - Tailwind CSS organization and responsive design - Component composition patterns - Event handler naming - Performance optimization (memoization, lazy loading) - Accessibility (semantic HTML, ARIA, keyboard navigation) - Error handling and boundaries - Testing considerations ## Example Workflow **User request**: "Create a user login form component" **Steps**: 1. Identify that this requires a form component 2. Read `assets/FormComponent.tsx` template 3. Customize for login use case: - Rename to `LoginForm` - Update `LoginFormProps` interface - Modify form fields (username/email, password) - Add appropriate validation - Update styling with Tailwind classes 4. Place in appropriate directory (e.g., `components/auth/LoginForm.tsx`) 5. Verify accessibility and best practices **User request**: "Create a product card with image and price" **Steps**: 1. Identify that this requires a card component 2. Read `assets/CardComponent.tsx` template 3. Customize for product use case: - Rename to `ProductCard` - Update `ProductCardProps` to include price, product details - Adjust image section for product photos - Add price display in content or footer - Style with Tailwind for product display 4. Place in `components/products/ProductCard.tsx` **User request**: "Create a todo list with Zustand" **Steps**: 1. Identify that this requires a stateful list component 2. Read both `assets/StatefulComponent.tsx` and `assets/ListComponent.tsx` 3. Combine patterns: - Create Zustand store for todo state management - Use list display pattern for rendering todos - Add todo-specific actions (add, toggle, delete) - Integrate form for adding new todos 4. Name as `TodoList` with `useTodoListStore` 5. Place in `components/todos/TodoList.tsx` ## Notes - Always use TypeScript with proper type definitions - Follow Tailwind's mobile-first responsive design approach - Include proper JSDoc comments for better IDE support - Ensure components are accessible (ARIA labels, keyboard navigation) - Consider performance (memoization for expensive operations) - Keep components focused and composable - Export both named and default exports for flexibility
Related in Design
contribute
IncludedLocal-only OSS contribution command center. Auto-refreshes the user's in-flight PR and issue state on invoke so conversations start with full context — no need to brief Claude on what's in flight. Helps the user find issues to contribute to on GitHub, builds per-repo dossiers of what each upstream expects (CLA, DCO, branch convention, AI policy, draft-first, review bots, issue templates), runs deterministic gates before any external action so AI-assisted contributions don't reach maintainers as slop. State is markdown-only: candidate files at ~/.contribute-system/candidates/, repo dossiers at ~/.contribute-system/research/, append-only event log at ~/.contribute-system/log.jsonl. No database, no cloud calls. Use when the user asks about their PRs / issues / contributions, wants to find new work to take on, claim an issue, build/refresh a repo's dossier, or draft a Design Issue or PR. Trigger with "/contribute", "what's my PR status", "find a contribution", "claim issue X", "draft a Design Issue for Y", "refresh dossier for Z".
architectural-analysis
IncludedUser-triggered deep architectural analysis of a codebase or scoped subtree across eight modes — information architecture, data flow, integration points, UI surfaces, interaction patterns, data model, control flow, and failure modes. This skill should be used when the user asks to "diagram this codebase," "map the architecture," "show the data flow," "give me an ERD," "trace control flow," "find the integration points," "verify the layout pattern," "audit the UX architecture," or any similar request whose primary deliverable is mermaid diagrams plus cited reports under docs/architecture/. Dispatches haiku/sonnet sub-agents in parallel for per-mode exploration, then verifies every citation mechanically before any node lands in a diagram. Not for one-off prose explanations of code (use code-explanation) or for high-level system design from scratch (use system-design).
mcp
IncludedModel Context Protocol (MCP) server development and tool management. Languages: Python, TypeScript. Capabilities: build MCP servers, integrate external APIs, discover/execute MCP tools, manage multi-server configs, design agent-centric tools. Actions: create, build, integrate, discover, execute, configure MCP servers/tools. Keywords: MCP, Model Context Protocol, MCP server, MCP tool, stdio transport, SSE transport, tool discovery, resource provider, prompt template, external API integration, Gemini CLI MCP, Claude MCP, agent tools, tool execution, server config. Use when: building MCP servers, integrating external APIs as MCP tools, discovering available MCP tools, executing MCP capabilities, configuring multi-server setups, designing tools for AI agents.
react-native-skia
IncludedDesign, build, debug, and optimise high-polish animated graphics in React Native or Expo using @shopify/react-native-skia, Reanimated, and Gesture Handler. Use when the user wants canvas-driven UI, shaders, paths, rich text, image filters, sprite fields, Skottie, video frames, snapshots, web CanvasKit setup, or performance tuning for custom motion-heavy elements such as loaders, hero art, cards, charts, progress indicators, particle systems, or gesture-driven surfaces. Also use when the user asks for fluid, glow, glass, blob, parallax, 60fps/120fps, or GPU-friendly animated effects in React Native, even if they do not explicitly say "Skia". Do not use for ordinary form/layout work with standard views.
plaid
IncludedProduct Led AI Development — guides founders from idea to launched product. Six capabilities: Idea (discover a product idea), Validate (pressure-test the idea against fatal flaws, problem reality, competition, and 2-week MVP feasibility), Plan (vision intake + document generation), Design (translate image references into a design.md spec), Launch (go-to-market strategy), and Build (roadmap execution). Use when someone says "PLAID", "plaid idea", "help me find an idea", "product idea", "idea from my business", "idea from my expertise", "plaid validate", "validate my idea", "pressure-test", "is this idea good", "find fatal flaws", "validate the problem", "plan a product", "define my vision", "generate a PRD", "product strategy", "plaid design", "design from image", "translate image to design", "create design.md", "extract design tokens", "plaid launch", "go-to-market", "launch plan", "GTM strategy", "launch playbook", "plaid build", "build the app", "start building", or "execute the roadmap".
nextjs-framer-motion-animations
IncludedAdds production-safe Motion for React or Framer Motion animations to Next.js apps, including reveal, hover and tap micro-interactions, whileInView, stagger, AnimatePresence, layout and layoutId transitions, reorder, scroll-linked UI, and lightweight route-content transitions. Use when the user asks to add, refactor, or debug Motion or Framer Motion in App Router or Pages Router codebases, especially around server/client boundaries, reduced motion, LazyMotion, bundle size, hydration, or route transitions. Avoid for GSAP-style timelines, WebGL or 3D scenes, heavy scroll storytelling, or CSS-only effects unless Motion is explicitly requested.