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

Function impl_

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

Get full source code of a symbol. Returns source string or dict.

(symbol: str, file: str)

Source from the content-addressed store, hash-verified

426
427
428def impl_(symbol: str, file: str):
429 """Get full source code of a symbol. Returns source string or dict."""
430 state = _load_state()
431 result = _safe_get(state, "/symbols/implementation", {"symbol": symbol, "file": file})
432 print(json.dumps(result, indent=2) if isinstance(result, (dict, list)) else result)
433 return result
434
435
436def callers(symbol: str, file: str, limit: int = 50):

Callers

nothing calls this directly

Calls 2

_load_stateFunction · 0.85
_safe_getFunction · 0.85

Tested by

no test coverage detected