get_blast_radius
Analyze the blast radius of file changes by mapping directly and transitively affected files using BFS on the dependency graph. Returns severity and impacted files by depth.
Instructions
Analyze the blast radius of changes to a file: find all files that would be directly or transitively affected. Uses BFS on the dependency graph. Returns severity assessment, impacted files by depth, and edges. Requires a prior reindex. No API call needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| file | Yes | Relative file path from project root (e.g., "src/tools/searchCode.ts") | |
| depth | No | Maximum BFS depth (default: 2). Higher values = wider blast radius but slower. |