chakra-ui-refactor
Original:🇺🇸 English
Translated
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.
5installs
Sourcechakra-ui/chakra-ui
Added on
NPX Install
npx skill4agent add chakra-ui/chakra-ui chakra-ui-refactorTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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 ; use v3 by default
package.json - 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? (on icon buttons,
aria-label/htmlForon label+input pairs,idon images)alt - Is keyboard navigation possible? (focus rings not suppressed, interactive elements are actually focusable)
- Does the heading hierarchy make sense? (no skipped levels, no used as a style shortcut)
h1 - Are form fields wrapped in with
Field.RootandField.Label?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, on small viewports)
overflow: hidden
Chakra API correctness
- Are v3 prop names used? (not
disabled,isDisablednotcolorPalette,colorSchemenotgap,spacingnotopen)isOpen - Are compound components used correctly? (/
Field.Root,Field.Label/Dialog.Root, etc.)Dialog.Content - Is placed correctly in Next.js App Router?
"use client" - Are there v2 patterns still present? (,
extendTheme,ColorModeScript,useColorModeValueprop)sx
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 props that should be Chakra style props?
style={{}}
Component structure
- Is there unnecessary nesting? (when one would do)
Box > Box > Box - Is manual spacing (on every child) used where
mt={4}would be cleaner?Stack gap={4} - Are the right layout primitives used? (vs
FlexvsStackvsGrid)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 on an icon-only button
aria-label - Form field with no label association
- Interactive with
Boxbut no keyboard accessonClick - Wrong v3 prop name that silently does nothing (doesn't disable in v3)
isDisabled - missing on a component that uses hooks in App Router
"use client"
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 |
|---|---|
| |
| |
| |
| |
| |
| |
| |
| |
| CSS | Chakra style prop |
|---|---|
| |
| |
| |
| |
| |
| |
| |
From Tailwind CSS
| Tailwind | Chakra |
|---|---|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
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
for styles that can't be expressed as props (animations, complex selectors):
classNametsx
// 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 with equivalent
style props, then remove the import and uninstall if no longer used elsewhere:
Boxtsx
// Before
const Card = styled.div`padding: 1rem; &:hover { background: #f3f4f6; }`
// After
<Box p={4} _hover={{ bg: "bg.muted" }} />From existing Chakra UI (cleanup)
- Flatten nesting; replace
Box > Box > Box/mton every child withmbStack gap={N} - Replace with
sx(v3 rename); update nestedcssselectors inside it&:hover - Replace →
bg="gray.50"and other semantic token equivalentsbg="bg.subtle" - Update v2 prop names: ,
isDisabled→disabled,colorScheme→colorPalettespacing→gap - Update compound components: ,
FormControl→Field.Root,Modal→DialogSelect→NativeSelect
Preserve behavior — non-negotiable
- Keep all event handlers, state variables, and conditional rendering exactly as-is
- Keep attributes; add missing ones where clearly needed
aria-* - Keep semantic HTML intent (→
<nav>, not justBox as="nav")Box - Keep where it exists; add it only when the component genuinely needs it
"use client" - Don't add just because a component uses Chakra UI
"use client" - A partially-converted component that works is better than a fully-converted one that doesn't
asChild
for Next.js Link and Image
asChildtsx
import NextLink from "next/link"
<ChakraLink asChild><NextLink href="/about">About</NextLink></ChakraLink>
import NextImage from "next/image"
<ChakraImage asChild><NextImage src="/hero.png" alt="Hero" width={800} height={400} /></ChakraImage>Refactor output format
1. Refactored code — complete, runnable, with correct imports
2. What changed — concise list focused on non-obvious decisions:
- Replaced <div className="flex gap-4"> with <Flex gap={4}>
- Replaced bg="#f9fafb" with bg="bg.subtle" for dark mode compatibility
- Kept form submit handler and validation logic unchanged
- Added aria-label to close icon button (was missing)3. Suggestions (optional) — meaningful improvements beyond this refactor:
extracting a reusable component, adopting a recipe, migrating a v2 pattern.
When to ask vs proceed
Proceed if the code and intent are clear. Ask when:
- The code isn't shared yet
- The component is very large and scope is unclear
- There's context or state you can't see that would change the review
- There's ambiguous behavior that could be interpreted multiple ways
State assumptions at the top of the response when you proceed without asking.