Flows
flows
FlowsTool — execution flow tracing with entry point detection.
FlowsTool
Bases: AXMTool
Trace execution flows and detect entry points in a Python package.
Registered as ast_flows via axm.tools entry point.
Source code in packages/axm-ast/src/axm_ast/tools/flows.py
| Python | |
|---|---|
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 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | |
name
property
Return tool name for registry lookup.
execute(*, path='.', entry=None, max_depth=5, cross_module=False, detail='trace', exclude_stdlib=True, **kwargs)
Detect entry points or trace flows from a symbol.
Without entry: returns detected entry points.
With entry: traces BFS flow from that entry point.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
path
|
str
|
Path to package directory. |
'.'
|
entry
|
str | None
|
Optional entry point name to trace from. |
None
|
max_depth
|
int
|
Maximum BFS depth for flow tracing. |
5
|
cross_module
|
bool
|
Resolve imports and trace into external modules. |
False
|
detail
|
str
|
Level of detail — |
'trace'
|
exclude_stdlib
|
bool
|
If False, include stdlib/builtin callees in the BFS trace. Default True (exclude them). |
True
|
Returns:
| Type | Description |
|---|---|
ToolResult
|
ToolResult with entry points or flow steps. When tracing, |
ToolResult
|
|
ToolResult
|
|
ToolResult
|
|
ToolResult
|
Returns |
ToolResult
|
in the package. |
Source code in packages/axm-ast/src/axm_ast/tools/flows.py
TraceFlow
Bases: Protocol
Signature of :func:axm_ast.core.flows.trace_flow.
Source code in packages/axm-ast/src/axm_ast/tools/flows.py
render_compact_text(entry, compact, depth, cross_module, count, truncated)
Render compact text: header + raw format_flow_compact output.
Source code in packages/axm-ast/src/axm_ast/tools/flows_text.py
render_entry_points_text(entries, count)
Render entry points grouped by module with default elision.
Source code in packages/axm-ast/src/axm_ast/tools/flows_text.py
render_source_text(entry, steps, depth, cross_module, count, truncated)
Render trace tree with inline source blocks.
Source code in packages/axm-ast/src/axm_ast/tools/flows_text.py
render_trace_text(entry, steps, depth, cross_module, count, truncated)
Render trace steps as indented tree text.