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

Function cmd_chunks

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

Source from the content-addressed store, hash-verified

299
300
301def cmd_chunks(args: argparse.Namespace) -> None:
302 state = _load_state()
303 params = {"file": args.file}
304 if args.size is not None:
305 params["size"] = args.size
306 if args.overlap is not None:
307 params["overlap"] = args.overlap
308 _output(_get(state, "/chunk_indices", params))
309
310
311def cmd_define_file(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