blast-radius

blast-radius is a skill for Claude Code, Codex from ykorovko/dotagents. It costs 52 tokens per session (979 once invoked), scanned A, original, MIT.

A review of what a code change could affect outside the files it directly modifies. It looks for hidden breakage and tests the facts needed to judge whether the change is safe.

In plain words
What is it for?
Use it when explicitly checking what a change could break, reviewing a suspicious diff, or assessing the change’s wider impact.
Why use it?
A search for references may miss indirect dependencies, shared behavior, or assumptions elsewhere in the system. This review exposes those risks before the change ships.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ykorovko/dotagents/blast-radius
Any agent
npx skills add ykorovko/dotagents --skill blast-radius
Clone the repo
git clone --depth 1 https://github.com/ykorovko/dotagents

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for blast-radius

README.md
[![agentmods](https://agentmods.dev/badge/skills/ykorovko/dotagents/blast-radius.svg)](https://agentmods.dev/skills/ykorovko/dotagents/blast-radius)
Your own site
<a href="https://agentmods.dev/skills/ykorovko/dotagents/blast-radius"><img src="https://agentmods.dev/badge/skills/ykorovko/dotagents/blast-radius.svg" alt="Measured on agentmods" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 979 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00052 $0.00979
Opus 5 $0.00026 $0.00490
Sonnet 5 $0.00010 $0.00196
Haiku 4.5 $0.00005 $0.00098

Measured 4d ago against content hash d14e4853de27, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

blast-radius scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/blast-radius/SKILL.md · 52 lines

How it starts

The opening of the file, as written. The whole thing — 52 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Blast radius

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.

This skill is self-contained and complements how and why: how explains what the code does, why investigates why it is shaped that way, and blast radius finds what it breaks somewhere else. When either companion's instructions are also loaded in the current context, incorporate its analysis. Installation alone does not load or invoke another skill.

Listing the callers is not the job. Search tools find those quickly. The job is the breakage a symbol search will not show you.

Don't trust your own writeup

A blast-radius writeup that sounds right is worthless if it is untested. Find the one or two facts the whole assessment depends on and prove them by running real code. Words are where you start, not what you ship.

How sure are you

For each fact the change's safety depends on, get it as far down this list as is practical and say where it stopped.

  1. You asserted it. Worthless on its own.
  2. You pointed at the line. Cite a real file:line or the library's own source.
  3. You showed the bad case cannot happen. Walk the failure path step by step and show where it stops.
  4. You ran it. Use a script or test that calls the real code and fails clearly if the fact is wrong.
  5. You reproduced it in the running application.

Any safety fact that does not reach level 4 is unproven. Say so directly rather than rounding it up to settled.

Steps

  1. Read the change: the diff, symbols it adds, changes, and deletes, and the behavior that now differs. Trace the runtime flow when it is unclear. Investigate commits, PR context, and other historical evidence when rationale affects the risk. If how or why is also loaded, incorporate the relevant analysis rather than assuming the skill name alone invokes it.
  2. Find the one fact it is safe because of. Most scary-looking changes are safe only if one central fact holds. Spend your time testing that fact instead of producing a long list of maybes.
  3. Look where search stops. Read the source of called libraries and check their pinned versions and local patches. Work out lifecycle and scheduling behavior. Follow serialized data, API responses, database columns, wire formats, feature flags, cross-language consumers, and downstream code when relevant.
  4. Be honest about each risk. Give it a realistic likelihood and cost. Keep confirmed risks separate from concerns you checked and cleared. Cite real sources, preserve uncertainty, and never invent a caller or API. A search that finds nothing is still a result when its scope is stated.
  5. Prove the central fact. Prefer an existing test. Otherwise use an isolated temporary script that imports and calls the code the application ships. Do not modify project files unless the user authorized changes. Run the proof and include what happened. If proof is not cheap or possible, mark the fact unproven.
  6. For a big or wide change, ask independent reviewers when the harness supports them and the user permits delegation. Give them the same question, then reconcile their answers against the evidence instead of counting votes.

Read the full file on GitHub · 52 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 52 lines · 52 tokens per session scan A d14e4853de27

Subscribe to this mod's changes

blast-radius is a skill published in the GitHub repository ykorovko/dotagents (0 stars, last pushed 4d ago), licensed MIT. It adds 52 tokens to every session and 979 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

greenfield

Parallel persona planning for new projects. Research agent runs first to build domain context, then Architect, PM, and Security agents run in parallel. Synthesis agent combines all perspectives into a detailed GSD-style PLAN.md with Tensions section.

wednesday-solutions/ai-agent-skills · 50 tokens

brownfield-drift

Enforces architecture boundaries defined in PLAN.md. Use when a PR crosses module/service boundaries, when the dev asks "are we following the architecture?", or as a scheduled architecture health check. Not for querying what a module does — use brownfield-chat for that.

wednesday-solutions/ai-agent-skills · 57 tokens

pr-review

Fix engine for PR review comments. Fetches review comments (Gemini bot or human), categorizes by impact, posts a prioritized fix queue, and applies fixes on dev approval. Called directly for quick fixes, or internally by pr-review-agent as part of full PR review.

wednesday-solutions/ai-agent-skills · 58 tokens

wednesday-git

Unified Git workflow. Manages the entire task lifecycle: branch creation (sprint), atomic commits (git-os), and PR opening (pr-create).

wednesday-solutions/ai-agent-skills · 35 tokens

standards-kit

Unified development and design standards. Enforces code quality (complexity < 8), strict naming conventions, and the mandatory use of approved UI component libraries.

wednesday-solutions/ai-agent-skills · 35 tokens

codebase-intel

Unified codebase intelligence. Handles all questions about structure, logic, risk, and dependencies. Combines natural-language Q&A with deterministic lookups and pre-edit blast radius checks.

wednesday-solutions/ai-agent-skills · 40 tokens