chakra-ui-builder

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

A guide for building responsive and accessible user-interface components with Chakra UI version 3, a React component library. It covers setup, themes, reusable style values, and common application frameworks.

In plain words
What is it for?
Installing or configuring Chakra UI, creating components, forms, and pages, and building themes with shared style values and component variations.
Why use it?
It helps developers fit Chakra UI into the project’s existing framework, language, package manager, and coding conventions. It also provides guidance for making layouts work across screen sizes and for different users.

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-builder
Any agent
npx skills add punkadillo/figma-code-composer --skill chakra-ui-builder
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-builder

README.md
[![agentmods](https://agentmods.dev/badge/skills/punkadillo/figma-code-composer/chakra-ui-builder.svg)](https://agentmods.dev/skills/punkadillo/figma-code-composer/chakra-ui-builder)
Your own site
<a href="https://agentmods.dev/skills/punkadillo/figma-code-composer/chakra-ui-builder"><img src="https://agentmods.dev/badge/skills/punkadillo/figma-code-composer/chakra-ui-builder.svg" alt="Measured on agentmods" height="20"></a>
Per session 214 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,942 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.00214 $0.02942
Opus 5 $0.00107 $0.01471
Sonnet 5 $0.00043 $0.00588
Haiku 4.5 $0.00021 $0.00294

Measured 4d ago against content hash 6a21601c170f, 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-builder 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 4d 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-builder — 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-builder/SKILL.md · 375 lines

How it starts

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

Chakra UI Builder

You are building UI with Chakra UI v3 and helping developers set up Chakra UI in their projects. Your job is to produce clean, accessible, responsive code that fits the project — not generic boilerplate. Read the project context first, then build or set up.


Step 1 — Read the project context

Check package.json if available. Look for:

  • Chakra UI version (use v3 patterns by default; only use v2 if explicitly on v2)
  • Framework: Next.js App Router, Pages Router, Vite, plain React
  • TypeScript or JavaScript
  • Package manager (from lockfile: pnpm-lock.yaml, yarn.lock, bun.lock, package-lock.json)

Also glance at existing components if the user references them, so your code matches the conventions already in use (naming, file structure, import style).

If the requirements are vague or the component is complex enough that choices matter (layout direction, data shape, color palette, number of variants), ask before building rather than generating something that needs to be thrown away.


Project setup

If Chakra UI isn't installed yet, complete setup before building.

Install

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

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

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

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

Generate snippets with the CLI

npx @chakra-ui/cli snippet add

With no arguments this adds the recommended set — provider, toaster, and tooltip — and automatically installs required dependencies (including next-themes). Use --all to add every snippet, or snippet list to browse first.

The CLI detects your framework and writes files to the right place:

Framework Output path
Next.js (with src/) src/components/ui/
Next.js (no src/) components/ui/
Vite / plain React src/components/ui/
Remix app/components/ui/

Read the full file on GitHub · 375 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 4d ago First seen · 375 lines · 214 tokens per session scan A 6a21601c170f

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

figma-codegen

Generate framework-aware code from a Figma design. Reads the project's stack profile and emits code matching the existing framework (React/Vue/Svelte/Next/etc.) and styling (Tailwind/CSS/CSS-in-JS), reusing existing components and design tokens instead of regenerating from scratch. Triggers whenever the user wants a…

awdr74100/figwright · 145 tokens

from-intake

다른 워크스페이스에서 넘겨받은 자료에서 브랜드 근거를 뽑아 에셋에 반영한다.

TOKTOKHAN-DEV/agent-company · 3 tokens

accessibility-fundamentals

Reviews accessibility including WCAG, ARIA, keyboard navigation. Use when junior builds forms, buttons, modals, interactive elements, or asks "is this accessible", "a11y", "screen reader".

DanielPodolsky/ownyourcode · 49 tokens

dpf-writing-plans

Use when a filed DPF backlog item needs an implementation plan before code is written.

OpenDigitalProductFactory/opendigitalproductfactory · 23 tokens

aesthetic

Create aesthetically beautiful interfaces following proven design principles. Use when building UI/UX, analyzing designs from inspiration sites, generating design images with ai-multimodal, implementing visual hierarchy and color theory, adding micro-interactions, or creating design documentation. Includes workflows…

VoDaiLocz/kilo-kit-mcp · 146 tokens

shadscan

Audit a React/shadcn app for missing UI fundamentals — accessibility, interaction, empty/error/loading states, form wiring, responsive shell, production polish — with the shadscan CLI, then route each real fix to the dev-flow skill that owns it. The third pre-deploy gate, alongside compliance-audit (legal) and…

lukedj78/dev-flow · 215 tokens