MCPcopy
hub / github.com/codeaashu/claude-code / ripgrepCommand

Function ripgrepCommand

src/utils/ripgrep.ts:67–78  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

65})
66
67export function ripgrepCommand(): {
68 rgPath: string
69 rgArgs: string[]
70 argv0?: string
71} {
72 const config = getRipgrepConfig()
73 return {
74 rgPath: config.command,
75 rgArgs: config.args,
76 argv0: config.argv0,
77 }
78}
79
80const MAX_BUFFER_SIZE = 20_000_000 // 20MB; large monorepos can have 200k+ files
81

Callers 6

ripGrepRawFunction · 0.85
ripGrepFileCountFunction · 0.85
ripGrepStreamFunction · 0.85
sandbox-adapter.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected