Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计未展示

ui-design用户界面设计

Agent Skill

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

总安装

16,750

周安装

804

GitHub Stars

公开资料未说明

下载量

6,269
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

AgentSkills.tonpx skills
npx skills add zuytan/rustrade --skill "ui-design"

简介

ui-design 用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。

  • 它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案或改进组件层级。
  • 通过 npx skills add zuytan/rustrade --skill "ui-design" 命令安装。
  • 使用时需要结合现有品牌和设计系统,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查表现。
  • ui-design 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
UI Design
description
Designing premium user interfaces with egui

Skill: UI Design

When to use this skill

  • Creating new UI views or components
  • Modifying existing layouts
  • Improving UX/UI aesthetics
  • Ensuring consistency with the design system

Design Philosophy

"Premium Dark Mode" is the core aesthetic. The UI should look professional, financial, and sleek.

  • Backgrounds: Deep, rich dark blues/blacks (not just plain #000000).
  • Accents: Neon blue (#42A5F5) for action, Green/Red for financial data.
  • Hierarchy: Use visual weight, spacing, and font size to guide the eye.
  • Feedback: Interactive elements must respond to hover/click.

Color Palette (Reference)

RoleColorHexusage
Window BgDark Blue/Black#0A0C10Main application background
Panel BgDark Blue/Black#0A0C10Sidebars, panels
Card BgSlightly lighter#12161DSurface for content containers
Button BgLighter input#1C212AStandard interactive elements
HoverHighlight#282E3AHover state
PrimaryVibrant Blue#42A5F5Active states, primary actions
TextHigh Contrast#F0F0F0Primary text
SubtextMuted#B4B4B4Labels, secondary info
BorderSubtle#282C34Separators, outlines

Component Guidelines

1. Structure

All UI components should exist in src/interfaces/ submodules.

pub fn render_my_component(ui: &mut egui::Ui, data: &MyData) {
    ui.group(|ui| {
        ui.heading("Title");
        // ... content
    });
}

2. Layouts

Use egui layout helpers effectively:

  • ui.horizontal(|ui| { ... }) for toolbars
  • ui.vertical(|ui| { ... }) for lists
  • egui::Grid for aligned forms or data
  • ui.allocate_ui for custom sizing

3. "Card" Pattern

To create distinct sections, use a coherent card style:

// Helper for consistent card styling (implement if not exists or use frame)
egui::Frame::none()
    .fill(egui::Color32::from_rgb(18, 22, 29))
    .rounding(4.0)
    .stroke(egui::Stroke::new(1.0, egui::Color32::from_rgb(40, 44, 52)))
    .inner_margin(12.0)
    .show(ui, |ui| {
        ui.heading("Card Title");
        ui.label("Card content...");
    });

Best Practices (egui)

❌ Don't

  • Hardcode colors everywhere: Use the ctx.style().visuals or defined constants where possible (though custom colors are allowed for the specific theming).
  • Block the UI thread: No long computations in update(). Use channels to generic agents.
  • Over-nest layouts: Too many nested ui.horizontal/vertical calls can kill performance and readability.

✅ Do

  • Use ui.add_enabled(bool, widget) for conditional interactivity.
  • Use ui.push_id loops to avoid ID clashes.
  • Separate logic from rendering: The render function should typically take a reference to data, not the whole application state if possible.

Checklist for UI Changes

  • [ ] Does it respect the Dark Mode palette?
  • [ ] Are texts readable (contrast)?
  • [ ] Is the layout responsive (resizing window)?
  • [ ] Do buttons/inputs have hover states?
  • [ ] Are icons using the correct emoji font fallback?
  • [ ] Is padding/margin consistent (standard: 8.0, 12.0, 24.0)?

Updates

When updating the theme, modify UserAgent::update in src/interfaces/ui.rs.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

windsurf

26.01%
按下载量换算1,631

trae

21.82%
按下载量换算1,368

OpenCode

18.54%
按下载量换算1,162

Codex

12.97%
按下载量换算813

Claude Code

7.11%
按下载量换算446

Antigravity

3.71%
按下载量换算233

安全审计

暂无安全审计结果可展示。

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills