gograph_path
Trace direct or transitive call paths from a source to a target Go symbol. Use to debug deadlocks or map execution flows.
Instructions
Trace and find the direct or transitive call paths connecting a starting source symbol to a target destination symbol. BEHAVIOR & SAFETY: This is a 100% local, read-only static analysis tool. It has no side effects, requires no authorization or credentials, has no rate limits, and performs zero destructive modifications. USAGE GUIDELINES: Call this tool when tracing synchronous control flow, debugging deadlocks, or mapping execution paths. Do NOT use if you only need direct callers (use gograph_callers instead). COMPLETENESS: Requires 'from' and 'to' parameters. Returns call chains connecting the two symbols. Example from: 'Serve', example to: 'BuildGraph'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| from | Yes | The starting symbol name | |
| to | Yes | The target symbol name |