From a0cbc852a8a9387a46a573024e4ebb44be9defc5 Mon Sep 17 00:00:00 2001 From: Dominic Frei Date: Tue, 11 Aug 2026 12:05:35 +0800 Subject: [PATCH] Use gaffa-find in the doctor skill-count test Part of GAF-697. The doctor test used gaffa-bulk as an example skill directory. That skill is being removed, so swap the fixture to gaffa-find. No behavior change, it still checks that a gaffa-* dir with a SKILL.md counts. --- test/doctor.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/doctor.test.js b/test/doctor.test.js index 32672eb..742ef22 100644 --- a/test/doctor.test.js +++ b/test/doctor.test.js @@ -135,11 +135,11 @@ test("only gaffa-* directories with a SKILL.md count as skills", () => { const skillsDir = join(cwd, ".agents", "skills"); mkdirSync(join(skillsDir, "gaffa-nope"), { recursive: true }); // no SKILL.md skill(skillsDir, "other-skill"); // has SKILL.md but not a gaffa skill - skill(skillsDir, "gaffa-bulk"); // counts + skill(skillsDir, "gaffa-find"); // counts const loc = report(inspectTools({ home, cwd, env: {} }), "codex").skillLocations.find( (l) => l.scope === "project", ); - assert.deepEqual(loc.skills, ["gaffa-bulk"]); + assert.deepEqual(loc.skills, ["gaffa-find"]); } finally { rmSync(home, { recursive: true, force: true }); rmSync(cwd, { recursive: true, force: true });