← ClaudeAtlas

verify-evidencelisted

Evidence-first verification discipline for code changes: never claim "done", "fixed", or "working" without evidence. Identify or create a failing reproduction, fix until it passes, capture copy-pasteable verification commands with their real output, and report faithfully — if something still fails, say so and show the output. Use this whenever you are about to say a change works, close out a bug fix, hand off a result, or write a status/verification report. Trigger phrases: "verify this", "prove it works", "show me evidence", "did the fix actually work", "reproduce the bug first", "验证一下", "拿出证据", "先复现再修", "别没验证就说好了".
MLliu6/lMl_skills · ★ 0 · AI & Automation · score 67
Install: claude install-skill MLliu6/lMl_skills
# verify-evidence **English** | [中文](#中文) An evidence-first discipline for verifying code changes. The core rule is simple and non-negotiable: > **Do not claim `done` / `fixed` / `working` without evidence that a > reader can reproduce.** "Evidence" means a command anyone can copy-paste, plus the real output it produced — not a description of what you expect would happen. This skill is generic, community-standard scaffolding: reproduce, verify, show evidence, report honestly. It contains no special review method — just the habit of proving claims. ## When to use this Reach for it right before you would otherwise write any of these: - "This is fixed." / "It works now." / "Tests pass." - "The feature is done." / "Ready for review." / "Ship it." - A status update, handoff, or verification report. If you are about to assert an outcome, stop and run the loop below first. ## The loop ### 1. State the claim precisely Write one sentence that is *falsifiable*. Vague claims cannot be verified. - Bad: "Fixed the parser." - Good: "`parse("1,,3")` now returns `[1, None, 3]` instead of raising `ValueError`." For a feature, state the acceptance check: the exact input and the exact observable result that means "working". ### 2. Reproduce first (red before green) Before fixing anything, prove the problem exists **with a command**. - **Bug fix:** create or identify a reproduction that *fails today*. Run it, capture the failing output. This is your "red". If you cannot repro