chakra-ui-refactor
Review, convert, and improve UI code using Chakra UI v3. Use this skill whenever a user wants to review Chakra UI code for issues, convert plain HTML/CSS, Tailwind, CSS Modules, or styled-components to Chakra UI, clean up messy Chakra components, fix layout structure or token usage, or asks anything like "is this correct", "what's wrong with this", "review my component", "refactor this", "clean up", "convert", or "chakra-ify this" — even without the words "review" or "refactor". Trigger on any request to check, improve, or convert Chakra UI code, however casually phrased.
What this skill does
# Chakra UI Refactor & Review
You are reviewing and improving UI code using Chakra UI v3. Depending on what
the developer needs, you produce a structured critique, rewritten code, or both.
Read the code and project context fully before producing any output.
---
## Step 1 — Orient and determine intent
Before any output, establish:
- **Chakra UI version** — check `package.json`; use v3 by default
- **Framework** — Next.js App Router, Pages Router, Vite, plain React
- **Source type** — existing Chakra, plain HTML/CSS, Tailwind, CSS Modules,
styled-components
- **What the user is asking:**
- **Review only** — "check this", "is this correct/idiomatic", "what's wrong",
"review my code" → produce a critique with targeted fixes, no full rewrite
- **Refactor / convert** — "refactor this", "convert from Tailwind", "clean
this up" → produce rewritten code
- **Both** — "review and fix" → critique first, then the rewritten code
State your reading at the top of the response (e.g. "Reviewing as existing
Chakra v3 code. Assuming Next.js App Router.").
If code isn't shared yet, ask for it. Don't review a description of code.
---
## Step 2 — Analyze the code
Work through the code across these dimensions regardless of output mode. For
review, they become findings. For refactor, they become the checklist of what to
fix.
**Accessibility**
- Do all interactive elements have accessible labels? (`aria-label` on icon
buttons, `htmlFor`/`id` on label+input pairs, `alt` on images)
- Is keyboard navigation possible? (focus rings not suppressed, interactive
elements are actually focusable)
- Does the heading hierarchy make sense? (no skipped levels, no `h1` used as a
style shortcut)
- Are form fields wrapped in `Field.Root` with `Field.Label` and
`Field.ErrorText`?
- Does the component work without color as the only signal?
**Responsiveness**
- Do layout components specify behavior at multiple breakpoints?
- Are there hardcoded pixel values where responsive tokens would work better?
- Would this break on mobile? (fixed widths, `overflow: hidden` on small
viewports)
**Chakra API correctness**
- Are v3 prop names used? (`disabled` not `isDisabled`, `colorPalette` not
`colorScheme`, `gap` not `spacing`, `open` not `isOpen`)
- Are compound components used correctly? (`Field.Root`/`Field.Label`,
`Dialog.Root`/`Dialog.Content`, etc.)
- Is `"use client"` placed correctly in Next.js App Router?
- Are there v2 patterns still present? (`extendTheme`, `ColorModeScript`,
`useColorModeValue`, `sx` prop)
**Token and style usage**
- Are hardcoded colors used where semantic tokens would work? (`bg="#f9fafb"` →
`bg="bg.subtle"`)
- Are raw hex or palette values used instead of semantic tokens? These won't
respect dark mode.
- Are there inline `style={{}}` props that should be Chakra style props?
**Component structure**
- Is there unnecessary nesting? (`Box > Box > Box` when one would do)
- Is manual spacing (`mt={4}` on every child) used where `Stack gap={4}` would
be cleaner?
- Are the right layout primitives used? (`Flex` vs `Stack` vs `Grid` vs
`SimpleGrid`)
**Maintainability**
- Does the same visual pattern repeat 3+ times? (candidate for a component or
recipe)
- Are there one-off style overrides that suggest a recipe or slot recipe?
- Are prop types / TypeScript types present and accurate?
---
## Step 3a — Review output
Use this when the user wants a critique, not a rewrite.
Categorize findings by impact:
**Critical** — bugs and accessibility failures that break behavior or exclude
users
- Missing `aria-label` on an icon-only button
- Form field with no label association
- Interactive `Box` with `onClick` but no keyboard access
- Wrong v3 prop name that silently does nothing (`isDisabled` doesn't disable in
v3)
- `"use client"` missing on a component that uses hooks in App Router
**Improvements** — correctness and quality issues that aren't urgent
- Hardcoded colors that break dark mode
- Missing responsive breakpoints
- Unnecessary nesting or wrong layout primitive
- v2 patterns that still work but should be updated
**Optional suggestions** — non-blocking ideas
- Extract a repeated pattern into a component
- Replace a one-off style with a recipe variant
- Add a missing TypeScript type
For each critical issue and significant improvement, show a minimal fix:
```
**Missing aria-label on close button** (Critical)
The IconButton for closing the dialog has no accessible label.
// Before
<IconButton icon={<CloseIcon />} onClick={onClose} />
// After
<IconButton aria-label="Close dialog" icon={<CloseIcon />} onClick={onClose} />
```
Skip sections with nothing to report. Calibrate length to the code — a 20-line
component needs a tight review, not an exhaustive one.
---
## Step 3b — Refactor / convert output
Use this when the user wants rewritten code.
### Conversion strategy by source
**From plain HTML / CSS**
| HTML | Chakra equivalent |
| ------------------------ | ------------------------------------------- |
| `<div>` layout wrapper | `Box`, `Flex`, `Stack`, `Grid` |
| `<section>`, `<article>` | `Box as="section"`, `Box as="article"` |
| `<nav>` | `Box as="nav"` |
| `<ul>` / `<li>` | `Box as="ul"` / `Box as="li"`, or `Stack` |
| `<button>` | `Button` or `IconButton` |
| `<a>` | `Link` |
| `<img>` | `Image` (preserve `alt`) |
| `<input>`, `<select>` | `Input`, `NativeSelect` inside `Field.Root` |
| CSS | Chakra style prop |
| ------------------------ | ----------------------------- |
| `display: flex` | `Flex` or `display="flex"` |
| `flex-direction: column` | `Stack` or `flexDir="column"` |
| `gap: 16px` | `gap={4}` (1 unit = 4px) |
| `padding: 16px 24px` | `py={4} px={6}` |
| `border-radius: 8px` | `rounded="md"` |
| `color: #6b7280` | `color="fg.muted"` |
| `background: #f9fafb` | `bg="bg.subtle"` |
**From Tailwind CSS**
| Tailwind | Chakra |
| ------------------------------ | ---------------------------------------- |
| `flex`, `flex-col`, `flex-row` | `Flex`, `flexDir` |
| `gap-4` | `gap={4}` |
| `p-4`, `px-6`, `py-2` | `p={4}`, `px={6}`, `py={2}` |
| `text-sm`, `font-bold` | `fontSize="sm"`, `fontWeight="bold"` |
| `rounded-lg`, `shadow-md` | `rounded="lg"`, `shadow="md"` |
| `w-full`, `max-w-lg` | `w="full"`, `maxW="lg"` |
| `hidden md:flex` | `display={{ base: "none", md: "flex" }}` |
| `grid grid-cols-3` | `SimpleGrid columns={3}` |
| `text-gray-500`, `bg-gray-100` | `color="fg.muted"`, `bg="bg.subtle"` |
| `hover:bg-gray-100` | `_hover={{ bg: "bg.subtle" }}` |
Replace Tailwind responsive prefixes with Chakra's breakpoint object syntax:
```tsx
// Tailwind: text-sm md:base lg:text-lg
<Text fontSize={{ base: "sm", md: "md", lg: "lg" }} />
```
**From CSS Modules** — convert what you can to Chakra props; keep `className`
for styles that can't be expressed as props (animations, complex selectors):
```tsx
// Before
<div className={styles.card}>...</div>
// After — converted to props; className kept only for unconvertible styles
<Box p={4} rounded="lg" shadow="sm" className={styles.fadeIn}>...</Box>
```
Once all class names are eliminated, remove the import entirely.
**From styled-components / @emotion/styled** — map to `Box` with equivalent
style props, then remove the import and uninstall if no longer used elsewhere:
```tsx
// Before
const Card 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.