get_full_context
Retrieve a symbol's source code along with its immediate dependencies and dependents to understand its role and impact in the codebase.
Instructions
Symbol bundle: location + source + deps/dependents (depth=1) or + change_impact (depth=2).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Symbol name (function, method, class). | |
| names | No | Batch mode: list of names (max 10). Returns {name: result} dict. Mutually exclusive with 'name'. | |
| depth | No | 0=symbol+source, 1=+deps/dependents (default), 2=+change_impact. | |
| max_lines | No | Cap source lines (default 200). | |
| mode | No | compact (default): source head 80 lines + deps/dependents as names only. full: raw payload. | |
| project | No | Project name/path (default: active). |