From 300f25e44856d9d8692113b25b007784f7bdbcb3 Mon Sep 17 00:00:00 2001 From: EthanHuo Date: Sun, 30 Aug 2026 12:51:24 +0800 Subject: [PATCH] fix: hide embedded guides from skill discovery --- packages/gkit/src/{SKILL.md => index.md} | 0 packages/gkit/src/skill.embed.ts | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename packages/gkit/src/{SKILL.md => index.md} (100%) diff --git a/packages/gkit/src/SKILL.md b/packages/gkit/src/index.md similarity index 100% rename from packages/gkit/src/SKILL.md rename to packages/gkit/src/index.md diff --git a/packages/gkit/src/skill.embed.ts b/packages/gkit/src/skill.embed.ts index 56b5c2e..4948c21 100644 --- a/packages/gkit/src/skill.embed.ts +++ b/packages/gkit/src/skill.embed.ts @@ -1,6 +1,6 @@ // Runtime read, not a Bun macro: gkit ships as a source tarball installed // into node_modules, and Bun refuses to run macros from there. export async function embedSkill(): Promise> { - const text = await Bun.file(new URL("./SKILL.md", import.meta.url)).text(); + const text = await Bun.file(new URL("./index.md", import.meta.url)).text(); return { "SKILL.md": text }; }