MCPcopy Index your code
hub / github.com/IAmUnbounded/devctx / getChangedFiles

Function getChangedFiles

devctx/src/core/git.ts:20–23  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

18}
19
20export async function getChangedFiles(): Promise<string[]> {
21 const status = await git.status();
22 return [...status.modified, ...status.created, ...status.not_added];
23}
24
25export async function getStagedFiles(): Promise<string[]> {
26 const status = await git.status();

Callers 7

mcp-server.tsFile · 0.90
watchCommandFunction · 0.90
diffCommandFunction · 0.90
saveCommandFunction · 0.90
summarizeCommandFunction · 0.90
suggestCommandFunction · 0.90
handoffCommandFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected