Skip to content

Commit 470eebe

Browse files
committed
fix: SKILL.md path now resolves to dist/skill/ (previously dist/../skill/)
1 parent dfc79a2 commit 470eebe

7 files changed

Lines changed: 1830 additions & 363 deletions

File tree

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ async function resolveAgentDir(
136136
// ── Skill ───────────────────────────────────────────────
137137

138138
const __dirname = dirname(fileURLToPath(import.meta.url));
139-
const SKILL_PATH = join(__dirname, "..", "skill", "SKILL.md");
139+
const SKILL_PATH = join(__dirname, "skill", "SKILL.md");
140140
const SKILL_MD = readFileSync(SKILL_PATH, "utf-8");
141141

142142
// ── Plugin management ───────────────────────────────────

0 commit comments

Comments
 (0)