Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

ui-ux-pro-maxUI/UX 设计增强

Agent Skill

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

总安装

1,632

周安装

68

GitHub Stars

公开资料未说明

下载量

544
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ui-ux-pro-max(UI/UX 设计增强)
来源仓库:https://github.com/gracebotly/flowetic-app
仓库路径:skills/ui-ux-pro-max
安装命令:
npx skills add https://github.com/gracebotly/flowetic-app --skill ui-ux-pro-max
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gracebotly/flowetic-app --skill ui-ux-pro-max

简介

ui-ux-pro-max 用于辅助界面设计、视觉规范和交互体验优化。

  • 适合让 Agent 根据产品场景生成 UI 方案或检查视觉一致性,需结合品牌和设计系统使用。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出和对齐问题。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

UI/UX Pro Max Skill

Overview

This skill provides access to a comprehensive design database via native Mastra tools. All design recommendations MUST come from tool queries - never from LLM memory.

Available Tools

getStyleRecommendations

Search 67+ UI styles by product type, industry, and keywords.

Query examples:

  • "fintech dashboard minimal"
  • "healthcare monitoring dark"
  • "startup saas bold"
  • "enterprise corporate professional"
  • "voice ai cyber glass"

Returns: Style category, colors (hex), effects, complexity rating, implementation checklist.

getTypographyRecommendations

Search 57+ font pairings by style, mood, and use case.

Query examples:

  • "professional corporate"
  • "modern tech startup"
  • "friendly approachable"
  • "premium luxury"

Returns: Font pairings (heading + body), weights, line heights, use cases.

getChartRecommendations

Search 25+ chart types by data pattern and visualization goal.

Query examples:

  • "time series trend"
  • "comparison categories"
  • "part-to-whole percentage"
  • "geographic distribution"

Returns: Chart type, secondary options, color guidance, accessibility notes, library recommendations.

getProductRecommendations

Search industry-specific design patterns.

Query examples:

  • "crm dashboard"
  • "voice ai analytics"
  • "workflow automation"
  • "healthcare monitoring"

Returns: Primary style recommendation, landing page pattern, dashboard style, key considerations.

getUXGuidelines

Search 98+ UX best practices by category and platform.

Query examples:

  • "mobile navigation"
  • "form validation"
  • "accessibility wcag"
  • "dashboard layout"

Returns: Guideline, do/don't examples, code samples, severity rating.

Usage Rules

  1. ALWAYS call tools before giving design advice
  2. NEVER invent design values - use only what tools return
  3. Reference specific values from results (hex codes, font names, style names)
  4. If tools return empty, suggest broadening the query
  5. Combine multiple tool results for comprehensive recommendations

Data Sources

  • styles.csv: 67 UI styles with colors, effects, complexity
  • typography.csv: 57 font pairings with weights, use cases
  • charts.csv: 25 chart types with accessibility notes
  • products.csv: Industry-specific design patterns
  • ux-guidelines.csv: 98 UX best practices

Design System Workflow

Generate Complete Design System

Always start by generating a complete design system before individual domain searches:

Query Pattern:

getProductRecommendations("<product_type> <industry>")
+ getStyleRecommendations("<product_type> <style_keywords>")
+ getTypographyRecommendations("<style_keywords>")
+ getChartRecommendations("<data_type>") [if dashboard]
+ getUXGuidelines("<platform> <category>")

Example:

User: "Create a fintech dashboard with dark mode"

1. getProductRecommendations("fintech dashboard")
   → Returns: Industry-specific design direction

2. getStyleRecommendations("fintech dark minimal professional")
   → Returns: Style category, hex colors, effects, complexity

3. getTypographyRecommendations("professional modern corporate")
   → Returns: Font pairings, weights, line heights

4. getChartRecommendations("time series trend comparison")
   → Returns: Chart types, color palettes, libraries

5. getUXGuidelines("dashboard layout dark mode accessibility")
   → Returns: Best practices, anti-patterns, code samples

Design System Output Structure

A complete design system includes:

  1. Pattern - Landing page structure (hero-centric, testimonial-driven, etc.)
  2. Style - Visual direction (glassmorphism, minimalism, etc.) with hex colors
  3. Colors - Primary, secondary, accent, background, text colors
  4. Typography - Heading font + body font with weights and line heights
  5. Effects - Shadows, borders, animations, glassmorphism values
  6. Anti-patterns - What to avoid for this product type

Persist Design System (Master + Overrides Pattern)

For multi-page projects, persist the design system for consistency:

Concept:

  • design-system/MASTER.md → Global Source of Truth (all design rules)
  • design-system/pages/ → Page-specific overrides (deviations from Master)

Hierarchical Retrieval Logic:

  1. When building a specific page (e.g., "dashboard"), first check design-system/pages/dashboard.md
  2. If page file exists, its rules override the Master file
  3. If page file doesn't exist, use design-system/MASTER.md exclusively

When to Create Master:

  • User confirms a design system for the entire project
  • Multiple pages will share the same design language

When to Create Page Override:

  • User requests page-specific style (e.g., "Make checkout page simpler")
  • Page has different density/spacing requirements
  • Page has different color emphasis (e.g., success green for confirmation)

Content Structure:

MASTER.md:

# [Project Name] Design System

## Style
- Category: Glassmorphism
- Primary: #667eea
- Effects: backdrop-blur-md, bg-white/10
- Dark mode primary: #818cf8

## Typography
- Heading: Inter Bold (700, 800)
- Body: Inter Regular (400, 500)
- Line height: 1.5

## Spacing
- Density: Comfortable
- Card padding: p-6
- Section gaps: space-y-8

## Components
- Border radius: rounded-xl
- Shadow: shadow-lg
- Hover: scale-105, transition-300ms

pages/dashboard.md:

# Dashboard Page Overrides

## Spacing (OVERRIDE)
- Density: Compact (data-heavy)
- Card padding: p-4
- Section gaps: space-y-4

## Components (OVERRIDE)
- Border radius: rounded-lg (sharper for data tables)
- Charts: Use consistent color palette from MASTER

Supplement with Domain Searches

After establishing the design system, use domain searches for specific needs:

When to Search Additional Domains:

NeedDomainExample Query
Alternative stylesstyle"brutalism bold high-contrast"
More font optionstypography"elegant luxury serif"
Chart variationschart"funnel conversion visualization"
UX validationux"mobile touch targets animation"
Industry patternsproduct"healthcare HIPAA compliance"

Quick Reference by Priority

When designing or reviewing UI, apply these guidelines in priority order:

PriorityCategoryImpactKey Rules
1AccessibilityCRITICAL4.5:1 contrast, focus states, alt text, aria-labels, keyboard nav
2Touch & InteractionCRITICAL44x44px targets, cursor-pointer, hover feedback, loading states
3PerformanceHIGHWebP images, lazy loading, reduced-motion, no content jumping
4Layout & ResponsiveHIGHMobile-first, 16px min font, no horizontal scroll, z-index scale
5Typography & ColorMEDIUM1.5-1.75 line height, 65-75 char lines, font pairing
6AnimationMEDIUM150-300ms duration, transform/opacity only, skeleton screens

Critical Rules (Always Check)

Accessibility:

  • color-contrast: Minimum 4.5:1 ratio for normal text
  • focus-states: Visible focus rings on all interactive elements
  • alt-text: Descriptive alt text for meaningful images
  • aria-labels: Required for icon-only buttons
  • keyboard-nav: Tab order matches visual order
  • form-labels: Use label with for attribute

Touch & Interaction:

  • touch-target-size: Minimum 44x44px touch targets
  • cursor-pointer: Add to all clickable/hoverable elements
  • hover-feedback: Clear visual feedback (color, shadow, border)
  • loading-buttons: Disable during async operations
  • error-feedback: Clear error messages near problem

Performance:

  • image-optimization: Use WebP, srcset, lazy loading
  • reduced-motion: Check prefers-reduced-motion media query
  • content-jumping: Reserve space for async content

Domain Search Guide

Use these domains to get specific design recommendations:

DomainUse ForExample KeywordsTool
productProduct type recommendationsSaaS, e-commerce, portfolio, healthcare, beautygetProductRecommendations
styleUI styles, colors, effectsglassmorphism, minimalism, dark mode, brutalismgetStyleRecommendations
typographyFont pairings, Google Fontselegant, playful, professional, moderngetTypographyRecommendations
colorColor palettes by product typesaas, ecommerce, healthcare, beauty, fintechgetStyleRecommendations
chartChart types, library recommendationstrend, comparison, timeline, funnel, piegetChartRecommendations
uxBest practices, anti-patternsanimation, accessibility, z-index, loadinggetUXGuidelines

When to Use Each Domain

Start with product: Get industry-specific design direction

getProductRecommendations("voice ai analytics dashboard")
Returns: Primary style, landing pattern, dashboard style, key considerations

Follow with style: Get detailed visual direction

getStyleRecommendations("fintech minimal professional")
Returns: Style category, hex colors, effects, complexity rating, checklist

Add typography: Get font pairings

getTypographyRecommendations("professional corporate modern")
Returns: Heading + body fonts, weights, line heights, use cases

Include chart: For data visualization

getChartRecommendations("time series trend comparison")
Returns: Chart types, secondary options, color guidance, libraries

Check ux: For best practices

getUXGuidelines("mobile navigation accessibility")
Returns: Guidelines, do/don't examples, code samples, severity rating

Common Anti-Patterns (DO NOT DO)

Professional UI avoids these frequently overlooked issues:

Icons & Visual Elements

Rule✅ Do❌ Don't
No emoji iconsUse SVG icons (Heroicons, Lucide, Simple Icons)Use emojis like 🎨 🚀 ⚙️ as UI icons
Stable hover statesUse color/opacity transitions on hoverUse scale transforms that shift layout
Correct brand logosResearch official SVG from Simple IconsGuess or use incorrect logo paths
Consistent icon sizingUse fixed viewBox (24x24) with w-6 h-6Mix different icon sizes randomly

Interaction & Cursor

Rule✅ Do❌ Don't
Cursor pointerAdd cursor-pointer to all clickable/hoverable cardsLeave default cursor on interactive elements
Hover feedbackProvide visual feedback (color, shadow, border)No indication element is interactive
Smooth transitionsUse transition-colors duration-200Instant state changes or too slow (>500ms)

Light/Dark Mode Contrast

Rule✅ Do❌ Don't
Glass card light modeUse bg-white/80 or higher opacityUse bg-white/10 (too transparent)
Text contrast lightUse #0F172A (slate-900) for textUse #94A3B8 (slate-400) for body text
Muted text lightUse #475569 (slate-600) minimumUse gray-400 or lighter for body text
Border visibilityUse border-gray-200 in light modeUse border-white/10 (invisible)

Layout & Spacing

Rule✅ Do❌ Don't
Floating navbarAdd top-4 left-4 right-4 spacingStick navbar to top-0 left-0 right-0
Content paddingAccount for fixed navbar heightLet content hide behind fixed elements
Consistent max-widthUse same max-w-6xl or max-w-7xlMix different container widths per page

Pre-Delivery Checklist

Before delivering UI code, verify ALL items:

Visual Quality

  • No emojis used as icons (use SVG instead)
  • All icons from consistent set (Heroicons/Lucide/Simple Icons)
  • Brand logos are correct (verified from Simple Icons)
  • Hover states don't cause layout shift (no scale transforms)
  • Use theme colors directly (bg-primary) not var() wrapper

Interaction

  • All clickable elements have cursor-pointer
  • Hover states provide clear visual feedback
  • Transitions are smooth (150-300ms)
  • Focus states visible for keyboard navigation
  • Loading states disable buttons during async

Light/Dark Mode

  • Light mode text has sufficient contrast (4.5:1 minimum)
  • Glass/transparent elements visible in light mode (bg-white/80+)
  • Borders visible in both modes
  • Test both modes before delivery

Layout

  • Floating elements have proper spacing from edges (top-4, not top-0)
  • No content hidden behind fixed navbars
  • Responsive at 375px, 768px, 1024px, 1440px
  • No horizontal scroll on mobile

Accessibility

  • All images have descriptive alt text
  • Form inputs have associated labels
  • Color is not the only indicator of state
  • prefers-reduced-motion respected for animations
  • Minimum 44x44px touch targets on mobile

Performance

  • Images optimized (WebP, lazy loading, srcset)
  • No content layout shift (CLS)
  • Animations use transform/opacity (not width/height)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

30.93%
按下载量换算168

Codex

30.75%
按下载量换算167

Cursor

19.47%
按下载量换算106

Gemini CLI

9.39%
按下载量换算51

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills