(p: string)
| 32 | ] |
| 33 | |
| 34 | function isDir(p: string): boolean { |
| 35 | try { |
| 36 | return fs.statSync(p).isDirectory() |
| 37 | } catch { |
| 38 | return false |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * The repo-level OrbCode directory for shared, tool-neutral data like AGENTS.md |
no outgoing calls
no test coverage detected