agentsclimarketplace

Verify visual

Skill jajupmochi/agent-harness/skills/verify-visual

Visual verification for UI changes using Playwright screenshots and native model vision (GPT-5.5, Claude). For models without vision (DeepSeek), uses Playwright screenshot capture with pixel comparison for regression detection. BackstopJS available as optional regression tool.From its SKILL.md

Install
npx -y skills add jajupmochi/agent-harness --skill verify-visual

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

2.3 KB, 508 tokens by cl100k_base, as published. Nobody here has run it

verify-visual

Detection: vision capability

ModelVisionBackend
GPT-5, GPT-5.5✅ nativeModel-based screenshot analysis
Claude Opus 4+✅ nativeModel-based + chrome-devtools MCP
DeepSeek V3, DeepSeek R1❌ nonePlaywright screenshot capture + pixel comparison

Backend 1: Native model vision (GPT-5.5, Claude)

When the model has vision capability, screenshots are captured and analyzed directly by the model. No external API needed.

Backend 2: Playwright screenshots (always available)

The scripts/codex_visual_verify.sh script captures screenshots at specified viewports using Playwright or headless Chrome. Works with ANY model.

VISUAL_VERIFY_URL=https://localhost:3000 bash scripts/codex_visual_verify.sh

Output goes to .visual-verify/YYYY-MM-DD_HHMMSS/ with a results.json.

Backend 3: BackstopJS (pixel-level regression)

BackstopJS compares screenshots pixel-by-pixel against reference images. No model needed. Good for CI regression testing.

npx backstopjs init
# Configure backstop.json then:
npx backstopjs test

Workflow

graph TD
    START["/verify-visual &lt;url&gt;"] --> DETECT{"Model has<br/>vision?"}
    DETECT -->|"✅ GPT-5.5, Claude"| VISION["Native model vision<br/>analyze screenshots directly"]
    DETECT -->|"❌ DeepSeek"| SCREENSHOT["Playwright screenshot capture<br/>multiple viewports"]
    SCREENSHOT --> CHOOSE{"Need regression?"}
    CHOOSE -->|"Yes"| BACKSTOP["BackstopJS pixel comparison<br/>against reference images"]
    CHOOSE -->|"No"| REPORT["Return screenshot paths<br/>for manual review"]
    VISION --> REPORT2["Report visual issues<br/>layout, contrast, readability"]
    BACKSTOP --> REPORT2

Configuration

Optional ~/.config/agent-harness/visual-verify.json:

{
  "viewports": ["1280x720", "375x812", "1920x1080"],
  "reference_dir": "./.visual-verify/reference"
}

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,861. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.