一键导入
verify
Verification ladder. Pick smallest scope, run scripts in order, smoke UI, report PASS/NO-GO.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Verification ladder. Pick smallest scope, run scripts in order, smoke UI, report PASS/NO-GO.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use this skill when the user wants to test a business idea, strategy, or initiative against real-world risk. Triggers include: 'test my idea', 'what are the riskiest assumptions', 'help me validate this', 'run EMT on this', 'extract assumptions', 'assumption mapping', 'what could go wrong with this plan', 'pressure test this', 'validate this plan', 'what could go wrong with this strategy', 'identify hidden risk in this idea', or any request to pressure-test a business decision before committing resources. Runs a guided Extract → Map → Test system based on David J. Bland's Precoil methodology.
Calibrate an LLM judge against human labels using data splits, TPR/TNR, and bias correction. Use after writing a judge prompt (write-judge-prompt) when you need to verify alignment before trusting its outputs. Do NOT use for code-based evaluators (those are deterministic; test with standard unit tests).
Generate beautiful, self-contained HTML pages that visually explain systems, code changes, plans, and data. Use when the user asks for a diagram, architecture overview, diff review, plan review, project recap, comparison table, or any visual explanation of technical concepts. Also use proactively when you are about to render a complex ASCII table (4+ rows or 3+ columns) — present it as a styled HTML page instead.
This skill should be used when shaping a software change and needing to breadboard the solution at the right level of abstraction (places, affordances, connections), including mapping an existing system via UI + code affordances, producing a wiring diagram, a parts/BOM plan, a fit check, and (when relevant) an extract-vs-duplicate analysis.
Clarify requirements before implementing. Do not use automatically, only when invoked explicitly.
This skill should be used when a user needs a demo package that starts with a live demo (not slides) and produces both a demo script and a navigable single-file HTML runbook, including caveats, respectful competitive comparison, and LLM architecture details (RAG, evals, observability).
| name | verify |
| description | Verification ladder. Pick smallest scope, run scripts in order, smoke UI, report PASS/NO-GO. |
Provide a single, consistent way for agents to verify changes before claiming “done”.
Verification is skill-only.
verify command.Run verification for every change that alters behaviour, build outputs, tests, types, linting, packaging, CI, or UI. If you cannot verify, return NO-GO with a concrete reason and the smallest unblock request.
package.json:package.json:verifytest, test:unit, test:cilinttypecheck, tscbuildformat, fmt, prettier:checkcheck (sometimes bundles lint/typecheck/test)verify script to be added.Run the best available equivalents in this order:
format:check / prettier:check / fmt:checktypecheck / tsc / equivalenttest / test:unit for code changesbuild when:
Notes:
verify or check script, prefer it first. If it fails, fix before running anything else.If changes affect UI, routing, auth flows, forms, state, client behaviour, styling that could break layout, or anything user-visible, do a smoke test.
dev, start, preview).If you cannot start the app due to missing env/secrets, return NO-GO and request the minimal env needed (or a mock mode).
Do the minimum that proves the change works:
Prefer using the agent-browser skill for smoke testing when real interaction matters.
Capture evidence where possible:
verify script that bundles lint/typecheck/test/build for that scope.Include a section named Verification with either:
PASS:
NO-GO: