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

review-design审查设计

Agent Skill

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

总安装

220

周安装

9

GitHub Stars

公开资料未说明

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/badrusiddique/enggenie-skill --skill review-design

简介

review-design 辅助界面设计、视觉规范和交互体验优化。

  • 适合整理页面结构、生成 UI 方案或检查视觉一致性。
  • 使用时需结合品牌系统和用户任务,避免堆砌装饰元素。
  • 涉及真实页面改动时应通过截图或浏览器预览检查表现。
  • 建议保留项目已有事实,不写成确定结论。review-design 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Frontend Design Quality Review

Announce: "I'm using enggenie:review-design to review the frontend implementation."

Overview

Review frontend code for design quality - not just "does it work" but "does it look and feel professional." Catches the gap between functional code and production-quality UI.

Jira Ticket Entry

When the user references a Jira ticket for design review (e.g., "Check design for PROJ-1234", "Review UI on PROJ-1234"):

  1. Read the Jira ticket using MCP tools
  2. Find the spec link — extract Figma references, design tokens, layout requirements, and responsive breakpoints documented by PM
  3. Find the "Dev Handoff" comment — extract the PR link and what was built
  4. Use the spec's design requirements as the review baseline — compare implementation against what was specified, not against generic best practices alone

If Jira MCP is not available, ask: "I can't read PROJ-1234 directly. Can you share the design specs or Figma link?"


What to Check

1. Design System Compliance

  • Are design system components used where they exist? (Not custom CSS for things the system handles)
  • Are spacing values from the design system tokens? (Not arbitrary px values)
  • Are colors from the design system palette? (Not hardcoded hex)
  • Are typography styles from the design system? (Not custom font-size/weight)

Design Comparison Method

Since AI agents cannot directly view Figma files:

  1. Check if the spec (from pm-refine) includes Figma dimensions, tokens, and layout details
  2. If Figma MCP is available, use it to extract design specifications
  3. If neither is available, ask the user: "Can you share the key design specs (colors, spacing, breakpoints) so I can compare?"
  4. Compare extracted/provided specs against the implementation using grep for hardcoded values that should be tokens

2. State Coverage

Every interactive component needs ALL of these states. Missing states are the #1 sign of AI-generated UI:

StateWhat to check
LoadingSkeleton or spinner while data loads
EmptyMeaningful message when no data exists
ErrorClear error message with recovery action
HoverVisual feedback on interactive elements
FocusVisible focus ring for keyboard navigation
DisabledVisually distinct, non-interactive
Active/SelectedClear indication of current selection

3. Responsive Behavior

  • Mobile (320-767px): Single column, touch targets 44px+, no horizontal scroll
  • Tablet (768-1023px): Adapted layout, readable text
  • Desktop (1024px+): Full layout, efficient use of space

Test: Resize browser from 320px to 1440px. Nothing should break, overflow, or become unreadable.

4. Accessibility

CheckHow
ARIA labelsAll interactive elements have accessible names
Keyboard navigationTab through every interactive element. Logical order?
Color contrastText meets WCAG 2.1 AA (4.5:1 normal, 3:1 large)
Screen readerContent makes sense when read linearly
Focus managementFocus moves logically after interactions (modals, navigation)
Alt textAll images have meaningful alt text (or empty alt for decorative)

5. AI Code Smell Detection

Common signs of AI-generated frontend code that looks "off":

  • Generic layouts (everything centered, no visual hierarchy)
  • Bootstrap/Tailwind defaults without customization
  • Inconsistent spacing (some elements tight, others floating)
  • Missing micro-interactions (no transitions, no hover feedback)
  • Placeholder content still present
  • Stock colors instead of design system palette
  • No loading states (content pops in abruptly)
  • No error handling in the UI

6. Animation and Transitions

  • Transitions are smooth (150-300ms for UI, 300-500ms for page transitions)
  • Animations are purposeful (guide attention, show state change)
  • No janky animations (check for layout thrashing)
  • Reduced motion preference respected: prefers-reduced-motion: reduce

Issue Severity

SeverityDefinitionAction
CriticalBroken functionality, inaccessible content, crashesFix before proceeding
ImportantMissing states, wrong design system tokens, poor responsive behaviorFix before PR
MinorSpacing inconsistencies, animation timing, micro-interaction polishNote for follow-up

Review Report Format

## Design Review: [Component/Feature]

### Design System Compliance
- [PASS/FAIL] Component usage
- [PASS/FAIL] Spacing tokens
- [PASS/FAIL] Color palette
- [PASS/FAIL] Typography

### State Coverage
- [PASS/FAIL] Loading state
- [PASS/FAIL] Empty state
- [PASS/FAIL] Error state
- [PASS/FAIL] Hover/Focus/Active states

### Responsive
- [PASS/FAIL] Mobile (320px)
- [PASS/FAIL] Tablet (768px)
- [PASS/FAIL] Desktop (1024px+)

### Accessibility
- [PASS/FAIL] ARIA labels
- [PASS/FAIL] Keyboard navigation
- [PASS/FAIL] Color contrast
- [PASS/FAIL] Screen reader

### Issues Found
1. [Severity] Description - How to fix

Subagents

  • Design Reviewer subagent (sonnet) - Reads Figma context from spec, reviews component code, checks design system usage, identifies quality gaps

Subagent prompt template: agents/design-reviewer-agent.md

Subagent Context Preservation

When the Design Reviewer subagent completes, explicitly capture its findings back to the main conversation:

  • Design system compliance results (pass/fail per category)
  • State coverage gaps found
  • Responsive behavior issues
  • Accessibility audit results
  • Specific file paths and components reviewed

Do not assume the orchestrating agent retains subagent context automatically. Extract the full review before presenting results.


Recommended Model

Primary: sonnet Why: Design review requires understanding visual patterns, accessibility standards, and responsive behavior. Sonnet provides sufficient visual reasoning capability.

This is a recommendation. Ask the user: "Confirm model selection or override?" Do not proceed until the user responds.


Entry Condition

After frontend code is written (from enggenie:dev-implement FE phase).

Exit Action

Design review passed → proceed to enggenie:qa-verify or enggenie:qa-test.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.19%
按下载量换算25

Claude

28.74%
按下载量换算20

Cursor

17.79%
按下载量换算13

Gemini CLI

8.69%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills