domino-ui-bootstrap

domino-ui-bootstrap is a skill for Claude Code from dominodatalab/domino-claude-plugin. It costs 259 tokens per session (7,367 once invoked), scanned C, original, MIT.

A setup workflow for making a Vite and React 18 TypeScript project use Domino, a design system for Domino applications and extensions. It can create a standalone project or adapt an existing compatible React project.

In plain words
What is it for?
Use it to scaffold a new Domino frontend or retrofit Domino dependencies, theming, routing, and project configuration into an existing Vite and React project. It is limited to standalone Domino application or extension frontends.
Why use it?
It prevents setup mismatches that can break the Domino libraries, such as using the wrong React version, router version, or routing style. It also adapts to the project's current setup instead of blindly replacing it.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

Part of the domino-claude-plugin plugin — 23 skills, 4 commands, 3 agents, 1 MCP server shipped together

Good fit Use it to scaffold a new Domino frontend or retrofit Domino dependencies, theming, routing, and project configuration into an existing Vite and React project. It is limited to standalone Domino application or extension frontends.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dominodatalab/domino-claude-plugin/domino-ui-bootstrap
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 dominodatalab/domino-claude-plugin --skill domino-ui-bootstrap
Clone the repo
git clone --depth 1 https://github.com/dominodatalab/domino-claude-plugin

Made for: Claude Code.

Or install domino-claude-plugin, the plugin that ships this one along with the rest of its 23 skills, 4 commands, 3 agents, 1 MCP server.

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 domino-ui-bootstrap

README.md
[![agentmods](https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/domino-ui-bootstrap/github.svg)](https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/domino-ui-bootstrap)
Your own site
<a href="https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/domino-ui-bootstrap"><img src="https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/domino-ui-bootstrap/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 domino-ui-bootstrap

Your own site · 80×15
<a href="https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/domino-ui-bootstrap"><img src="https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/domino-ui-bootstrap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 259 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,367 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 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.00259 $0.07367
Opus 5 $0.00130 $0.03683
Sonnet 5 $0.00052 $0.01473
Haiku 4.5 $0.00026 $0.00737

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

Security

Grade C, and why

domino-ui-bootstrap scanned grade C with 2 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 11d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

If the directory had existing content and the user chose "overwrite", clear it first (`rm -rf` the contents, not the directory itself).

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- **Retrofits:** add 8a if `base` is missing/`/`. For API calls, scan for `fetch('/`, `axios.get('/`, `new WebSocket('ws`, and any `pathname`-based URL construction. Surface root-absolute or pathname-based URLs and recom
skills/domino-ui-bootstrap/SKILL.md · 385 lines

How it starts

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

Domino UI Bootstrap

This skill makes a project use the Domino design system correctly. It works in three contexts:

  • Empty or non-existent directory — scaffold a Vite + React 18 + TS project from scratch, then apply the Domino setup.
  • Existing Vite + React project — leave the project alone, retrofit just the Domino bits (deps, theme provider, MCP, CLAUDE.md).
  • Existing React project on a different bundler/setup — flag the mismatch to the user, then proceed only with their direction.

In all three cases, the skill executes the work end-to-end (runs commands, edits files), but it adapts to what's already there instead of overwriting blindly.

Why this exists

A handful of choices look arbitrary but aren't — they match the rest of the Domino ecosystem and are easy to get wrong:

  • React 18, not 19. @dominodatalab/extensions-tools peer-depends on React 18. React 19 fails at install.
  • react-router 5, not 6. The library uses v5 APIs (HashRouter from react-router-dom@5).
  • HashRouter, not BrowserRouter. This is what the library expects internally. It also gives cleaner isolation between the app's frontend and backend — client-side routes live entirely after the #, so they never collide with backend paths or the Domino proxy prefix, and inner navigation/linking works without server-side rewrite rules.
  • The npm package name is @dominodatalab/extensions-tools. Storybook code snippets show imports from @domino/base-components — that's a Storybook-internal alias. Rewrite every such import to @dominodatalab/extensions-tools before pasting into a Domino project. This is the single most common mistake.
  • DominoThemeProviderDecorator wraps the whole React tree. Without it, Domino components render unstyled or crash.
  • URLs must survive the proxy path. Domino serves the app under a prefix (e.g. /preview/<appId>/), so asset and API URLs must be document-relative — not root-absolute. Vite's default base: '/' emits /assets/… and bypasses the proxy; user-written fetch('/api/…') does the same. Set base: './' and build API URLs against document.baseURI. See Step 8. Invisible in local dev (pathname is /), surfaces only after deployment.

Read the full file on GitHub · 385 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. 11d ago First seen · 385 lines · 259 tokens per session scan C 529b191677b6

Subscribe to this mod's changes

domino-ui-bootstrap is a skill published in the GitHub repository dominodatalab/domino-claude-plugin (6 stars, last pushed 2mo ago), licensed MIT. It adds 259 tokens to every session and 7,367 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it C with 2 findings (recursive force delete, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

frontend-ui-dark-ts

Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.

microsoft/skills · 48 tokens

cobejs

Use when adding a lightweight interactive globe with cobe (canvas setup, markers, interaction, performance, integration with React/Next.js).

MengTo/Skills · 31 tokens

stitch::react-components

Converts Stitch designs into modular Vite and React components, or syncs/updates existing React components to align with the latest Stitch designs, using system-level networking and AST-based validation.

google-labs-code/stitch-skills · 43 tokens

seed-design

An integration guide for SEED Design, covering shared component specifications and foundations plus React and Lynx implementation guidance.

daangn/seed-design · 33 tokens

ss-studio

Turn a product brief and optional references into three distinct creative directions, a human-selected StyleSeed interaction plan, generated image/video asset jobs, a working UI prototype, and a verified prototype-first showcase reel. Use for client concepts, app interaction exploration, trendy but coherent UI…

bitjaru/styleseed · 75 tokens