(path: string, text: string)
| 27 | } |
| 28 | |
| 29 | function writeConfig(path: string, text: string): void { |
| 30 | mkdirSync(join(path, ".."), { recursive: true }); |
| 31 | writeFileSync(path, text, "utf-8"); |
| 32 | } |
| 33 | |
| 34 | // Hard cutover: both harnesses read config from the shared CortexKit location. |
| 35 | // Project config: <cwd>/.cortexkit/magic-context.* |
no outgoing calls
no test coverage detected