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

Function variables_list

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

List local variables in a function.

(function: str, file: str)

Source from the content-addressed store, hash-verified

493
494
495def variables_list(function: str, file: str):
496 """List local variables in a function."""
497 state = _load_state()
498 result = _safe_get(state, "/symbols/variables", {"function": function, "file": file})
499 print(json.dumps(result, indent=2))
500 return result
501
502
503def cmd_exec(args: argparse.Namespace) -> None:

Callers

nothing calls this directly

Calls 2

_load_stateFunction · 0.85
_safe_getFunction · 0.85

Tested by

no test coverage detected