blast-radius

blast-radius is a skill for Claude Code from rpraharaj/forward-deployed-engineer. It costs 105 tokens per session (2,450 once invoked), scanned A, original, MIT.

A change-impact review that lists the systems, code, data, settings, and users that may depend on something you plan to modify. The result includes a risk rating and checks to perform.

In plain words
What is it for?
Use it before non-local changes, schema changes, or edits to shared or widely used components. It helps answer what could break and feeds release-readiness decisions.
Why use it?
It reduces the chance that a small change breaks an overlooked caller, another repository, a published interface, an event listener, or shared data. It turns hidden dependencies into a list that others can verify.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the fde-core plugin — 30 skills shipped together

Good fit Use it before non-local changes, schema changes, or edits to shared or widely used components. It helps answer what could break and feeds release-readiness decisions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rpraharaj/forward-deployed-engineer/blast-radius
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.

Any agent
npx skills add rpraharaj/forward-deployed-engineer --skill blast-radius
Clone the repo
git clone --depth 1 https://github.com/rpraharaj/forward-deployed-engineer

Made for: Claude Code.

Or install fde-core, the plugin that ships this one along with the rest of its 30 skills.

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/rpraharaj/forward-deployed-engineer/blast-radius.svg)](https://agentmods.dev/skills/rpraharaj/forward-deployed-engineer/blast-radius)
Your own site
<a href="https://agentmods.dev/skills/rpraharaj/forward-deployed-engineer/blast-radius"><img src="https://agentmods.dev/badge/skills/rpraharaj/forward-deployed-engineer/blast-radius.svg" alt="Measured on agentmods" height="20"></a>
Per session 105 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,450 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00105 $0.02450
Opus 5 $0.00053 $0.01225
Sonnet 5 $0.00021 $0.00490
Haiku 4.5 $0.00011 $0.00245

Measured 7d ago against content hash f11f0fa0e303, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, 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 7d 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.

fde-core/skills/blast-radius/SKILL.md · 198 lines

How it starts

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

Blast radius

Establishing what a change can break, before it breaks it.

Why this exists

The changes that cause incidents are almost never the ones that looked dangerous. They're the one-line additions to a shared DTO, the extra field in a response, the "obviously safe" nullable column. They cause incidents because the danger wasn't in the change — it was in the twenty-three things that depended on the thing being changed, and nobody enumerated them.

An FDE is unusually exposed here. An engineer who has worked on a system for five years carries an approximate blast radius in their head and will flinch at the right moments. You have no such instinct, and you cannot acquire one in time. Enumeration is the substitute, and done properly it is better than instinct — it produces a list somebody else can check.

When this applies

  • Before any change beyond a genuinely local one
  • Modifying anything shared, published, or widely called
  • Any schema change
  • "What breaks if we touch this?"
  • Feeding release-readiness — this skill is the consumer list, not the go/no-go

When it doesn't

  • Genuinely local change: private method, one caller, well covered by tests
  • Net-new code nothing calls yet
  • You need to know how something works rather than what depends on it — that's trace-the-flow

Prerequisites

  • .fde/02-system-map.md — integration surface and module boundaries
  • .fde/04-feasibility.md — the change sites you're assessing
  • A trace helps where the change is on a request path, but isn't required

Procedure

Work outward. Each ring is harder to see than the last, and the outer rings are where incidents come from.

Ring 1 — Direct callers, in this repository

# Count before reading — see context-strategy
grep -rl "<SymbolName>" --include="*.<ext>" . | wc -l
grep -rn "<SymbolName>" --include="*.<ext>" . | head -40

Where the count is large, that is itself the finding: a symbol with sixty callers is not a local change regardless of how small the diff is. Stop reading ring-1 hits after about forty. Record the count, sample the rest, and move out — rings 3–6 are where incidents come from.

Read the full file on GitHub · 198 lines

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. 7d ago First seen · 198 lines · 105 tokens per session scan A f11f0fa0e303

Subscribe to this mod's changes

blast-radius is a skill published in the GitHub repository rpraharaj/forward-deployed-engineer (6 stars, last pushed 20d ago), licensed MIT. It adds 105 tokens to every session and 2,450 once invoked, about $0.0005 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.