with one click
visual-verdict
Visual diff/screenshot comparison verdict
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Visual diff/screenshot comparison verdict
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Diagnose and fix build/CI failures automatically
Concurrent code generation via multi-model picker
UI/UX design and frontend component generation
OMP self-improvement — analyse own skills/agents and propose improvements
Clone and adapt a web page/design to the codebase
Trace→deep-interview pipeline for deep investigation
Based on SOC occupation classification
| name | visual-verdict |
| description | Visual diff/screenshot comparison verdict |
| trigger | visual-verdict:, /visual-verdict, /omp:visual-verdict |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | visual-verdict |
| Keywords | visual-verdict:, /visual-verdict |
| Tier | QA Tool |
| Source | src/skills/visual-verdict.mts |
Compares visual diffs or screenshots to render a pass/fail verdict. Accepts before/after image paths or URLs, runs a pixel-level diff, and produces a structured verdict with diff percentage, bounding boxes of changed regions, and a human-readable summary.
interface SkillInput { trigger: string; args: string[]; }
interface SkillOutput { status: "ok" | "error"; message: string; }
export async function activate(input: SkillInput): Promise<SkillOutput>
export function deactivate(): void
Extension-only skill. Triggers visual diff comparison in Copilot. The CLI prints guidance directing users to the Copilot CLI slash command.
P3 scope: Integration with Playwright screenshot capture and CI diff reporting (as specified in SPEC-omp-2.0 §5) are deferred to P3. The current implementation accepts user-supplied image paths only.