UI Designer

UI Designer is a skill for Claude Code, Codex from microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents. It costs 20 tokens per session (449 once invoked), scanned A, original, MIT.

A set of instructions for building this project's streaming chat interface with React, TypeScript, and Tailwind CSS. It defines patterns for messages, chat input, tool activity, Markdown, and live response updates.

In plain words
What is it for?
Building ChatPanel, MessageBubble, ChatInput, and ActivitySidebar components; rendering Markdown and highlighted code; and consuming newline-delimited events from POST /api/chat.
Why use it?
It gives the interface consistent component and streaming behavior, including how to display text, tool events, citations, and loading state.

Skill for Claude CodeCodex ✓ vendor

Written for no agent in particular: nothing here depends on one.

Good fit Building ChatPanel, MessageBubble, ChatInput, and ActivitySidebar components; rendering Markdown and highlighted code; and consuming newline-delimited events from POST /api/chat.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/ui-designer
About the project

microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents contains Microsoft Build 2026 session resources about connecting AI agents to tools, APIs, and documents through governed tool selection. It is intended for developers building agents that need efficient access to MCP servers, A2A, OpenAPI, connectors, built-in tools, and structured content from multimodal files. The catalogue add-ons are session instructions for exploring these agent-building patterns.

microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents · 10 stars · on GitHub · build.microsoft.com

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.

Any agent
npx skills add microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents --skill ui-designer
Clone the repo
git clone --depth 1 https://github.com/microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/ui-designer/github.svg)](https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/ui-designer)
Your own site
<a href="https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/ui-designer"><img src="https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/ui-designer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for UI Designer

Your own site · 80×15
<a href="https://agentmods.dev/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/ui-designer"><img src="https://agentmods.dev/badge/skills/microsoft/build26-brk242-turn-your-agents-into-action-connect-tools-apis-and-documents/ui-designer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 449 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.00020 $0.00449
Opus 5 $0.00010 $0.00225
Sonnet 5 $0.00004 $0.00090
Haiku 4.5 $0.00002 $0.00045

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

Security

Grade A, and why

UI 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 12d 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.

src/fibey/.github/skills/ui-designer/SKILL.md · 53 lines

What it actually says

UI Designer Skill

You are a specialist in building the chat interface for this project. Follow these patterns:

Tech Stack

  • React 18+ with functional components and hooks
  • TypeScript (strict mode)
  • Tailwind CSS v4 for styling (utility-first, no separate CSS files per component)
  • Vite for dev server and bundling

Component Patterns

Chat Components

  • ChatPanel — main container with message list, auto-scrolls to latest message
  • MessageBubble — renders user (right-aligned, blue) and assistant (left-aligned, gray) messages
  • ChatInput — input bar with send button, disabled while streaming
  • ActivitySidebar — collapsible panel showing real-time tool invocations

Message Rendering

  • Use react-markdown with remark-gfm for assistant messages
  • Support code blocks with syntax highlighting
  • Handle streaming: messages append content as chunks arrive

Streaming UX

  • The frontend calls POST /api/chat and reads newline-delimited JSON events
  • Parse event types: message (text chunks), activity (tool events), citation (sources)
  • Show a typing indicator while streaming
  • Activity events appear in the sidebar in real-time with status badges (pending → running → complete)

File Organization

ui/src/
├── api/client.ts        # Streaming fetch client
├── components/          # React components
├── hooks/useChat.ts     # Chat state management
├── App.tsx              # Root layout
├── main.tsx             # Entry point
└── index.css            # Tailwind imports

Styling Guidelines

  • Use Tailwind utility classes exclusively
  • Dark mode support via dark: variants
  • Responsive: sidebar collapses on mobile
  • Use bg-white dark:bg-gray-900 base palette
  • Smooth transitions for sidebar toggle and message appearance
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. 12d ago First seen · 53 lines · 20 tokens per session scan A 7bea424e4c01

Subscribe to this mod's changes

UI Designer is a skill published in the GitHub repository microsoft/Build26-BRK242-turn-your-agents-into-action-connect-tools-apis-and-documents (10 stars, last pushed 23d ago), licensed MIT. It adds 20 tokens to every session and 449 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-31.

Related

Other skills, from other repositories

component-search

Search 21st.dev component registry for production-ready React components. Finds components by natural language description, filters by framework and style system, returns ranked results with install instructions. Use when looking for UI components, finding alternatives to existing components, or sourcing design system…

yonatangross/orchestkit · 57 tokens

cometchat-react-v7-customization

Theme and brand the React v7 UI Kit — light/dark mode, CSS custom-property design tokens, per-component style overrides. Triggers: 'change chat colors', 'dark mode chat', 'match my brand', 'customize cometchat theme', 'override message list styles'.

cometchat/cometchat-skills · 67 tokens

absolute-ui

Build polished, intentional UIs with concrete CSS/Tailwind values — typography, color, layout, spacing, dark mode, accessibility, animations, components. Encodes specific, opinionated rules with exact values, not vague advice. Covers buttons, cards, forms, tables, navigation, dashboards, landing pages, onboarding, and…

maddhruv/absolute · 121 tokens

Tailwind CSS Patterns

Use this skill when styling UI with Tailwind and you want consistent design tokens, maintainable class composition, and good accessibility defaults.

AmariahAK/atlarix-skills · 4 tokens

ui-web

Generate slop-free UI for React + Tailwind + shadcn/ui. Use whenever the user asks to build, design, scaffold, restyle, or improve a screen, component, page, landing, app, or any web interface. Replaces frontend-design, design-html, design-shotgun, design-consultation. Two phases — tokens first (with approval gate)…

rshzrh/ui-design-skills · 99 tokens

antigravity-design-expert

Core UI/UX engineering skill for building highly interactive, spatial, weightless, and glassmorphism-based web interfaces using GSAP and 3D CSS.

ranbot-ai/awesome-skills · 39 tokens