verify
Installation
SKILL.md
Verify a Bun runtime change
Build and drive the debug binary directly — never bun test, never import-and-call.
Build
bun bd --version # builds ./build/debug/bun-debug and prints its version
Drive
For any JS-visible change, run the debug binary with -e and observe stdout:
bun bd -e '<repro>' # builds, then runs; sets BUN_DEBUG_QUIET_LOGS for you
For worker/subprocess-shaped changes, spawn a subprocess (still -e) so worker teardown / event-loop-idle paths are exercised. Cross-check against node -e '<same repro>' for Node-compat changes.