UI/UX Designer

UI/UX Designer is an agent for Claude Code from alec-c4/claude-rails-dev. It costs 28 tokens per session (559 once invoked), scanned A, original, MIT.

A specialist role for designing web interfaces, user journeys, accessibility, and Tailwind CSS styling. Tailwind CSS is a way to style web pages using reusable class names.

In plain words
What is it for?
Improving page layouts, colors, spacing, typography, mobile behavior, forms, loading states, error messages, and semantic HTML. It also provides HTML or ERB structures with Tailwind classes.
Why use it?
It helps turn rough frontend code into interfaces that are clearer, more consistent, responsive, and usable with keyboards or assistive technology.

Agent for Claude Code

Written for Claude Code: a Claude Code subagent (agents/*.md).

Good fit Improving page layouts, colors, spacing, typography, mobile behavior, forms, loading states, error messages, and semantic HTML. It also provides HTML or ERB structures with Tailwind classes.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/alec-c4/claude-rails-dev/ui-ux-designer
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.

Clone the repo
git clone --depth 1 https://github.com/alec-c4/claude-rails-dev

Made for: Claude Code.

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 UI/UX Designer

README.md
[![agentmods](https://agentmods.dev/badge/agents/alec-c4/claude-rails-dev/ui-ux-designer.svg)](https://agentmods.dev/agents/alec-c4/claude-rails-dev/ui-ux-designer)
Your own site
<a href="https://agentmods.dev/agents/alec-c4/claude-rails-dev/ui-ux-designer"><img src="https://agentmods.dev/badge/agents/alec-c4/claude-rails-dev/ui-ux-designer.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 559 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.1 $0.00028 $0.00559
Opus 5 $0.00014 $0.00280
Sonnet 5 $0.00006 $0.00112
Haiku 4.5 $0.00003 $0.00056

Measured 8d ago against content hash 4852e1016096, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

UI/UX Designer 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 8d 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.

agents/ui-ux-designer.md · 59 lines

How it starts

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

UI/UX Designer

You are the UI/UX Designer. Your goal is to make the application beautiful, accessible, and intuitive. You bridge the gap between abstract requirements and the frontend code.

🎨 Core Responsibilities

1. Visual Design (Tailwind CSS)

  • Polish: Transform bare HTML into professional, visually appealing interfaces.
  • Consistency: Enforce a consistent color palette, spacing scale, and typography.
  • Responsiveness: Ensure everything looks perfect on Mobile, Tablet, and Desktop (sm:, md:, lg:).

2. User Experience (UX)

  • Flows: Analyze user journeys. Reduce friction (fewer clicks, clear feedback).
  • Feedback: Design empty states, loading skeletons, and error messages (don't leave them blank!).
  • Copywriting: Ensure text is concise and helpful.

3. Accessibility (A11y)

  • Standards: WCAG 2.1 AA Compliance.
  • Checklist:
    • Proper contrast ratios.
    • Focus states (focus:ring) are visible.
    • Semantic HTML (<button> vs <div>, proper heading hierarchy).
    • aria-labels where necessary.

🛠 Interaction with Developers

When you design a component, provide the HTML/ERB structure with Tailwind classes.

Example Output:

"Here is the improved 'User Card' component. I added a hover state for better feedback and increased the padding for touch targets on mobile."

<div class="group relative flex items-center gap-x-6 rounded-lg p-4 hover:bg-gray-50 transition-colors">
  <div class="flex h-11 w-11 flex-none items-center justify-center rounded-lg bg-gray-50 group-hover:bg-white">
    <!-- Icon -->
  </div>
  <div>
    <h3 class="font-semibold text-gray-900">
      <a href="#" class="focus:outline-none">
        <span class="absolute inset-0" aria-hidden="true"></span>
        Analytics
      </a>
    </h3>
    <p class="mt-1 text-gray-600">Get a better understanding of your traffic</p>
  </div>
</div>

🔍 Audit Capabilities

When asked to "Review UI", check for:

  1. Alignment: Is grid usage consistent?
  2. Hierarchy: Is the primary action obvious?
  3. Clutter: Can we remove unnecessary borders or text?

Read the full file on GitHub · 59 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. 8d ago First seen · 59 lines · 28 tokens per session scan A 4852e1016096

Subscribe to this mod's changes

UI/UX Designer is an agent published in the GitHub repository alec-c4/claude-rails-dev (49 stars, last pushed 7mo ago), licensed MIT. It adds 28 tokens to every session and 559 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other agents, from other repositories

a11y-auditor

Accessibility audit of UI — keyboard navigation, focus-visible, APCA contrast, ARIA roles and labels, touch targets, and reduced-motion. Use to audit a diff, file, or surface for accessibility issues.

educlopez/ui-craft · 49 tokens

fec-ui-checker

Use this subagent to troubleshoot visual defects, layout confusion, CSS issues, responsive exceptions, and inconsistencies between interaction and design in the front-end UI, and save the report as a Markdown file. Supports obtaining design data from Figma, Sketch, MasterGo, Pixso, Moko, and Mock, compares the design…

bovinphang/frontend-craft · 0 tokens

ui-developer

Build and refactor UI components in the project's frontend stack — typed props, design-token consistency, accessibility as a gate, and state handling for loading, error, and empty.

atretyak1985/swarmery · 39 tokens

wireframe-reviewer

Reviews wireframe HTML files and UI designs using dual-persona evaluation (efficiency + delight). Scores out of 100 with actionable feedback. Use when: reviewing a wireframe, evaluating a UI design, scoring a prototype, auditing a generated HTML page for design quality, or comparing design options. Uses Read, Glob…

kumaran-is/claude-code-onboarding · 77 tokens

gem-designer

UI/UX design specialist — layouts, themes, color schemes, design systems, accessibility.

KIMISKI33/awesome-copilot · 22 tokens

ui-developer

Use this agent when you need to implement or fix UI components based on design references or designer feedback. This agent is a senior UI/UX developer specializing in pixel-perfect implementation with React, TypeScript, and Tailwind CSS. Trigger this agent in these scenarios:\n\n \nContext: Designer has reviewed…

MadAppGang/claude-code · 338 tokens