MCPcopy Create free account
hub / github.com/Fibi66/FeiControl / FileNode

Interface FileNode

src/app/api/files/route.ts:14–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12const SKILLS_DIR = "skills";
13
14interface FileNode {
15 name: string;
16 path: string;
17 type: "file" | "folder";
18 children?: FileNode[];
19}
20
21async function fileExists(filePath: string): Promise<boolean> {
22 try {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected