Impact
impact
ImpactTool — change impact analysis.
ImpactTool
Bases: AXMTool
Analyze blast radius of changing a symbol.
Registered as ast_impact via axm.tools entry point.
Workspace-aware: if path is a uv workspace root, analyzes
impact across all member packages.
Source code in packages/axm-ast/src/axm_ast/tools/impact.py
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
name
property
Return tool name for registry lookup.
execute(*, path='.', symbol=None, symbols=None, exclude_tests=False, **kwargs)
Analyze change impact for a symbol.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to package or workspace directory. |
'.'
|
symbol
|
str | None
|
Symbol name to analyze (required if symbols is not provided). |
None
|
symbols
|
list[str] | None
|
Optional list of symbol names for batch inspection. |
None
|
exclude_tests
|
bool
|
If True, exclude test files from impact analysis. |
False
|
Returns:
| Type | Description |
|---|---|
ToolResult
|
ToolResult with impact analysis. |