بنقرة واحدة
verify
Evidence-based completion check via verifier agent
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Evidence-based completion check via verifier agent
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
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
Visual diff/screenshot comparison verdict
Clone and adapt a web page/design to the codebase
استنادا إلى تصنيف SOC المهني
| name | verify |
| description | Evidence-based completion check via verifier agent |
| trigger | verify:, /verify, /omp:verify |
| autoinvoke | false |
| Field | Value |
|---|---|
| ID | verify |
| Keywords | verify:, /verify |
| Tier | Planning Tool |
| Source | src/skills/verify.mts |
Evidence-based completion check that routes to the verifier agent. Inspects current work against acceptance criteria, runs any defined test suites, and produces a structured pass/fail report with citations.
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
Activates the verify orchestration mode by spawning bin/omp.mjs verify [args]. Delegates to the verifier agent which checks completion evidence. No persistent resources are maintained.