Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/gkit/src/skill.embed.ts
Original file line number Diff line number Diff line change
@@ -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<Record<string, string>> {
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 };
}
Loading