visual-qa-pipeline

visual-qa-pipeline is a skill for Claude Code from jerseycheese/agent-skills. It costs 110 tokens per session (1,813 once invoked), scanned A, original, MIT.

A workflow that turns visual checks of a running app into tracked development work. It crawls pages at varied screen sizes, groups visual problems by severity, creates GitHub issues with screenshots, and can open fixes for safe design-system problems.

In plain words
What is it for?
Use it to run scheduled visual checks, create issues for major findings, combine minor findings into a roll-up issue, and optionally open fix pull requests.
Why use it?
It carries visual testing beyond a report, so important problems become assigned issues and suitable mechanical fixes can be prepared automatically.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the workflow-skills plugin — 31 skills shipped together

Good fit Use it to run scheduled visual checks, create issues for major findings, combine minor findings into a roll-up issue, and optionally open fix pull requests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jerseycheese/agent-skills/visual-qa-pipeline
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add jerseycheese/agent-skills --skill visual-qa-pipeline
Clone the repo
git clone --depth 1 https://github.com/jerseycheese/agent-skills

Made for: Claude Code.

Or install workflow-skills, the plugin that ships this one along with the rest of its 31 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for visual-qa-pipeline

README.md
[![agentmods](https://agentmods.dev/badge/skills/jerseycheese/agent-skills/visual-qa-pipeline/github.svg)](https://agentmods.dev/skills/jerseycheese/agent-skills/visual-qa-pipeline)
Your own site
<a href="https://agentmods.dev/skills/jerseycheese/agent-skills/visual-qa-pipeline"><img src="https://agentmods.dev/badge/skills/jerseycheese/agent-skills/visual-qa-pipeline/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for visual-qa-pipeline

Your own site · 80×15
<a href="https://agentmods.dev/skills/jerseycheese/agent-skills/visual-qa-pipeline"><img src="https://agentmods.dev/badge/skills/jerseycheese/agent-skills/visual-qa-pipeline.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,813 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00110 $0.01813
Opus 5 $0.00055 $0.00907
Sonnet 5 $0.00022 $0.00363
Haiku 4.5 $0.00011 $0.00181

Measured 9d ago against content hash b130b27f3361, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

visual-qa-pipeline scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/visual-qa-pipeline/SKILL.md · 130 lines

How it starts

The opening of the file, as written. The whole thing — 130 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Visual QA Pipeline

visual-crawl finds visual bugs but stops at a report. This skill takes that report the rest of the way — into GitHub issues and, for the safe mechanical stuff, fix PRs. It's the autonomous, schedulable wrapper around the crawl you already run by hand.

It does not reinvent screenshotting. The crawl mechanics — bdg setup, randomized breakpoints, audit checks, severity buckets — all come from visual-crawl. Read that skill and run its crawl as Phase 1 here; this skill is everything that happens after the findings report exists.

Prerequisites

  • Everything visual-crawl needs (bdg installed, dev server running, route list).
  • gh authenticated for the target repo.
  • For the screenshot-markdown step: the github-screenshot skill / generate-github-image-markdown.sh helper (it produces raw.githubusercontent.com URLs that render in issues and PRs).

Phase 1 — Crawl

Run the full visual-crawl flow (see its SKILL.md). Don't shortcut it — the randomization is what gives cumulative coverage across runs, and its target-identity guard matters double here: an unattended pipeline run has no one watching the screenshots, so a bdg drift to the wrong tab would silently file issues against the wrong app. Verify document.title (or an app-specific selector) before every capture and abort on mismatch. You finish this phase with:

  • A screenshot directory (/tmp/visual-crawl-TIMESTAMP/).
  • A findings report grouped into Critical / Major / Minor / Component-Level / Design System Alignment / Observations.

Phase 2 — Triage

Map every finding to an action. The crawl's severity buckets already do most of the sorting:

Severity Action
Critical File its own issue, label bug, flag it in the handoff as needs-attention-now. Do not auto-fix — Critical means broken functionality, which needs a human call.
Major File its own issue with before/after screenshots. Eligible for an auto fix PR only if it's a mechanical design-system fix (see Phase 4).
Minor / Cosmetic / Observation Batch into a single roll-up issue, one checkbox per item. Don't spam one issue per cosmetic nit.
Design System Alignment Fold into the roll-up issue unless it's a Major (e.g. bespoke UI where a canonical component exists at the wrong breakpoint).

Read the full file on GitHub · 130 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 130 lines · 110 tokens per session scan A b130b27f3361

Subscribe to this mod's changes

visual-qa-pipeline is a skill published in the GitHub repository jerseycheese/agent-skills (1 stars, last pushed 8d ago), licensed MIT. It adds 110 tokens to every session and 1,813 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

lamina-verify

Verify graph-backed product Missions after ordinary implementation work or when explicitly invoked as lamina-verify. Run isolated Persona and live UI audits; explicit verification is source-read-only.

aryaniyaps/lamina · 39 tokens

ui-test

Runs UI tests described in plain English by driving real Chrome via the Claude-in-Chrome extension. Covers end-to-end flows (clicks, forms, assertions), visual checks (screenshot + optional baseline diff), accessibility (axe-core), performance (Web Vitals + light Lighthouse-style metrics), and an interactive --debug…

mostafa-drz/claude-skills · 190 tokens

browser-qa

Automated visual testing and browser interaction verification.

Jamkris/everything-gemini-code · 12 tokens

audit-ui-e2e

Runs a beginner-mind end-to-end UI audit of any running app — local dev server, staging, production, or a specific URL. Drives Chrome through every interactive element on the target surface, collects structured findings (severity, category, where, symptom, impact, repro, triage), and hands the result off to…

mostafa-drz/claude-skills · 152 tokens

capture-screens

Automatically navigates a web app using Playwright MCP and captures context-aware named screenshots at each product feature state. Names each file semantically based on context (e.g., checkout-payment-form-filled.png). Outputs a manifest.json mapping filenames to descriptions and a summary report. Use when documenting…

mostafa-drz/claude-skills · 101 tokens

smoke-test

Traces and verifies that something works end-to-end in any environment. Builds a check plan from natural language input, confirms it, then runs each check reporting pass/fail. Use when validating deployments, pipelines, features, or migrations.

mostafa-drz/claude-skills · 51 tokens