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

Function cmd_peek

plugin/skills/coderlm/scripts/coderlm_cli.py:277–284  ·  view source on GitHub ↗
(args: argparse.Namespace)

Source from the content-addressed store, hash-verified

275
276
277def cmd_peek(args: argparse.Namespace) -> None:
278 state = _load_state()
279 params = {"file": args.file}
280 if args.start is not None:
281 params["start"] = args.start
282 if args.end is not None:
283 params["end"] = args.end
284 _output(_get(state, "/peek", params))
285
286
287def cmd_grep(args: argparse.Namespace) -> None:

Callers

nothing calls this directly

Calls 3

_load_stateFunction · 0.85
_outputFunction · 0.85
_getFunction · 0.85

Tested by

no test coverage detected