‹ 首页

qa

@darkroomengineering · 收录于 昨天 · 上游提交 昨天

Visual + a11y QA — screenshot-first critique, contrast, touch targets, mockup-vs-impl diff. For adversarial logic checks use `/verify`. Triggers "visual QA", "QA check", "does this look right", "a11y check", "contrast check", post-component changes.

适合你,如果经常需要检查页面视觉效果和可访问性是否达标

/ 通过 npx 安装 校验哈希
npx oh-my-skill add darkroomengineering/cc-settings/qa
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- darkroomengineering/cc-settings/qa
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify darkroomengineering/cc-settings/qa
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
40GitHub stars
~2.2K上下文体积 · 单文件
索引托管

怎么用

商店整理自技能原文 · 版本 fa04efc · 表述以原文为准
它做什么

安装后,Claude 会对网页进行视觉与无障碍检查:先截图,再依次检查布局、排版、色彩对比、组件质量等,列出问题与修复建议。还可与设计稿对比,或使用“新鲜视角”二次验证。

什么时候触发

当你提出“视觉 QA”、“无障碍检查”、“对比度检查”或组件变更后需要审查时,Claude 会触发此技能。

装好后可以这样说
触发完整检查流程
重点对比度检查
触发与设计稿对比
技能原文 SKILL.md作者撰写 · MIT · fa04efc

Visual QA Validation

Core Philosophy
  • Screenshot first, then critique. Always look at the actual rendered output, not just the code.
  • Be specific. "The spacing looks off" is useless. "The gap between the heading and paragraph is 32px but should be 16px based on the surrounding spacing rhythm" is useful.
  • Prioritize impact. Not every pixel matters. Focus on what users will actually notice.
  • Reference the intent. Compare against design tokens, mockups, or stated design goals.
Quick Start

The Chrome DevTools MCP exposes browser automation as tool calls. Typical sequence:

  1. mcp__chrome-devtools__navigate_page (type: "url", url: "http://localhost:3000") — load the page
  2. mcp__chrome-devtools__take_snapshot — text-based a11y tree with element uids (cheap, preferred first step)
  3. mcp__chrome-devtools__take_screenshot — visual capture for review
  4. Interact via click / fill / hover / press_key using the uids from the snapshot

Review Categories (Priority Order)
1. Layout & Spacing

Check for:

  • Consistent spacing rhythm (is everything on the spacing grid?)
  • Alignment -- are elements that should be aligned actually aligned?
  • Padding consistency within similar components
  • Container widths and max-widths
  • No horizontal overflow
  • Responsive behavior (if multiple viewport screenshots available)

Common issues:

  • Inconsistent padding in cards (e.g., 24px top, 16px sides)
  • Elements slightly off-grid (15px instead of 16px)
  • Text not aligned with adjacent elements
  • Sections with wildly different vertical spacing
2. Typography

Check for:

  • Hierarchy -- is it clear what's a heading vs body vs caption?
  • Line length -- body text should be 45-75 characters per line
  • Line height -- too tight or too loose for the font size?
  • Font weight usage -- are weights used consistently for the same role?
  • Heading hierarchy is correct (h1 > h2 > h3)
  • Orphans/widows -- single words on their own line in headings

Common issues:

  • Heading that doesn't look like a heading (weight/size too close to body)
  • Body text line length > 80 characters (hard to read)
  • Inconsistent heading sizes across sections
  • All-caps text without letter-spacing adjustment
3. Color & Contrast

Check for:

  • Text meets 4.5:1 contrast ratio
  • UI elements meet 3:1 contrast ratio
  • Consistent use of brand colors
  • Color meaning consistency (is the same blue used for links AND errors?)
  • Dark mode issues (if applicable)
  • Hover/active state visibility
  • UI elements are distinguishable

Common issues:

  • Light gray text on white background (contrast fail)
  • Primary color used for too many different purposes
  • Borders that are nearly invisible
  • Status colors that conflict (green for danger, red for success)
4. Visual Hierarchy

Check for:

  • Eye flow -- where does the eye go first? Is that correct?
  • CTA prominence -- is the primary action the most visible element?
  • Information density -- too sparse or too crowded?
  • Grouping -- are related items visually grouped?
  • White space -- is it used intentionally or just leftover?

Common issues:

  • Two equally prominent CTAs competing for attention
  • Important information buried below less important elements
  • Sections that feel disconnected from each other
  • Dense walls of text without visual breaks
5. Component Quality

Check for:

  • Button sizing and padding consistency
  • Input field styling consistency
  • Card styling consistency (shadows, borders, radius)
  • Icon sizing and alignment with text
  • Image aspect ratios and cropping

Common issues:

  • Buttons with inconsistent padding or height
  • Mixed border-radius values (some 8px, some 12px, some 4px)
  • Icons misaligned with adjacent text baselines
  • Images stretched or poorly cropped
6. Accessibility

This skill forks without Read, so the thresholds stay inline here rather than behind a pointer it couldn't follow. rules/accessibility.md is the canonical copy — keep them in sync.

Check for:

  • Images without alt text; icon-only buttons without aria-label
  • Form inputs with no accessible name — no <label>, aria-label, or aria-labelledby
  • Body text under 4.5:1 contrast; large text under 3:1; icons/borders/focus rings under 3:1
  • Touch targets under 44x44px, or adjacent targets with no visible spacing
  • <div onClick> where a semantic element belongs
  • Focus order that doesn't follow visual order; removed focus outlines
  • Motion that ignores prefers-reduced-motion
7. Polish & Micro-details

Check for:

  • Hover states exist and are visible
  • Focus states for keyboard navigation
  • Loading states (skeleton screens, spinners)
  • Empty states (what shows when there's no data?)
  • Transitions between states (abrupt vs smooth)
  • Error states are clear

Common issues:

  • No hover state on interactive elements
  • Focus ring removed with no replacement
  • Abrupt content shifts when data loads
  • No empty state -- just a blank area
8. Responsive Issues

Check for:

  • Content readable on mobile (not too small)
  • Touch targets >= 44px on mobile
  • Navigation accessible on small screens
  • Images not overflowing containers
  • Horizontal scroll (almost always a bug)

Use mcp__chrome-devtools__resize_page to switch between desktop (1440×900), tablet (768×1024), and mobile (375×667) viewports.


Workflow
  1. Navigate to target URL
  2. Snapshot the a11y tree (text-based, returns uids for interactive elements)
  3. Screenshot the current state
  4. Analyze against the review categories above
  5. Score using the output format below
  6. Report issues with actionable fixes
After Building a Component
  1. Render the component in the browser
  2. Take a screenshot
  3. Run visual QA review
  4. Fix issues
  5. Re-screenshot and verify
After Building a Full Page
  1. Screenshot at desktop (1440px), tablet (768px), and mobile (375px) — use resize_page between captures
  2. Run responsive review across all three
  3. Run full review on the desktop version
  4. Fix issues, prioritizing critical ones
Fresh-Eyes Gate (unprimed second look)

Mandatory before declaring a user-reported visual bug fixed or claiming a visual change verified. Primed eyes pass defects that fresh eyes catch — after staring at the implementation, you see what you meant to render, not what rendered.

  1. Capture the exact screenshots under review, plus tight 2x–4x crops of every disputed area (if the complaint is "too faint", "wrong order", or "misaligned", the crop is mandatory).
  2. Spawn a fresh subagent and pass ONLY the images, the crops, and a short neutral task ("list concrete visible defects with confidence levels"). No thread history, no implementation details, no expected answer — leaking either teaches it your blind spot.
  3. When comparing two candidates, ask which is less wrong, not which matches a baseline.
  4. Treat overlap between its critique and yours as high-priority evidence; treat its novel high-confidence findings as bugs to inspect, not taste notes to dismiss.
Comparing to a Mockup
  1. Get the mockup image:
  2. From Figma (preferred): Use the Figma MCP directly — mcp__figma__get_design_context returns structured design specs (tokens, dimensions, component props) instead of pixel-pushing screenshots. The MCP server's own instructions cover URL parsing and the design-to-code workflow.
  3. Manual: Figma export, screenshot, or user-provided image
  4. Screenshot the implementation at the same viewport size
  5. Run comparison review
  6. Fix deviations by priority

Tool Cheat-Sheet

| Action | Tool | |---|---| | Load a URL | mcp__chrome-devtools__navigate_page { type: "url", url } | | Text a11y tree with uids (cheap) | mcp__chrome-devtools__take_snapshot | | Screenshot | mcp__chrome-devtools__take_screenshot | | Click an element | mcp__chrome-devtools__click { uid } | | Fill input / select option | mcp__chrome-devtools__fill { uid, value } | | Hover an element | mcp__chrome-devtools__hover { uid } | | Press key (Enter, Tab, Escape, …) | mcp__chrome-devtools__press_key { key } | | Resize viewport | mcp__chrome-devtools__resize_page { width, height } | | Run JS in page | mcp__chrome-devtools__evaluate_script |


Output Formats
Full Review
## QA Report: [Page/Component]

**Overall impression:** [One sentence -- first gut reaction]
**Quality score:** [1-10] / 10

### Critical Issues (fix before shipping)
1. **[Category]:** [Specific issue with exact details]
   -> **Fix:** [Actionable recommendation]

### Improvements (should fix)
1. **[Category]:** [Specific issue]
   -> **Fix:** [Recommendation]

### Minor Polish (nice to fix)
1. **[Category]:** [Specific issue]
   -> **Fix:** [Recommendation]

### What's Working Well
- [Specific praise -- what's well-executed]
- [Another positive]

### Passed Checks
- [x] Touch targets adequate
- [x] Heading hierarchy correct

### Issues Found
- [ ] Missing alt text on hero image
  -> Add alt="..." to components/hero/index.tsx:15

- [ ] Contrast too low on muted text
  -> Change text-gray-400 to text-gray-500

### Recommendations
- Consider adding loading skeleton for async content
Quick Review
## Quick QA: [Page/Component Name]

Score: [X]/10

Top 3 fixes:
1. [Most impactful issue + fix]
2. [Second issue + fix]
3. [Third issue + fix]

Looks good: [What's working]
Comparison Review (Implementation vs Mockup)
## Design vs Implementation Review

**Fidelity score:** [1-10] / 10

### Deviations Found
1. **[Element]:** Mockup shows [X], implementation has [Y]
   Impact: [High/Medium/Low]
   -> **Fix:** [How to match the mockup]

### Matching Well
- [Elements that accurately match the design]

Prerequisites

Requires the chrome-devtools MCP server (shipped in mcp-configs/recommended.json and installed by setup.sh).

按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。