بنقرة واحدة
visual-verdict
Visual diff/screenshot comparison verdict
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Visual diff/screenshot comparison verdict
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
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
| 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.