MCPcopy Create free account
hub / github.com/QodeXcli/QodeX / isNewFile

Function isNewFile

src/orchestration/engine.ts:315–317  ·  view source on GitHub ↗
(cwd: string, rel: string)

Source from the content-addressed store, hash-verified

313}
314
315async function isNewFile(cwd: string, rel: string): Promise<boolean> {
316 try { await fs.stat(path.join(cwd, rel)); return false; } catch { return true; }
317}
318
319/** Walk project source files (bounded), skipping heavy/ignored dirs. */
320async function walkProjectSource(root: string, cap: number): Promise<Array<{ rel: string; content: string }>> {

Callers 1

extractFileEditsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected