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

saas-ui-mastersaas UI 大师

Agent Skill

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

总安装

1,307

周安装

55

GitHub Stars

公开资料未说明

下载量

458
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/shovonsheikh/saas-ui-master --skill saas-ui-master

简介

用于辅助界面设计、视觉规范和交互体验优化,适合 Agent 生成 UI 方案和改进组件层级。

  • 适用于页面结构整理、配色排版建议和响应式布局检查。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 需结合品牌和设计系统使用,避免堆砌装饰元素;真实页面改动应通过截图或预览验证表现。
  • 建议结合原始 README 和仓库内容进一步核验具体用法和功能边界。

SKILL.md

UI/UX Pro Max - SaaS Design Intelligence

Comprehensive design guide for web and mobile applications, specifically optimized for production-ready SaaS products. Contains 50+ styles, 97 color palettes, 57 font pairings, 99 UX guidelines, and 25 chart types across 9 technology stacks. Searchable database with priority-based recommendations, strictly enforcing professional design standards to prevent amateur, "vibe-coded" interfaces.

When to Apply

Reference these guidelines when:

  • Designing new UI components, pages, or complex SaaS dashboards
  • Choosing color palettes (especially defining 4-layer systems and dark mode) and typography
  • Reviewing code for UX, layout, or accessibility issues
  • Building landing pages that require high conversion trust
  • Implementing theming engines using modern color spaces (OKLCH)

Rule Categories by Priority

PriorityCategoryImpactDomain
1AccessibilityCRITICALux
2Touch & InteractionCRITICALux
3Layout & ArchitectureHIGHux, product
4PerformanceHIGHux
5Typography & 4-Layer ColorMEDIUMtypography, color
6AnimationMEDIUMux
7Style SelectionMEDIUMstyle, product
8Charts & DataLOWchart

Quick Reference: Core SaaS Philosophy

1. Component Architecture (HIGH)

  • Consolidate Navigation: Group administrative links (Settings, Billing, Profile, API Keys, Logout) into a unified Account Popover menu rather than cluttering the main sidebar.
  • Clean Lists/Tables: Hide secondary row actions (Edit, Delete, Duplicate) behind a clean ellipsis (three-dot) menu.
  • Modals for Focus: Use centered modals with collapsed advanced options for simple forms. Never use empty, full-height flyout menus.

2. The 4-Layer Color System (MEDIUM)

  • Layer 1 (Neutral Foundation): Never use pure white (#FFFFFF) as the app background. Use off-white/light gray (bg-slate-50). Surface interactive cards as pure white to pop. Use ultra-faint borders (85% white) or subtle drop shadows.
  • Layer 2 (Functional Accents): Generate a scale from 50 to 950. Main buttons = 500/600, Hover = 700, Text links = 400/500.
  • Layer 3 (Semantic Communication): Success = Green, Warning = Yellow/Orange, Destructive = Red. Use OKLCH color space for charts to keep lightness/chroma constant.
  • Layer 4 (Theming Engine): Generate programmatic themes using OKLCH math: convert neutral hex to OKLCH, drop lightness -0.03, increase chroma +0.02, and slide the Hue value.

3. Dark Mode Rules (CRITICAL)

  • Double the Distance: Dark colors bleed together. If light mode backgrounds step up by 2% lightness, dark mode MUST step up by 4% to 6%.
  • Shift Accents Lighter: Shift primary brand colors to the 300 or 400 range for buttons/active states to ensure legibility.

How to Use

Search specific domains using the CLI tool below.

Prerequisites

Check if Python is installed:

python3 --version || python --version

If Python is not installed, install it based on the user's OS:

macOS:

brew install python3

Ubuntu/Debian:

sudo apt update && sudo apt install python3

Windows:

winget install Python.Python.3.12

Workflow Instructions

When a user requests UI/UX work (design, build, create, implement, review, fix, improve), follow this workflow:

Step 1: Analyze User Requirements

Extract key information from the user request:

  • Product type: SaaS, e-commerce, portfolio, dashboard, landing page, etc.
  • Style keywords: minimal, playful, professional, elegant, dark mode, etc.
  • Industry: healthcare, fintech, gaming, education, etc.
  • Stack: React, Vue, Next.js, or default to html-tailwind

Step 2: Generate Design System (REQUIRED)

Always start with `--design-system` to get comprehensive recommendations with reasoning:

python3 skills/saas-ui-master/scripts/search.py "<product_type> <industry> <keywords>" --design-system [-p "Project Name"]

This command:

  1. Searches 5 domains in parallel (product, style, color, landing, typography)
  2. Applies reasoning rules from ui-reasoning.csv to select best matches
  3. Returns complete design system: pattern, style, colors, typography, effects
  4. Includes anti-patterns to avoid

Step 2b: Persist Design System (Master + Overrides Pattern)

To save the design system for hierarchical retrieval across sessions, add --persist:

python3 skills/saas-ui-master/scripts/search.py "<query>" --design-system --persist -p "Project Name"

This creates:

  • design-system/MASTER.md — Global Source of Truth with all design rules
  • design-system/pages/ — Folder for page-specific overrides

With page-specific override:

python3 skills/saas-ui-master/scripts/search.py "<query>" --design-system --persist -p "Project Name" --page "dashboard"

How hierarchical retrieval works:

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

Step 3: Supplement with Detailed Searches (as needed)

After getting the design system, use domain searches to get additional details:

python3 skills/saas-ui-master/scripts/search.py "<keyword>" --domain <domain> [-n <max_results>]

When to use detailed searches:

NeedDomainExample
More style optionsstyle--domain style "glassmorphism dark"
Chart recommendationschart--domain chart "real-time dashboard"
UX best practicesux--domain ux "animation accessibility"
Alternative fontstypography--domain typography "elegant luxury"
Landing structurelanding--domain landing "hero social-proof"

Step 4: Stack Guidelines (Default: html-tailwind)

Get implementation-specific best practices. If the user doesn't specify a stack, default to `html-tailwind`.

python3 skills/saas-ui-master/scripts/search.py "<keyword>" --stack html-tailwind

Available stacks: html-tailwind, react, nextjs, vue, svelte, swiftui, react-native, flutter, shadcn, jetpack-compose


Search Reference

Available Domains

DomainUse For
productProduct type recommendations (SaaS, e-commerce, portfolio)
styleUI styles, colors, effects (glassmorphism, minimalism)
typographyFont pairings, Google Fonts
colorColor palettes by product type
landingPage structure, CTA strategies (hero, pricing, social-proof)
chartChart types, library recommendations
uxBest practices, anti-patterns (animation, accessibility)
promptAI prompts, CSS keywords

Output Formats & Tips

The --design-system flag supports two output formats:

# ASCII box (default) - best for terminal display
python3 skills/saas-ui-master/scripts/search.py "fintech crypto" --design-system

# Markdown - best for documentation
python3 skills/saas-ui-master/scripts/search.py "fintech crypto" --design-system -f markdown

Tips for Better Results:

  1. Be specific - "healthcare SaaS dashboard" > "app"
  2. Combine domains - Style + Typography + Color = Complete design system
  3. Always check UX - Search "animation", "z-index", "accessibility" for common issues

Common Rules for Professional UI

These are frequently overlooked issues that make UI look unprofessional:

Icons & Visual Elements

RuleDoDon't
No emoji iconsUse SVG icons (Heroicons, Lucide, Phosphor)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

Typography & Component Layout

RuleDoDon't
Text HierarchyUse shades for hierarchy (slate-900, 700, 500)Rely solely on font-weight (bold/normal)
Action ConsolidationGroup settings/logout into an Account PopoverLeave administrative links loose in the sidebar
Table ActionsCollapse row actions into an ellipsis menuShow 3+ icon buttons on every single row
Form ModalsUse centered modals for simple creation flowsUse full-height, mostly empty flyout sidebars

Interaction & Cursor

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

Light/Dark Mode Contrast

RuleDoDon't
Base BackgroundUse off-white/slate-50 for app backgroundUse pure #FFFFFF as the main app background
Dark Mode SpacingDouble contrast distance (4-6% steps)Use the exact same lightness steps as light mode
Dark Mode AccentsShift brand buttons to 300/400 rangeKeep dark mode buttons the same dark shade
Border visibilityUse border-gray-200 or subtle shadowsUse harsh, thick black borders

Pre-Delivery Checklist

Before delivering UI code, verify these items:

Visual Quality & Architecture

  • No emojis used as icons; SVG set utilized (Heroicons/Lucide).
  • Navigation is consolidated (Account Popovers used instead of flat lists).
  • Table/List row actions are tucked behind an ellipsis menu.
  • Pure white (#FFFFFF) is NOT used as the base app background.
  • Borders use ultra-faint shades/shadows, not harsh black lines.

Interaction

  • All clickable elements have cursor-pointer.
  • Hover states provide clear visual feedback without shifting layouts.
  • Transitions are smooth (150-300ms).
  • Focus states are visible for keyboard navigation.

Light/Dark Mode

  • Light mode text meets 4.5:1 contrast ratio (#0F172A for primary).
  • Glass/transparent elements are visible in light mode.
  • Dark mode backgrounds have doubled contrast distances (4-6% steps).
  • Dark mode accents are shifted lighter (300/400 range) for legibility.
  • Test both modes before delivery.

Accessibility & Layout

  • Floating elements have proper spacing from edges (top-4 left-4).
  • All images have descriptive alt text.
  • Form inputs have properly linked labels.
  • Color is not the only indicator of status.
  • Responsive at 375px, 768px, 1024px, 1440px without horizontal scroll on mobile.

Credits & Attribution

The underlying CLI search engine, Python scripts (search.py), and foundational data arrays in this skill were originally created by nextlevelbuilder. This skill builds upon their excellent technical framework by injecting a strict, 4-Layer SaaS UI/UX Design philosophy.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

39.67%
按下载量换算182

Claude

28.35%
按下载量换算130

Cursor

19.15%
按下载量换算88

Gemini CLI

9.29%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/shovonsheikh/saas-ui-master --skill saas-ui-master 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills