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

Function symbols

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

List symbols. Optionally filter by file and/or kind.

(file: str | None = None, kind: str | None = None, limit: int = 100)

Source from the content-addressed store, hash-verified

461
462
463def symbols(file: str | None = None, kind: str | None = None, limit: int = 100):
464 """List symbols. Optionally filter by file and/or kind."""
465 state = _load_state()
466 params = {"limit": limit}
467 if file:
468 params["file"] = file
469 if kind:
470 params["kind"] = kind
471 result = _safe_get(state, "/symbols", params)
472 print(json.dumps(result, indent=2))
473 return result
474
475
476def peek_file(file: str, start: int = 0, end: int = 50):

Callers

nothing calls this directly

Calls 2

_load_stateFunction · 0.85
_safe_getFunction · 0.85

Tested by

no test coverage detected