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.
npx agentmods add skills/ykorovko/dotagents/blast-radiusnpx skills add ykorovko/dotagents --skill blast-radiusgit clone --depth 1 https://github.com/ykorovko/dotagentsWrote 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.
[](https://agentmods.dev/skills/ykorovko/dotagents/blast-radius)<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>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.
| Model | Per session | Once 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 |
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.
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.
- You asserted it. Worthless on its own.
- You pointed at the line. Cite a real
file:lineor the library's own source. - You showed the bad case cannot happen. Walk the failure path step by step and show where it stops.
- You ran it. Use a script or test that calls the real code and fails clearly if the fact is wrong.
- 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
- 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
howorwhyis also loaded, incorporate the relevant analysis rather than assuming the skill name alone invokes it. - 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.
- 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.
- 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.
- 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.
- 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.
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.
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.
- 4d ago First seen · 52 lines · 52 tokens per session scan A d14e4853de27
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.
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.
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.
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-git
Unified Git workflow. Manages the entire task lifecycle: branch creation (sprint), atomic commits (git-os), and PR opening (pr-create).
standards-kit
Unified development and design standards. Enforces code quality (complexity < 8), strict naming conventions, and the mandatory use of approved UI component libraries.
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.