Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计提醒

ui-ux-dev用户界面用户体验开发

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

59,529

周安装

2,531

GitHub Stars

1

下载量

20,855
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ui-ux-dev(用户界面用户体验开发)
来源仓库:https://github.com/wing8169/ui-ux-dev
安装命令:
openclaw skills install ui-ux-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ui-ux-dev

简介

根据自然语言提示生成并提供实时 HTML/CSS/JS UI 设计。当用户要求设计、创建、构建网站、登陆页面、UI、仪表板、网页或前端模型或对其进行原型设计时使用。还会触发更新、调整或迭代先前生成的设计的请求。取代传统的 UI 设计 + 前端开发工作流程。

SKILL.md

name
ui-designer
description
Generate and serve live HTML/CSS/JS UI designs from natural language prompts. Use when the user asks to design, create, build, or prototype a website, landing page, UI, dashboard, web page, or frontend mockup. Also triggers on requests to update, tweak, or iterate on a previously generated design. Replaces traditional UI design + frontend dev workflow.

UI Designer

Generate production-quality React pages from natural language, serve live, iterate until satisfied.

Setup

Check TOOLS.md for ### UI Designer config. If missing, run first-time setup:

  1. Ask user which port (default: 5174)
  2. Run: bash scripts/setup.sh <port>
  3. Save config to TOOLS.md

Project Structure

<serve_dir>/
├── project-a/
│   ├── project.json       (config: name, preferences, design system, pages)
│   ├── assets/             (images, converted to .webp)
│   ├── landing/index.html  (React page via CDN)
│   └── about/index.html

React Page Template (CDN, no build step)

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Page Title</title>
  <script src="https://cdn.tailwindcss.com"></script>
  <script src="https://unpkg.com/react@18/umd/react.production.min.js"></script>
  <script src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"></script>
  <script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
</head>
<body>
  <div id="root"></div>
  <script type="text/babel">
    function App() { return <div>...</div>; }
    ReactDOM.createRoot(document.getElementById('root')).render(<App />);
  </script>
</body>
</html>

Workflow

Critical: Message the user at EVERY action — not just milestones. If you're reading a file, say "Reading project config...". If you're writing HTML, say "Writing bounty page...". If you're taking a screenshot, say "Taking screenshot...". The user should never wonder what you're doing. Treat it like a live build log.

Step 1: Project Name

Ask: "What's the project name?"

  • If <serve_dir>/<project>/ exists: read project.json, show current setup and existing pages, ask if amending or adding
  • If new: create directory + project.json
  • → Message user: "Project created / loaded ✓"

Step 2: Preferences (new or amending)

Ask about design preferences (style, font, colors, brand assets). Save to project.json.

  • → Message user: "Preferences saved ✓"

Step 3: Page Slug

Ask: "What slug for this page?"

  • Check if exists → ask to overwrite or new
  • → Message user: "Slug confirmed: /<slug> ✓"

Step 4: Design Details & Design System

Ask about page content + design system (see Design Principles below). Update project.json with design system details.

  • → Message user: "Got it, generating now..."

Step 5: Generate

Generate the React page. Apply Design Principles strictly.

  • → Message user: "HTML generated, running visual review..."

Step 6: Screenshot Review Loop

bash scripts/screenshot.sh "http://localhost:<port>/<project>/<slug>/" /tmp/<slug>-review.png 1400 900

Analyze with image tool. Fix issues. Re-screenshot. Also check mobile (width=390).

  • → Message user: "Review done, sending preview..."

Do at least one desktop + one mobile review pass before sharing.

Step 7: Share and Iterate

Send live URL + screenshot to user. Ask for feedback. Apply changes → re-screenshot → share. Repeat.

  • → Keep user informed at every iteration step

Step 8: Media Assets

If user provides images:

  1. Save to <project>/assets/
  2. Convert to .webp: bash scripts/convert-image.sh <input> <output.webp> [quality]
  3. Reference in HTML as ../assets/filename.webp
  • → Message user: "Image converted: 1.2MB → 340KB (72% smaller) ✓"

Step 9: Export

Zip the project folder and send:

cd <serve_dir> && zip -r /tmp/<project>.zip <project>/

Send zip via message tool with filePath. The CDN-based React pages work standalone — just open index.html or serve with any static server.

Image Handling

Convert all user-provided images to .webp for performance:

bash scripts/convert-image.sh input.png output.webp 80
  • Default quality: 80 (good balance of quality/size)
  • For hero/banner images: quality 85
  • For thumbnails/icons: quality 70
  • Always report compression savings to user

For placeholder images during prototyping:

  • Photos: https://picsum.photos/seed/<name>/<width>/<height>
  • Solid placeholders: https://placehold.co/<width>x<height>/<bg>/<text>

Design Principles

Apply these consistently to every generated page. These are non-negotiable quality standards.

Layout & Spacing

  • Use consistent spacing scale — stick to Tailwind's scale (4, 6, 8, 12, 16, 20, 24). Don't mix random values.
  • Max content width — always constrain content (max-w-5xl or max-w-6xl). Never let text run full-width.
  • Vertical rhythm — consistent gaps between sections (py-16 for sections, py-8 for subsections).
  • Padding on mobile — minimum px-4 on all containers. Text must never touch screen edges.

Typography

  • Clear hierarchy — h1 largest, then h2, h3. Max 3-4 font sizes per page.
  • Line length — max 65-75 characters per line for readability. Use max-w-prose or max-w-2xl on text blocks.
  • Font weight contrast — bold for headings (font-bold/font-semibold), regular for body.
  • Text color hierarchy — white for headings, gray-300 for body, gray-500 for muted/secondary.

Color & Contrast

  • WCAG AA minimum — text must have 4.5:1 contrast against background.
  • Limit palette — max 1 primary color + 1 accent + neutrals. Don't rainbow.
  • Consistent accent usage — primary color for CTAs, links, active states only. Don't overuse.
  • Dark backgrounds — use layered darkness (bg-900 → bg-800 → bg-700) for depth, not flat black.

Responsive Design

  • Mobile-first — design for 390px first, enhance for larger screens.
  • Breakpoints — use sm: (640px), md: (768px), lg: (1024px). Test all three.
  • Touch targets — buttons/links min 44x44px on mobile.
  • Stack on mobile — grids collapse to single column. Never horizontal scroll for content.
  • Navigation — hamburger menu on mobile with slide-down panel. Always include.

Components & Interactions

  • Icons — always use SVG, never emoji (emoji break in headless browsers and render inconsistently).
  • Buttons — clear hover states (color shift + slight scale or shadow). Consistent border-radius.
  • Cards — subtle border (border-white/5 or border-dark-600), slight bg difference from page bg.
  • Transitions — add transition class to all interactive elements. Duration 150-200ms.
  • Focus states — all interactive elements must have visible focus rings for accessibility.

Images & Performance

  • All images in .webp — convert user images with scripts/convert-image.sh.
  • Lazy loading — add loading="lazy" to images below the fold.
  • Aspect ratios — use aspect-video or aspect-square classes to prevent layout shift.
  • Alt text — every image needs descriptive alt text.

Code Quality

  • Semantic HTML — use header, main, section, footer, nav. Not div soup.
  • No Lorem ipsum — always use contextually relevant placeholder text.
  • React components — break UI into logical components (Navbar, Hero, Features, etc.).
  • State management — use useState for interactive elements (tabs, modals, dropdowns).

Common Mistakes to Avoid

  • ❌ Text touching screen edges on mobile
  • ❌ Emoji for icons (use SVG)
  • ❌ Flat black backgrounds (use layered darks)
  • ❌ No hover states on clickable elements
  • ❌ Inconsistent border-radius across elements
  • ❌ Giant font sizes that overflow on mobile
  • ❌ Missing meta viewport tag
  • ❌ Forgetting hamburger menu on mobile

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

89.43%
按下载量换算18,651

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills