(filePath: string)
| 19 | const SKILL_PATH = path.join(import.meta.dirname, "..", "SKILL.md"); |
| 20 | |
| 21 | function read(filePath: string): string { |
| 22 | return fs.readFileSync(filePath, "utf-8"); |
| 23 | } |
| 24 | |
| 25 | /** |
| 26 | * Pull every ```ts / ```typescript code block out of a markdown file. |
no outgoing calls
no test coverage detected
searching dependent graphs…