Find what a change could break somewhere else before it ships, beyond the diff, and prove the one fact it's safe because of by running real code instead of writing it up. Use for 'blast radius of X', 'what could this break', or reviewing a small diff you don't trust. DO NOT use for explaining how existing code works (use how instead) or investigating why it was built that way (use why instead). Triggers: blast radius of X, what could this break, is this change safe, review this diff, what am I missing in this change.
69
84%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Ported from the
blast-radiusskill in cursor/plugins pstack — Cursor, a separate AI-coding-editor product, not to be confused with a text/DB cursor — for use with this harness'sAgenttool. Two adaptations from the original:
- Step 6's "run it as an
arena" (ask several different vendor models the same question) doesn't map onto this harness'sAgenttool, which only spawns Claude-family models. The equivalent here is spawning several independentgeneral-purposeagents, each drawing a distinctmodel/effortcombination from the same four-combination panelhow's critique mode uses — see Step 6 below.- "Write it through
unslop" (a skill from that other editor for stripping AI-slop prose) has no port here — if your project enforces an equivalent prose-quality or AI-slop-detection hook, writing the blast-radius writeup will get that scoring for free; otherwise apply the same discipline manually (no narrative comments, no hedge-padding, no filler).If your environment has code-graph MCP tools (e.g.
code-review-graph'sget_impact_radius_tool/get_affected_flows_tool/detect_changes_tool, ortokensave'stokensave_callers/tokensave_impact/tokensave_context), they do the mechanical "find the callers" part of Step 3 far more cheaply than grep — use them there instead of manual search when the target is in an indexed repo. They don't replace Steps 2, 4, and 5, which are the actual point of this skill.Third adaptation: prefer a code-graph tool over raw grep, when one is connected. The original has Step 3 read library source and grep by hand. If a code-graph MCP indexes the target repo, route through its context/search tools first, the same preference
howandwhyapply. RawRead/grepstay the fallback for anything the code-graph tool genuinely doesn't index: a pinned dependency's code undernode_modules/vendor/site-packages, a file kind outside its indexed languages, or an environment with no such tool connected at all.
Find what a change breaks somewhere else, before it ships. Use for "blast radius of X", "what could this break", or reviewing a small diff you don't trust yet.
Companion to how and why. how tells you what the code does. why tells you why it's shaped that way. Blast radius tells you what it breaks somewhere else.
Listing the callers is not the job. tokensave_callers/tokensave_impact, or code-review-graph's impact-radius tools, can find those in a second. The job is the breakage a caller list won't show
you.
tokensave, code-review-graph) speeds up the caller/impact sweep in Step 3 when connected, but Glob/Grep/Read work as a fallbackhow instead.why instead.Before replying, run the same check step 5 already calls for: confirm the one safety fact is either proven, with the actual script/test output pasted in, or explicitly marked unproven. Run this check the same way you'd run tests before shipping code — never submit a writeup where that status is ambiguous or implied rather than stated.
A blast-radius writeup that sounds right is worthless. It reads as convincing whether or not it's true, and that is the trap you are walking into. So don't hand back the writeup. Find the one or two facts the whole thing depends on and prove them by running code. Words are where you start, not what you ship.
For each fact the change's safety depends on, get it as far down this list as is cheap, and say where it stopped.
file:line, or the library's own source.Any safety fact you can't get to step 4, say so out loud. Don't write it up as settled. Step 4 is usually one small script that imports the same library the app ships and calls the exact function you're worried about.
tokensave_context rather than opening files cold. Use the why skill's Step 2 (code anchor: tokensave_blame/tokensave_log, PR/MR context) to pull the history if you need more than the diff
shows.tokensave_context/tokensave_search first if it's inside this repo's own graph (a local patch, a vendored copy
tokensave indexes), raw Read only for source outside that graph (a pinned dependency under node_modules/vendor/site-packages) — and check its pinned version and any local patch either way.
Work out when things run: microtasks, unmount and teardown, framework-specific lifecycle quirks. Follow what a symbol search misses: the JSON an API returns, a DB column, a wire format, another
language reading the same bytes, a feature flag, code three hops downstream. tokensave_callers/tokensave_impact, or get_impact_radius_tool/get_affected_flows_tool (code-review-graph),
handle the direct-caller sweep; this step is about what those tools structurally cannot see.why. Cite a
real file:line, a search that finds nothing is still an answer, and never make up a caller or an API.general-purpose agents on the same question, each with a distinct model/effort combination drawn from
sonnet/high, opus/xhigh, sonnet/max, fable/high (the same panel how's critique mode uses) so they aren't all reasoning the same way — for 2 agents use the first two, for 3 the
first three, for 4 use all of them. Then merge the answers yourself as the lead — keep a risk only if it survives your own read of the evidence, not just because one agent flagged it.tokensave_context/tokensave_callers don't cover a dependency (it's vendored, in node_modules): that's the documented fallback case for raw Read, not a sign something's broken.file:line, how likely and how bad, and how to check. Paste the proof for the ones that matter.Cite real code, and strip anything private before it goes anywhere public.
NEVER hand back the writeup as the final answer without proving the one fact the change's safety depends on.
WHY: a blast-radius writeup that sounds right is worthless — it reads as convincing whether or not it's true. Proof, not prose, is what this skill exists to produce.
NEVER treat a caller list as the deliverable.
WHY: tokensave_callers/tokensave_impact, or code-review-graph's impact tools, can produce a caller list in a second. The job is the breakage those tools structurally cannot see — a caller
list on its own answers a question nobody asked.
NEVER write an unproven safety fact up as settled.
WHY: any fact that didn't reach step 4 ("you ran it") or step 5 ("you reproduced it live") on the how-sure-are-you ladder is still a guess with a plausible shape. Marking it unproven honestly is more useful than a confident-sounding sentence that turns out wrong.
NEVER invent a caller, an API, or a search result that wasn't actually found.
WHY: a fabricated citation is worse than an honest "not found" — it misleads the reader into false confidence about coverage that doesn't exist.
NEVER round an unproven claim up to "probably fine" because proving it looked expensive.
WHY: step 4 is usually one small script that imports the same library the app ships and calls the exact function in question — cheap enough that skipping it to round up rarely saves effort, it just defers the risk to whoever ships the change.
Reply: the writeup above, with the one safety fact either proven or marked unproven.
a1083f4
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.