بنقرة واحدة
verify
Evidence-driven verification discipline — verify claims before acting
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Evidence-driven verification discipline — verify claims before acting
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Manage OMA skills — list, add, remove, search, and edit skills
Socratic deep interview with mathematical ambiguity gating before autonomous execution
Remove AI slop - low-quality, generic, or verbose content. Use for "clean up", "remove fluff", and "make concise".
Consensus planning - agree before executing. Use for "ralplan", "consensus", "pre-execution review".
Setup routing and environment configuration. Use for "setup", "configure", and "get started".
N coordinated agents on shared task list using Claude Code native teams, with git worktree isolation per executor
| name | verify |
| description | Evidence-driven verification discipline — verify claims before acting |
| argument-hint | <claim or statement to verify> |
| trigger | /oma:verify |
| level | 2 |
<Use_When>
<Do_Not_Use_When>
<Why_This_Exists> "Looks good" is not verification. Many failed implementations passed because someone declared them complete without running fresh evidence. Verify requires that every claim be tested before it's accepted. </Why_This_Exists>
<Execution_Policy>
Extract the specific assertion to verify:
Claim: "<the exact statement being verified>"
For the claim, determine:
Run the verification command and capture output:
$ <verification command>
<actual output>
## Verification: <claim>
**Evidence:**
<quoted relevant output>
**Verdict:** [PASS — claim confirmed | FAIL — claim disproved | UNCERTAIN — insufficient evidence]
**Explanation:** <brief interpretation of what the evidence shows>
Present the verdict with the evidence citation. If UNCERTAIN, state what additional evidence is needed.
<Tool_Usage>
Bash to run verification commandsRead to examine file contents as evidenceGrep to trace code pathsmcp__plugin_oh-my-claudecode_t__lsp_diagnostics for type-check verification
</Tool_Usage>Evidence: $ cd plugins/oma && npx tsc --noEmit [no output — exit code 0]
Verdict: PASS — claim confirmed. tsc exited with code 0, no errors in output.
</Good>
<Bad>
"TypeScript should compile since we just fixed the types."
Why bad: "Should" is not evidence. Run tsc and cite the actual output.
</Bad>
</Examples>
<Final_Checklist>
- [ ] Claim parsed and stated explicitly
- [ ] Verification command executed
- [ ] Actual output captured and quoted
- [ ] Verdict is evidence-based, not assumption-based
- [ ] If fail/disprove: the evidence is stated alongside the verdict
</Final_Checklist>