MCPcopy Index your code
hub / github.com/Xyntopia/taskyon / getFile

Function getFile

src/modules/taskManager.ts:207–213  ·  view source on GitHub ↗
(uuid: string)

Source from the content-addressed store, hash-verified

205}
206
207export async function getFile(uuid: string) {
208 const fileMap = await getFileMappingByUuid(uuid);
209 if (fileMap?.opfs) {
210 const file = openFile(fileMap.opfs);
211 return file;
212 }
213}
214
215export function findAllFilesInTasks(taskList: LLMTask[]): string[] {
216 const fileSet = new Set<string>();

Callers

nothing calls this directly

Calls 2

openFileFunction · 0.90
getFileMappingByUuidFunction · 0.85

Tested by

no test coverage detected