
Design Prototype
FreeCreate interactive HTML design prototypes effortlessly.
Free · Opens the source repo
What Design Prototype does
The Design Prototype skill allows developers and designers to produce interactive design prototypes using the LobeHub design system. By leveraging the actual components from @lobehub/ui and Ant Design, this skill generates a single HTML file that can be opened directly in a browser without any build steps. This is particularly useful for creating mockups or interactive prototypes for web pages and flows, enabling quick exploration of design ideas before committing to full implementation.
The skill operates by bundling necessary libraries into a runtime script that is included in the generated HTML file. This ensures that the components and styles used in the prototype are consistent with those in the production environment. The prototypes are designed to showcase complete interactions, including states and transitions, which are essential for evaluating user experience. While the code may be simplified and lack internationalization, the focus is on delivering a visually and functionally complete representation of the design.
To get started, users need to build the runtime using a provided script, copy a template HTML file, and customize it with their design elements. Once set up, the prototype can be opened directly, allowing for immediate feedback and iteration. The skill also includes guidelines for verifying the prototype's functionality and visual fidelity, ensuring that it meets design standards before delivery.
This skill is ideal for UI/UX designers and front-end developers who need to create and test design concepts rapidly. It streamlines the prototyping process, making it easier to communicate ideas and gather feedback without the overhead of a full development environment.
When to use it
Use this skill when you need to create interactive mockups or design prototypes for web applications without a build process.
When not to use it
This skill may not be suitable for complex applications requiring extensive state management or advanced features beyond basic interaction.
What you can build with it
Rapid Design Exploration
Quickly create and test design concepts for web applications without needing a full development setup.
Client Feedback Sessions
Generate interactive prototypes to present to clients for feedback before final implementation.
UI/UX Testing
Use the prototypes to conduct usability tests and gather insights on user interactions with the design.
How to install Design Prototype
View source1. Install with the skills CLI
npx skills add lobehub/lobehub/design-prototype --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by lobehubDesign Prototype
One HTML file, double-click to open, fully interactive, rendered by the actual
design system (@lobehub/ui 5.x + antd 6 + antd-style tokens, exact versions from
this repo's node_modules) — while the source stays production-style React
(import { Block } from '@lobehub/ui', createStyles(({ css, token }) => …), hooks,
memo). Promotion to production is mostly "split into files", not "rewrite".
Prototype code may be quick-and-dirty (one file, no i18n, inline data) — but the interaction must be complete: states, transitions, and affordances are the point of a prototype, not its code style.
How it works
one-time (~2s, cached): scripts/build-runtime.sh → lobe-prototype-runtime.js (IIFE global)
+ vendored babel.min.js
per prototype (no build): single HTML = <script runtime> + babel-standalone
+ <script type="text/babel"> with production-style React
- The runtime bundles
react,react-dom/client,@lobehub/ui,@lobehub/ui/base-ui,antd(curated subset),antd-style,lucide-reactfrom the repo's ownnode_modules— so tokens/components/versions match production, and react/emotion/ theme-context are singletons by construction. - A 3-line
window.requireshim + babel'stransform-modules-commonjslets the prototype keep realimportstatements. ThemeProvider themeMode="auto"→ light/dark follow the OS.
⚠️ Don't re-attempt the pure-CDN route (esm.sh import maps). It was tried and rejected: esm.sh's CJS named-export analysis fails serially across antd's dep chain (
@ant-design/fast-color→@ant-design/colors→@rc-component/qrcode→ …), and?bundleleaks an unversionedreact-is404. Whack-a-mole, not a foundation.
Quickstart
-
Build the runtime into the prototype's directory (any dir works;
/tmpis fine):bash .agents/skills/design-prototype/scripts/build-runtime.sh /tmp/my-protoSkip if
lobe-prototype-runtime.js+babel.min.jsare already there and the design-system versions haven't bumped. -
Copy
references/template.htmlinto the same dir, rename, and replace the sampleAppwith the real surface. Keep the runtime shim block untouched. -
Open it (
open /tmp/my-proto/xxx.html) — no server, no build.
Verify before delivering
Headless-check it renders with zero console errors (the repo's e2e Playwright works):
// node /tmp/check.mjs — adjust paths
import { chromium } from '<repo>/e2e/node_modules/playwright/index.mjs';
const b = await chromium.launch();
const p = await b.newPage();
const errs = [];
p.on('pageerror', (e) => errs.push(String(e)));
await p.goto('file:///tmp/my-proto/xxx.html');
await p.waitForSelector('#root *', { timeout: 30000 });
await p.screenshot({ path: '/tmp/proto.png' }); // Read the screenshot yourself
console.log('errors:', errs);
await b.close();
Then Read the screenshot — a prototype is a visual deliverable; don't ship it
sight-unseen. Check light + dark (emulate prefers-color-scheme) and a narrow
viewport if the surface has a mobile story.
What's in the runtime (extend freely)
See assets/entry.mjs — the single source of truth. Currently:
@lobehub/ui: ActionIcon, Alert, Avatar, Block, Button, Center, Collapse, DraggablePanel, Drawer, DropdownMenu, Empty, Flexbox, Highlighter, Hotkey, Icon, Image, Input, InputNumber, Markdown, Modal, NeuralNetworkLoading, Popover, ScrollShadow, SearchBar, Segmented, Select, Skeleton, SortableList, Tabs, Tag, Text, TextArea, ThemeProvider, Tooltip@lobehub/ui/base-ui: full namespace (Select, Modal, DropdownMenu, Switch, Toast, FloatingSheet, …)antd: App, Badge, Checkbox, Divider, Dropdown, Progress, Radio, Slider, Space, Steps, Tableantd-style,lucide-react,react,react-dom/client: full namespaces
Missing a component → add to entry.mjs, rerun the build script (~2s). Sizes:
curated ≈ 16MB (fine from disk); a full export * from '@lobehub/ui' works too
(≈ 27MB) if you'd rather never curate.
Pitfalls
Switchlives in@lobehub/ui/base-ui, not the root package (as do the other base-ui primitives). Importing it from the root fails the runtime build.- Use
createStyles(runtime), notcreateStaticStyles— static extraction needs a build step. This is the one sanctioned deviation from production style; note it when handing the prototype to an implementer. - babel must stay the raw UMD file (unpkg/jsdelivr). esm.sh rewrites it to ESM
and a classic
<script src>chokes onexport. - The require shim throws with the module name when an import isn't in the runtime — that's the "add to entry.mjs and rebuild" signal, not a template bug.
Text typeaccepts onlysecondary|success|warning|danger|info;Tag colorhas noprimary(DESIGN.md "Applying tokens in components").
Design bar (same as production surfaces)
A prototype is a surface — the ux checklists apply to what it demonstrates:
- Show at least one non-happy-path state (empty / loading / error / in-progress), ideally behind a state-toggle strip like the template's. A happy-path-only prototype under-specifies the design and silently blesses missing states.
- Reuse the app's surface contracts: side panels are
DraggablePanel(collapse + drag-resize come free), loading is skeleton/NeuralNetworkLoading(never antdSpin), modals viacreateModal-style flows. - Don't paint affordances you don't wire (
cursor: zoom-inwith no zoom, keycap chips with no keys) — in an interactive prototype a dead affordance is a spec bug. - Walk the ux Quick review against the prototype before delivering; annotate anything deliberately out of scope in an HTML comment so the implementer knows it's a cut, not a decision.
Frequently asked questions about Design Prototype
Similar skills
Penpot UI/UX Design
Create professional UI/UX designs in Penpot with ease.
UX Theming
Streamline your VS Code theming process with best practices.
Wireframe
Create low-fidelity UI wireframes in SVG format.
Waitlist Page
Create a clean, focused pre-launch landing page.
Hallmark
Design skill for creating unique, structured UIs.
UI Styling
Create beautiful, accessible user interfaces effortlessly.
