codegraph_detect_changes
Identify uncommitted git changes, map them to affected symbols, and trace callers to assess blast radius and risk.
Instructions
Detect uncommitted git changes and map them to affected symbols with blast radius. Runs git diff --name-only to find changed files, finds symbols in those files, then traces callers to determine impact. Returns affected symbols + risk classification.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | No | The team ID for isolation. | |
| max_depth | No | Max depth for caller traversal (blast radius). | |
| repo_path | Yes | The repository root path (absolute). |