(prefix)
| 23 | const nodeBin = process.execPath; |
| 24 | |
| 25 | async function makeTempDir(prefix) { |
| 26 | return fs.mkdtemp(path.join(os.tmpdir(), `${prefix}-`)); |
| 27 | } |
| 28 | |
| 29 | async function writeSkillFixture(rootPath, { description, bodyLines }) { |
| 30 | await fs.mkdir(rootPath, { recursive: true }); |