MCPcopy Create free account
hub / github.com/JaredStewart/coderlm / callers

Function callers

plugin/skills/coderlm/scripts/coderlm_cli.py:436–441  ·  view source on GitHub ↗

Find call sites for a symbol. Returns list of caller dicts.

(symbol: str, file: str, limit: int = 50)

Source from the content-addressed store, hash-verified

434
435
436def callers(symbol: str, file: str, limit: int = 50):
437 """Find call sites for a symbol. Returns list of caller dicts."""
438 state = _load_state()
439 result = _safe_get(state, "/symbols/callers", {"symbol": symbol, "file": file, "limit": limit})
440 print(json.dumps(result, indent=2))
441 return result
442
443
444def tests(symbol: str, file: str, limit: int = 20):

Callers

nothing calls this directly

Calls 2

_load_stateFunction · 0.85
_safe_getFunction · 0.85

Tested by

no test coverage detected