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