()
| 48 | }); |
| 49 | |
| 50 | function sampleFiles(): Map<string, string | Buffer> { |
| 51 | return new Map<string, string | Buffer>([ |
| 52 | ['SKILL.md', '---\nname: test-skill\nhost: example.com\ntriggers: []\nargs: []\ntrusted: false\n---\nbody\n'], |
| 53 | ['script.ts', 'console.log("hi");\n'], |
| 54 | ['_lib/browse-client.ts', '// fake SDK\n'], |
| 55 | ['fixtures/example-com-2026-04-27.html', '<html></html>\n'], |
| 56 | ['script.test.ts', 'import { describe, it, expect } from "bun:test"; describe("x", () => { it("y", () => expect(1).toBe(1)); });\n'], |
| 57 | ]); |
| 58 | } |
| 59 | |
| 60 | // ─── validateSkillName ────────────────────────────────────────── |
| 61 |
no outgoing calls
no test coverage detected