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

ux-review用户体验审查

Agent Skill

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

总安装

291

周安装

12

GitHub Stars

191

下载量

95
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wcygan/dotfiles --skill ux-review

简介

用于辅助界面设计、视觉规范和布局优化,支持页面结构整理和 UI 方案生成。

  • 适用于检查视觉一致性、配色和交互体验,需结合品牌和设计系统使用。
  • 通过 npx skills add 命令从 GitHub 仓库安装,具体用法可参考原始 README。
  • 涉及真实页面改动时应通过截图或浏览器预览检查文本溢出和对齐问题。
  • ux-review 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

UX Review Skill

A multi-agent UX review system that browses live web applications with Playwright CLI and produces a prioritized, actionable report for solo developers and small teams.

Prerequisites

Playwright CLI must be installed. If not available, run:

npm install -g @playwright/cli@latest
playwright-cli install-browser
playwright-cli install --skills

Verify with playwright-cli --help.

Inputs

The user provides:

  1. Target URL (required) — The application's entry point (landing page, login, dashboard, etc.)
  2. Key user flows (optional) — Specific paths to test, e.g. "sign up → create project → invite team"
  3. Target audience (optional) — Who uses this app and what they expect
  4. Focus areas (optional) — Which review dimensions matter most (see Agent Roster below)
  5. Context file (optional) — A markdown file with app description, known issues, constraints

If the user doesn't provide optional inputs, use reasonable defaults and note assumptions.

Agent Roster

Each agent has a specialized lens. All agents use Playwright CLI to interact with the live app.

#AgentFocusReference
1First ImpressionLanding page clarity, value prop, CTAs, trust signals, load perceptionagents/first-impression.md
2Information ArchitectureNavigation, page hierarchy, naming, discoverability, mental modelsagents/information-architecture.md
3User FlowTask completion paths, friction, dead ends, error recovery, onboardingagents/user-flow.md
4Visual DesignSpacing, typography, color, component consistency, responsive hintsagents/visual-design.md
5AccessibilityWCAG compliance, keyboard nav, ARIA, contrast, form labels, error statesagents/accessibility.md
6Copy & MicrocopyButton labels, error messages, empty states, onboarding text, toneagents/copy-review.md
7SynthesizerReads all agent reports → produces prioritized action planagents/synthesizer.md

Workflow

Phase 1: Setup

  1. Confirm the target URL and any user-provided context
  2. Ensure Playwright CLI is installed (playwright-cli --help)
  3. Open a browser session: playwright-cli open <url>
  4. Take an initial screenshot to confirm the page loaded: playwright-cli screenshot --filename=landing.png
  5. Capture a snapshot for structural analysis: playwright-cli snapshot --filename=landing-snapshot.txt
  6. Create the workspace directory for outputs

Phase 2: Discovery (Main Agent)

Before spawning review agents, do a quick site crawl to understand scope:

  1. Capture the landing page snapshot
  2. Identify primary navigation links from the snapshot
  3. Visit 3-5 key pages (follow nav links) and snapshot each
  4. Build a simple sitemap of discovered pages
  5. Save discovery results to workspace/discovery.md

This discovery output is shared with all review agents as context.

Phase 3: Parallel Review (Sub-agents)

Spawn agents 1-6 in parallel. Each agent receives:

  • The target URL
  • The discovery file (workspace/discovery.md)
  • Their specific agent instructions (from agents/*.md)
  • The Playwright CLI reference (references/playwright-guide.md)
  • The heuristics reference (references/heuristics.md)
  • An output directory for their findings

Each agent:

  1. Opens the app in its own Playwright CLI session (-s=<agent-name>)
  2. Navigates through relevant pages
  3. Takes snapshots and screenshots as evidence
  4. Writes findings to their output file

If sub-agents are not available, run each review sequentially in the main loop.

Phase 4: Synthesis

After all reviews complete, the Synthesizer agent:

  1. Reads all 6 agent reports
  2. Deduplicates overlapping findings
  3. Categorizes by severity (Critical / High / Medium / Low)
  4. Ranks by impact-vs-effort (essential for solo devs)
  5. Produces the final report

Phase 5: Output

Generate the final deliverable as a markdown report following the template in references/report-template.md.

Save to the workspace and present to the user.

Playwright CLI Quick Reference for Agents

Each agent should use a named session to avoid conflicts:

# Agent opens its own session
playwright-cli -s=first-impression open <url>

# Navigate
playwright-cli -s=first-impression goto <url>

# Capture page structure (element refs, text, layout)
playwright-cli -s=first-impression snapshot --filename=<name>.txt

# Take visual screenshot
playwright-cli -s=first-impression screenshot --filename=<name>.png

# Interact with elements (using refs from snapshot)
playwright-cli -s=first-impression click <ref>
playwright-cli -s=first-impression type <text>
playwright-cli -s=first-impression fill <ref> <text>

# Check navigation
playwright-cli -s=first-impression tab-list

# Close when done
playwright-cli -s=first-impression close

Read references/playwright-guide.md for the full command reference.

Output Structure

workspace/
├── discovery.md                    # Site structure from Phase 2
├── screenshots/                    # Visual evidence
│   ├── landing.png
│   ├── nav-*.png
│   └── ...
├── agents/
│   ├── first-impression.md
│   ├── information-architecture.md
│   ├── user-flow.md
│   ├── visual-design.md
│   ├── accessibility.md
│   └── copy-review.md
└── ux-review-report.md             # Final synthesized report

Coordinator Responsibilities

  1. Handle Playwright CLI installation if needed
  2. Run the discovery phase to build shared context
  3. Spawn review agents in parallel (or sequentially if no sub-agents)
  4. Ensure each agent uses its own named session (-s=<name>)
  5. Collect all agent reports
  6. Run the synthesizer to produce the final report
  7. Clean up browser sessions: playwright-cli close-all
  8. Present the final report to the user

Customization

The user can customize the review by:

  • Skipping agents: "Skip accessibility, focus on user flows and copy"
  • Adding competitor URLs: Include comparison analysis
  • Specifying user stories: "Test the checkout flow specifically"
  • Setting priorities: "I care most about conversion, less about accessibility"
  • Providing context: "This is a B2B SaaS for project managers"

Adapt the agent roster and instructions accordingly.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.43%
按下载量换算34

Claude

29.34%
按下载量换算28

Cursor

16.71%
按下载量换算16

Gemini CLI

8.97%
按下载量换算9

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills