(rootDir: string)
| 47 | } |
| 48 | |
| 49 | function createOpenSpecRoot(rootDir: string): void { |
| 50 | fs.mkdirSync(path.join(rootDir, 'openspec', 'specs'), { recursive: true }); |
| 51 | fs.mkdirSync(path.join(rootDir, 'openspec', 'changes', 'archive'), { recursive: true }); |
| 52 | fs.writeFileSync(path.join(rootDir, 'openspec', 'config.yaml'), 'schema: spec-driven\n'); |
| 53 | } |
| 54 | |
| 55 | async function registerStore( |
| 56 | id: string, |
no outgoing calls
no test coverage detected