(filePath, value)
| 82 | } |
| 83 | |
| 84 | function writeJson(filePath, value) { |
| 85 | writeFile(filePath, `${JSON.stringify(value, null, 2)}\n`); |
| 86 | } |
| 87 | |
| 88 | function extractStewardScript(agentsMd) { |
| 89 | const match = agentsMd.match(/<!-- BEGIN_STEWARD_SCRIPT -->\s*```js\n([\s\S]*?)\n```\s*<!-- END_STEWARD_SCRIPT -->/); |
no test coverage detected