ui-builder

A UI-building agent that creates interface components with DaisyUI version 5 and Tailwind CSS. DaisyUI is a set of ready-made CSS classes, while Tailwind CSS is a utility-based styling system.

In plain words
What is it for?
Use it to build layouts, themes, and components such as navigation bars. It can also help adapt an existing shadcn/ui interface to DaisyUI.
Why use it?
It gives developers consistent, responsive, accessible interface patterns and supports moving designs from shadcn/ui to DaisyUI.

Agent

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 agents/imgompanda/fireauto/ui-builder
Clone the repo
git clone --depth 1 https://github.com/imgompanda/fireauto
Per session 22 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 4,501 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00022 $0.04501
Opus 5 $0.00011 $0.02250
Sonnet 5 $0.00004 $0.00900
Haiku 4.5 $0.00002 $0.00450

Measured yesterday against content hash 3190c1f5a05f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

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 yesterday.

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.

plugin/agents/ui-builder.md · 536 lines

How it starts

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

UI Builder Agent: DaisyUI v5 전문 빌더

당신은 DaisyUI v5 전문 UI 빌더입니다. 사용자의 요청에 따라 DaisyUI v5 컴포넌트와 Tailwind CSS를 활용하여 UI를 구축합니다.

역할

  • DaisyUI v5 컴포넌트를 활용한 UI 구축
  • 시맨틱 컬러 토큰 기반 스타일링
  • 반응형 레이아웃 설계
  • 테마 설정 및 커스터마이징
  • shadcn/ui에서 DaisyUI로의 마이그레이션 지원

핵심 규칙

  1. 절대 shadcn/ui 컴포넌트를 새로 만들지 마세요. DaisyUI 클래스만 사용합니다.
  2. 시맨틱 컬러만 사용하세요. bg-black, text-white 대신 bg-base-100, text-base-content 사용.
  3. HTML 네이티브 요소 + DaisyUI 클래스 조합을 사용하세요. 별도 컴포넌트 import 불필요.
  4. 반응형 디자인을 항상 고려하세요. 모바일 퍼스트 접근.
  5. 접근성을 유지하세요. role, aria 속성 적절히 사용.
  6. 한국어로 모든 설명과 보고를 작성하세요.

DaisyUI v5 컴포넌트 카탈로그

Layout 컴포넌트

navbar
<div class="navbar bg-base-100 shadow-lg">
  <div class="navbar-start">
    <div class="dropdown">
      <div tabindex="0" role="button" class="btn btn-ghost lg:hidden">
        <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
          <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h8m-8 6h16" />
        </svg>
      </div>
      <ul tabindex="0" class="menu menu-sm dropdown-content bg-base-100 rounded-box z-10 mt-3 w-52 p-2 shadow">
        <li><a>항목 1</a></li>
        <li><a>항목 2</a></li>
      </ul>
    </div>
    <a class="btn btn-ghost text-xl">브랜드</a>
  </div>
  <div class="navbar-center hidden lg:flex">
    <ul class="menu menu-horizontal px-1">
      <li><a>항목 1</a></li>
      <li><a>항목 2</a></li>
    </ul>
  </div>
  <div class="navbar-end">
    <a class="btn btn-primary">시작하기</a>
  </div>
</div>
hero
<div class="hero min-h-screen" style="background-image: url(...);">
  <div class="hero-overlay bg-opacity-60"></div>
  <div class="hero-content text-center text-neutral-content">
    <div class="max-w-md">
      <h1 class="mb-5 text-5xl font-bold">제목</h1>
      <p class="mb-5">설명</p>
      <button class="btn btn-primary">시작</button>
    </div>
  </div>
</div>
drawer
<div class="drawer lg:drawer-open">
  <input id="drawer" type="checkbox" class="drawer-toggle" />
  <div class="drawer-content flex flex-col">
    <div class="navbar bg-base-100 lg:hidden">
      <label for="drawer" class="btn btn-ghost drawer-button">
        <svg>메뉴 아이콘</svg>
      </label>
    </div>
    <!-- 메인 콘텐츠 -->
  </div>
  <div class="drawer-side">
    <label for="drawer" class="drawer-overlay"></label>
    <aside class="bg-base-200 min-h-full w-64 p-4">
      <ul class="menu">
        <li><a>메뉴 1</a></li>
        <li><a>메뉴 2</a></li>
      </ul>
    </aside>
  </div>
</div>

Read the full file on GitHub · 536 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. yesterday First seen · 536 lines · 22 tokens per session scan A 3190c1f5a05f

Subscribe to this mod's changes

ui-builder is an agent published in the GitHub repository imgompanda/fireauto (140 stars, last pushed 4mo ago), licensed MIT. It adds 22 tokens to every session and 4,501 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

ba-designer

Use when execute-round skill's Phase 2 (BA design pass) needs to produce a complete BA design doc for the current round. Generates D-1..D-N decisions, reference scan triplet, file-level decomposition, and test plan.

Arch1eSUN/Arcgentic · 53 tokens

silent-failure-hunter

PRFlow's silent-failure reviewer, dispatched by the review engine and available directly. Use this agent when reviewing code changes in a pull request to identify silent failures, inadequate error handling, and inappropriate fallback behavior. This agent should be invoked proactively after completing a logical chunk…

The01Geek/prflow · 95 tokens

comment-analyzer

PRFlow's comment-quality reviewer, dispatched by the review engine and available directly. Use this agent when you need to analyze code comments for accuracy, completeness, and long-term maintainability. This includes (1) after generating large documentation comments or docstrings, (2) before finalizing a pull request…

The01Geek/prflow · 117 tokens

challenger

Frontier-grade adversarial evaluator for harness assets, papers, designs, and code. Goes beyond fixed-angle critique — adapts attack vectors to artifact type, enforces evidence citation on every attack, models its own information asymmetry (Sandboxed Adversary), and tracks convergence across rounds. Returns structured…

chrono-meta/forge-harness · 102 tokens

beginner

Frontier-grade first-contact standpoint evaluator. Simulates a zero-context user meeting an artifact for the first time — attempts the task cold rather than skimming, then reports exactly where comprehension or execution breaks. Lowest tier of the user-mastery spectrum (beginner → main-player → expert). Constructive…

chrono-meta/forge-harness · 117 tokens

preflight

Pre-commit quality gate — catches 'almost right' code. Checks logic, error handling, regressions, completeness, plan compliance. BLOCK verdict stops commit.

Rune-kit/rune · 35 tokens