orstrum_get_callers
Returns every indexed file that imports a given file — the reverse-edge lookup for dependency tracing and blast-radius checks.
Input
path requiredstring
Path of the file you want to find callers for. Absolute, cwd-relative,
repo/relPath shorthand, or repo/relPath.md note form.Output
note: "api-service/src/api/auth",
callers: [
"api-service/src/pages/login",
"api-service/src/middleware/guard",
"api-service/src/hooks/useAuth"
]
callers is a flat list of note paths (repo/relPathNoExt). For
multi-hop reach — importers of importers — use
orstrum_analyze_impact
instead.
Use this before refactoring an exported API. The caller list is your blast radius — every file in it
may need to be updated after you change the target file's exports.