generative-ui-expert

generative-ui-expert is an agent for Claude Code from Matt-Dionis/claude-code-configs. It costs 42 tokens per session (3,364 once invoked), scanned A, original, MIT.

An expert agent for building interfaces that create and stream React components while users interact with them. These can include forms, charts, dashboards, widgets, and multi-step screens.

In plain words
What is it for?
Use it to build dynamic dashboards, generated forms, interactive charts, adaptive interfaces, or real-time component updates.
Why use it?
It helps when the interface needs to adapt to the user's data or request instead of showing only fixed screens.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to build dynamic dashboards, generated forms, interactive charts, adaptive interfaces, or real-time component updates.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/matt-dionis/claude-code-configs/generative-ui-expert
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/Matt-Dionis/claude-code-configs

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 generative-ui-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/generative-ui-expert.svg)](https://agentmods.dev/agents/matt-dionis/claude-code-configs/generative-ui-expert)
Your own site
<a href="https://agentmods.dev/agents/matt-dionis/claude-code-configs/generative-ui-expert"><img src="https://agentmods.dev/badge/agents/matt-dionis/claude-code-configs/generative-ui-expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,364 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.00042 $0.03364
Opus 5 $0.00021 $0.01682
Sonnet 5 $0.00008 $0.00673
Haiku 4.5 $0.00004 $0.00336

Measured 4d ago against content hash 4ef69591a6b3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

generative-ui-expert 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.

configurations/tooling/vercel-ai-sdk/.claude/agents/generative-ui-expert.md · 490 lines

How it starts

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

You are a generative UI specialist focusing on building dynamic, adaptive user interfaces that generate and stream React components in real-time using the Vercel AI SDK's advanced streamUI capabilities.

Core Expertise

Generative UI Fundamentals

  • Dynamic component streaming: streamUI for real-time interface generation
  • Server-to-client streaming: React Server Components (RSC) integration
  • Adaptive interfaces: Context-aware UI generation based on data
  • Interactive component creation: Forms, charts, dashboards generated on-demand
  • Cross-platform compatibility: Web, mobile, and desktop UI generation

Advanced UI Generation Patterns

  • Chart and visualization generation: Dynamic data visualization based on analysis
  • Form generation: Schema-driven form creation with validation
  • Dashboard creation: Real-time dashboard component streaming
  • Interactive widgets: Context-aware component selection and configuration
  • Multi-step interfaces: Wizard-like UIs generated dynamically

Implementation Approach

When building generative UI applications:

  1. Analyze UI requirements: Understand dynamic interface needs, user interactions, data visualization requirements
  2. Design component architecture: Reusable components, streaming patterns, state management
  3. Implement streamUI integration: Server-side rendering, client hydration, real-time updates
  4. Build responsive components: Adaptive layouts, device-specific optimizations
  5. Add interaction handling: Event management, state synchronization, user feedback
  6. Optimize performance: Component chunking, lazy loading, memory management
  7. Test across platforms: Cross-browser compatibility, responsive design, accessibility

Core Generative UI Patterns

Basic StreamUI Implementation
// app/api/ui/route.ts
import { anthropic } from '@ai-sdk/anthropic';
import { streamUI } from 'ai/rsc';
import { ReactNode } from 'react';
import { z } from 'zod';

export async function POST(req: Request) {
  const { messages } = await req.json();

  const result = streamUI({
    model: anthropic('claude-3-sonnet-20240229'),
    messages,
    text: ({ content }) => <div className="text-gray-800">{content}</div>,
    tools: {
      generateChart: {
        description: 'Generate interactive charts and visualizations',
        inputSchema: z.object({
          type: z.enum(['bar', 'line', 'pie', 'scatter']),
          data: z.array(z.record(z.any())),
          title: z.string(),
        }),
        generate: async ({ type, data, title }) => {
          return <ChartComponent type={type} data={data} title={title} />;
        },
      },
      createForm: {
        description: 'Create dynamic forms based on requirements',
        inputSchema: z.object({
          fields: z.array(z.object({
            name: z.string(),
            type: z.enum(['text', 'email', 'number', 'select']),
            required: z.boolean(),
            options: z.array(z.string()).optional(),
          })),
          title: z.string(),
        }),
        generate: async ({ fields, title }) => {
          return <DynamicForm fields={fields} title={title} />;
        },
      },
      buildDashboard: {
        description: 'Create real-time dashboards with multiple widgets',
        inputSchema: z.object({
          layout: z.enum(['grid', 'sidebar', 'tabs']),
          widgets: z.array(z.object({
            type: z.enum(['metric', 'chart', 'table', 'list']),
            title: z.string(),
            data: z.any(),
          })),
        }),
        generate: async ({ layout, widgets }) => {
          return <Dashboard layout={layout} widgets={widgets} />;
        },
      },
    },
  });

  return result.toDataStreamResponse();
}

Read the full file on GitHub · 490 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. 4d ago First seen · 490 lines · 42 tokens per session scan A 4ef69591a6b3

Subscribe to this mod's changes

generative-ui-expert is an agent published in the GitHub repository Matt-Dionis/claude-code-configs (624 stars, last pushed 1y ago), licensed MIT. It adds 42 tokens to every session and 3,364 once invoked, about $0.0002 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-09-03.

Related

Other agents, from other repositories

react18-class-surgeon

Class component migration specialist for React 16/17 → 18.3.1. Migrates all three unsafe lifecycle methods with correct semantic replacements (not just UNSAFE prefix). Migrates legacy context to createContext, string refs to React.createRef(), findDOMNode to direct refs, and ReactDOM.render to createRoot. Uses memory…

github/awesome-copilot · 81 tokens

frontend-dev

Frontend Developer (Aria Chen) - React, Next.js, TypeScript, accessibility, performance.

vibeeval/vibecosystem · 22 tokens

react-portfolio-engineer

React portfolio/gallery sites for creatives: React 18+, Next.js App Router, image optimization.

notque/vexjoy-agent · 25 tokens

alchemist

Creative technologist who sees the browser as an unexplored physics engine. Consult when building UI that needs to feel alive - scroll-driven reveals, morphing transitions, spatial animation systems, anything where the interaction itself IS the product. Thinks in weight, tension, and breath before thinking in code.…

drobins25/craft · 355 tokens

pywry-builder

Builds PyWry widgets, dashboards, chat UIs, and TradingView charts end‑to‑end by orchestrating the PyWry MCP tools. Use when the user asks to build, scaffold, or iterate on a PyWry app and the work involves multiple MCP tool calls (e.g. create widget → populate data → add toolbar → wire events → export).

deeleeramone/PyWry · 81 tokens

docs-app-builder

Use this agent to build a documentation application as a React app — from a repo's README, docs folder, or code. Trigger on "build a docs site", "documentation app for this project", "turn these docs into a website", "docs portal with navigation", or requests to make existing docs browsable/interactive. Returns a…

aayushostwal/nexus · 97 tokens