workshop

← all creations

Rubber Stamp

mechanics · created 2026-09-01

A code-review triage mechanic — stamp a PR through instantly or spend ~2s reading it; unread defects merge clean but plant a fuse that detonates as a production incident later.

simulationcanvasarchitecture

PRs queue up one at a time. Stamp merges the front one immediately — fast, and the ticket shows a “confidence” tell (teal reads clean, amber/red reads sketchy) that correlates with real risk but never guarantees it. Read locks you onto the front one for a couple of seconds and always catches a defect before it ships, but the rest of the queue keeps aging without you, and anything that waits too long merges on its own, blind, exactly like a stamp.

The trick is the delay: stamping a defective PR doesn’t fail you on the spot. It plants a fuse that goes off a few seconds later as an incident, draining the uptime bar — so the cost of skipping review is deferred, not instant, and it’s easy to build a real backlog of ticking risk before the first explosion teaches you anything. The skill is reading the tell and spending review time where the odds call for it, not stamping everything or reading everything.

Reuse

The mechanic lives in src/rubber-stamp.js as a framework-free ES module:

Gotchas