(name: string)
| 8 | const SKILLS = path.resolve(HERE, '..', 'examples', 'skills'); |
| 9 | |
| 10 | async function load(name: string) { |
| 11 | const dir = path.join(SKILLS, name); |
| 12 | const raw = await fs.readFile(path.join(dir, 'SKILL.md'), 'utf8'); |
| 13 | return parseSkill(raw, name, dir, 'builtin'); |
| 14 | } |
| 15 | |
| 16 | describe('backend-architect skill', () => { |
| 17 | it('parses with required fields + bilingual triggers', async () => { |
no test coverage detected