← ClaudeAtlas

receiptslisted

Check whether work an agent said it finished actually happened, and stop reporting done without evidence. Use whenever a coding agent claims something is fixed, tests pass, the build succeeded, or it deployed — and whenever the user says it didn't actually work, "you said it was done", "did you actually run it", "prove it", "are you sure", "it's still broken", "kaam hua bhi hai ya nahi", "chala ke dekha?", or asks to verify, double-check, or audit a completed task. Also use before reporting completion on any task, to decide whether the claim is backed by something that was actually run, and after a session to audit which past claims had no evidence behind them.
xniperbuilds/receipts · ★ 0 · Code & Development · score 67
Install: claude install-skill xniperbuilds/receipts
# receipts One question, asked before every completion claim: > **What did I run, and what did it print?** If there is no answer, the work is not done — it is *believed* to be done. Those are different things, and only one of them is safe to report. --- ## The rule **Never state that something works without an observation that shows it working.** Not "the change looks right". Not "this should fix it". An observation: a command that ran, an output that was read, a page that rendered, a request that returned. Three ways to satisfy it, in descending order of strength: 1. **Ran it** — the test suite, the build, the script, the actual failing repro 2. **Observed it** — the page in a browser, the log line, the API response, the file on disk after writing it 3. **Could not** — say so, plainly, in the same breath as the claim: *"Changed X. Couldn't run it here — the suite needs a database I don't have."* Option 3 is a perfectly good answer. Silently skipping to "done" is not. --- ## What counts as evidence, per claim | If you're about to say | You need | |---|---| | "tests pass" | The test command in this session, and its output read | | "N/N passing" | The run that printed those numbers. Not a count from memory, not from an earlier session | | "it builds" | The build command, and its exit/output | | "fixed" / "works now" | **The original failing case, re-run and now passing.** A build succeeding is not proof a bug is fixed | | "deployed" / "it's live" | The deploy