agentsclimarketplace

Ui arsenal

Skill umararshad4/skill-arsenal/ui-arsenal

A growing arsenal of Claude Agent SDK skills for serious frontend, design, and engineering work. Currently ships ui-arsenal: premium component-library expert for React + Next.js + Tailwind.

Install
npx -y skills add umararshad4/skill-arsenal --skill ui-arsenal

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Premium component-library expert for React + Next.js + Tailwind. Knows shadcn/ui, Radix, HeroUI, Magic UI, Aceternity, ReactBits, 21st.dev, Tailwind UI, Cult UI, Tremor, Recharts, TanStack Table — their install paths, doc URLs, decision boundaries, and how to fetch live component source. Use when the user asks to add/build/install a UI component, section, block, hero, pricing, navbar, footer, form, chart, table, dashboard, bento, marquee, dock, animated background, or asks "which library should I use for X", "pull this component from Y", "find a top-tier component for Z", or wants to integrate components from any of the listed libraries.

SKILL.md

8.1 KB, as published. Nobody here has run it

UI Arsenal

A curated knowledge layer over the best React + Next.js + Tailwind component libraries. Job: pick the right source, fetch the live code, adapt it to the project, enforce premium taste rules, verify before reporting done.

MANDATORY before claiming "done": run SELF-CHECK.md. It is the single forcing function preventing AI-generic output. Skip it and the work regresses.

When to load reference files

Sourcing (where to get components):

Quality rules (apply during build):

  • Numeric premium rules (type, spacing, color, radii) → TASTE-RULES.md
  • Motion language (easing, durations, stagger) → MOTION.md
  • Async surface states (forms, tables, dashboards) → STATES.md

Verification (before reporting done):

Don't preload all nine. The decision matrix below covers fetching; SELF-CHECK is the only one you run every time.

Verification scripts

Two scripts live at scripts/:

  • bash ~/.claude/skills/ui-arsenal/scripts/scan-tokens.sh — discovers the project's design tokens (CSS vars, Tailwind config, fonts, existing components). Run before fetching.
  • bash ~/.claude/skills/ui-arsenal/scripts/verify.sh [URL] — runs npm run build + Lighthouse + axe and prints numbers. Run before reporting done.

Both scripts produce output you must quote verbatim in your response — not paraphrase.

Decision matrix (the core)

User asks forUseWhy
Button, Input, Dialog, Dropdown, Form, Sheet, Tabs, Toastshadcn/uiComposable, accessible (Radix-based), themeable, owned source
Animated hero text, sparkles, beam, meteors, globe, marquee, dock, bento, number-tickerMagic UIShadcn-compatible CLI, motion-tuned, drop-in
Spotlight cards, infinite-moving-cards, 3D card, background-gradient-animation, world-mapAceternity UIFramer Motion heavy, hero/landing showpieces
Animated text/links, scroll effects, fluid blobs, particle backgroundsReactBitsNiche motion components, jsrepo CLI
Search "any component anywhere, ranked"21st.devMarketplace aggregator — use when shadcn/Magic UI don't have it
Marketing blocks (paid OK)Tailwind UIOfficial premium, polished but generic — combine with taste-skill
Animated shadcn-style cards, modals with motionCult UIshadcn-compatible animated variants
Dashboard cards, KPIs, area/bar/donut charts (high-level)TremorOpinionated dashboard primitives
Custom chart with full controlRecharts (direct) or shadcn charts (Recharts + theme tokens)Composable, the shadcn chart.tsx wraps it
Sortable/filterable/paginated tableTanStack Table + shadcn data-table.tsxHeadless logic + themed UI
Modal/Popover/Tooltip with full a11y, no stylesRadix Primitives directOnly when shadcn's wrapper is too opinionated
Complete monolithic component lib (Button, Card, Modal all from one source)HeroUIUse only on greenfield — conflicts with shadcn/Magic UI, do not mix

Hard rules

  1. Default stack = shadcn/ui + Magic UI + Aceternity. They share a Tailwind/Radix DNA and compose cleanly. Pick this unless the user explicitly wants HeroUI.
  2. Never mix HeroUI with shadcn. Different theming systems, different component philosophies. Pick one.
  3. Always fetch live — use WebFetch on the official doc URL, don't recite from memory. Library code changes; URLs in LIBRARIES.md are stable, the code on them is not.
  4. Adapt before pasting — match project's Tailwind config, theme tokens (bg-background not bg-white), font variables (font-sans not hardcoded), and existing cn() utility path.
  5. Verify install state before adding — check components.json for shadcn config, check package.json for existing deps. Don't reinstall what's there.
  6. Hand off design polish — after the component lands and renders, invoke a taste-skill (soft-skill for premium agency feel, brutalist-skill for industrial, minimalist-skill for editorial, gpt-taste for motion-heavy) to lift it from "drop-in" to "shipped."

Anti-patterns — the AI-generic tells

Before fetching anything, internalize what makes UIs look AI-generated. Top-notch almost always means breaking these defaults:

  • shadow-md on every card — flat or varied elevation reads more premium. Shadow is hierarchy, not decoration.
  • Every section py-24 — vary rhythm: 16 / 24 / 32 / 48 / 64. Different sections, different breathing.
  • rounded-lg everywhere — use a radius scale: sm (4px) for inputs, md (8px) for cards, xl/2xl (16–24px+) for hero blocks.
  • Inter + Geist with nothing else — premium needs character. Pair a display face (Fraunces, Instrument Serif, Switzer, Cabinet Grotesk, PP Editorial) with the body.
  • gray-500 for all secondary text — build a real hierarchy: foreground / foreground-muted / foreground-subtle. One color for everything = generic.
  • Centered hero with subhead beneath — the AI tutorial default. Try left-aligned asymmetric, eyebrow + display headline + side-floated body, or split-pane.
  • 3-column pricing, always — break the grid. 2 + 1 featured, vertical stack, or full-width Enterprise row.
  • Identical CTA weight everywhere — primary should dominate (filled, larger); secondary should recede (ghost, smaller). Hierarchy = scannability.
  • Lucide for every icon — mix in custom marks, illustrated accents, or commit deliberately to one alternative (Phosphor, Iconoir, Tabler).
  • Lorem ipsum copy — write real, specific copy at draft time. Generic copy makes generic UI regardless of layout quality.
  • Stock-photo people on white — use product imagery, abstract gradients, or none. Never the smiling-stock-woman.
  • Default browser focus rings — design a branded ring style. Default outline screams "unfinished."

If the fetched component contains any of these, override during the WORKFLOWS.md adaptation step. The component is the foundation, not the finished UI.

Quick start

User: "Add a pricing section."

  1. Check PATTERNS.md → pricing recipe says shadcn blocks first, fall back to 21st.dev.
  2. WebFetch https://ui.shadcn.com/blocks → find pricing block → grab source.
  3. Run WORKFLOWS.md adapt step: swap hardcoded colors for theme tokens, match project's font.
  4. Install: npx shadcn@latest add [block-url].
  5. Place at components/sections/pricing.tsx, import into page.
  6. Hand off to soft-skill for typography/spacing polish.

What this skill does NOT do

  • It is not a design system — for typography/spacing/color rules, use taste-skill, soft-skill, brutalist-skill, minimalist-skill, gpt-taste.
  • It does not generate components from scratch — it sources from libraries. For from-scratch generation, use image-to-code-skill or stitch-skill.
  • It does not redesign existing UIs — for that, use redesign-skill.

Coordinate with these — don't duplicate them.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.