chakra-ui-migrate

chakra-ui-migrate is a skill for Claude Code, Codex from punkadillo/figma-code-composer. It costs 137 tokens per session (3,522 once invoked), scanned A, a copy of chakra-ui-migrate, MIT.

A guide for upgrading Chakra UI projects from version 2 to version 3. Chakra UI is a React component library for building web interfaces, and the guide covers package changes, setup, renamed properties, theming, and framework updates.

In plain words
What is it for?
Use it when migrating a Chakra UI application, updating its provider or theme, replacing old component patterns, or fixing upgrade-related errors.
Why use it?
It helps identify breaking changes that can stop an existing project from working after the upgrade. It starts by checking the project's actual versions, framework, package manager, and current setup.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/punkadillo/figma-code-composer/chakra-ui-migrate
Any agent
npx skills add punkadillo/figma-code-composer --skill chakra-ui-migrate
Clone the repo
git clone --depth 1 https://github.com/punkadillo/figma-code-composer

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for chakra-ui-migrate

README.md
[![agentmods](https://agentmods.dev/badge/skills/punkadillo/figma-code-composer/chakra-ui-migrate.svg)](https://agentmods.dev/skills/punkadillo/figma-code-composer/chakra-ui-migrate)
Your own site
<a href="https://agentmods.dev/skills/punkadillo/figma-code-composer/chakra-ui-migrate"><img src="https://agentmods.dev/badge/skills/punkadillo/figma-code-composer/chakra-ui-migrate.svg" alt="Measured on agentmods" height="20"></a>
Per session 137 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,522 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00137 $0.03522
Opus 5 $0.00068 $0.01761
Sonnet 5 $0.00027 $0.00704
Haiku 4.5 $0.00014 $0.00352

Measured 5d ago against content hash 3d9883b635fd, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

chakra-ui-migrate scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to chakra-ui-migrate — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.figma-pipeline/skills/chakra-ui-migrate/SKILL.md · 495 lines

How it starts

The opening of the file, as written. The whole thing — 495 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Chakra UI Migration: v2 → v3

You are guiding a developer through migrating their project from Chakra UI v2 to v3. Work through the steps below in order. Inspect the project first — never guess the package versions or framework.

Node requirement: Chakra UI v3 requires Node >= 20.x. Confirm before proceeding if the environment is uncertain.


Step 1 — Inspect the project

Read these files to understand the current state:

package.json

Look for:

  • Current @chakra-ui/react version (v2.x vs v3.x)
  • Related packages: @chakra-ui/icons, @chakra-ui/hooks, @chakra-ui/next-js, @emotion/styled, framer-motion
  • Framework: Next.js (App Router or Pages Router), Vite, plain React
  • Package manager (from lockfiles: pnpm-lock.yaml, yarn.lock, bun.lock, package-lock.json)

Also spot-check key files when helpful:

  • Provider / theme setup (_app.tsx, layout.tsx, theme.ts)
  • Color mode usage (ColorModeScript, useColorMode, useColorModeValue)
  • Any component files showing heavy v2 patterns

Step 2 — Update packages

Remove v2-only dependencies

# npm
npm uninstall @chakra-ui/icons @chakra-ui/hooks @chakra-ui/next-js @emotion/styled framer-motion

# pnpm
pnpm remove @chakra-ui/icons @chakra-ui/hooks @chakra-ui/next-js @emotion/styled framer-motion

# yarn
yarn remove @chakra-ui/icons @chakra-ui/hooks @chakra-ui/next-js @emotion/styled framer-motion

@emotion/styled and framer-motion are no longer required in v3.

Install v3 core packages

# npm
npm install @chakra-ui/react @emotion/react

# pnpm
pnpm add @chakra-ui/react @emotion/react

# yarn
yarn add @chakra-ui/react @emotion/react

Replacements for removed packages

Removed Replacement
@chakra-ui/icons lucide-react or react-icons
@chakra-ui/hooks react-use or usehooks-ts
@chakra-ui/next-js asChild prop pattern (see Next.js section)

Read the full file on GitHub · 495 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 495 lines · 137 tokens per session scan A 3d9883b635fd

Subscribe to this mod's changes

chakra-ui-migrate is a skill published in the GitHub repository punkadillo/figma-code-composer (3 stars, last pushed 16d ago), licensed MIT. It adds 137 tokens to every session and 3,522 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to chakra-ui-migrate, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories