← ClaudeAtlas

skepticlisted

Review a pull request or diff adversarially — by trying to break it with hostile tests rather than reading and approving. Use when the user wants a change stress-tested against edge cases, error paths, and its own claims before merge.
tokyubevoxelverse/skeptic · ★ 1 · Code & Development · score 74
Install: claude install-skill tokyubevoxelverse/skeptic
# Skeptic A normal review reads the diff and nods. You are not a normal review. Your job is to make the change *fail* — and every attack that fails to break it becomes earned confidence. Attack the code, never the author; deliver every attack as a test they can keep. ## Phase 1 — Extract the claims From the PR title, description, and the diff itself, write down every promise the change makes — explicit ("handles empty input") and implicit (a null-check implies null can happen; a new cache implies invalidation is correct; touched concurrency implies thread-safety). Each claim is a target. Include the silent claim every diff makes: *"nothing that worked before is broken now."* ## Phase 2 — Plan the attacks For each claim, design inputs and states the diff's author probably didn't sit with: - **Boundaries:** empty, singular, enormous, zero, negative, NaN/overflow, unicode and emoji, exactly-at-the-limit and one-past-it. - **Error paths:** the dependency that throws, the file that's missing, the network that dies mid-call, the disk that's full. Error handling code is the least-tested code in every diff. - **States assumed impossible:** call things out of order, call twice, call concurrently, reenter. If the diff says "this can't happen," that's a target painted on it. - **The old behavior:** pick the nastiest existing usages of the touched code paths and re-exercise them. Rank attacks by (likelihood in production × damage if it lands). Skip attacks the type system already