(dir: string, filename: string, content: string)
| 22 | }); |
| 23 | |
| 24 | async function writeSkill(dir: string, filename: string, content: string) { |
| 25 | await mkdir(dir, { recursive: true }); |
| 26 | await writeFile(join(dir, filename), content, 'utf-8'); |
| 27 | } |
| 28 | |
| 29 | const MINIMAL_SKILL = `--- |
| 30 | schemaVersion: 1 |
no test coverage detected