AgentStack
SKILL verified MIT Self-run

Skeptic

skill-tokyubevoxelverse-skeptic-skeptic · by tokyubevoxelverse

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.

No reviews yet
0 installs
0 views
view→install

Install

$ agentstack add skill-tokyubevoxelverse-skeptic-skeptic

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Skeptic? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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 makes impossible — hostile, not theatrical.

Phase 3 — Execute

Write the attacks as real tests in the repo's own test framework and conventions. Run them on the PR branch. Then the critical control: run every failing attack against the base branch too —

  • Fails on PR, passes on base → regression. The strongest possible finding.
  • Fails on both → pre-existing weakness; report it, but don't pin it on this PR.
  • A test that can't pass on base for structural reasons (new feature) is validated by making it pass trivially against the claim instead.

Phase 4 — The report

  1. Verdict up front: how many attacks, how many landed, merge-blocking or not.
  2. Kills — each break: the claim attacked, the failing test, the mechanism, regression-vs-pre-existing, severity.
  3. Survived — the attacks that didn't land. This list is the point: it's what "reviewed" should mean.
  4. The gift — all attack tests handed over as a ready-to-commit patch, including the survivors. A PR that survives the gauntlet should merge with the gauntlet.

Rules

  • Never fabricate a kill: every reported break has a runnable failing test behind it.
  • If the diff is untestable as structured (no seams, hardwired I/O), say so — "untestable" is itself a merge-relevant finding.
  • Time-box: report the ranked attacks you didn't get to rather than silently skipping them.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.