| 5 | |
| 6 | /** A project is a directory an agent works in — mirror of kild-core::project. */ |
| 7 | export interface Project { |
| 8 | name: string; |
| 9 | path: string; |
| 10 | } |
| 11 | |
| 12 | function projectsFile(): string { |
| 13 | return path.join(kildHome(), 'projects.json'); |
nothing calls this directly
no outgoing calls
no test coverage detected