gograph_dependents
Identify all downstream Go packages that import a specified package to assess the impact of modifications.
Instructions
Find all downstream packages that depend on or import the specified target package. 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 to identify downstream impact before changing a public package interface. Do NOT use for direct callers of a single function (use gograph_callers instead). COMPLETENESS: Requires 'package' parameter. Returns concrete packages importing the target package. Example package: 'internal/graph'.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| package | Yes | The package to find dependents for (e.g., 'internal/auth', 'auth', or a full import path) |