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

Function cmd_search

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

Source from the content-addressed store, hash-verified

237
238
239def cmd_search(args: argparse.Namespace) -> None:
240 state = _load_state()
241 params = {"q": args.query}
242 if args.limit is not None:
243 params["limit"] = args.limit
244 if args.file is not None:
245 params["file"] = args.file
246 _output(_get(state, "/symbols/search", params))
247
248
249def cmd_impl(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