TypeScript/Bun recreation of the Agent Skills reference conformance application.
bun installbun run bin/skills-ref.ts validate /path/to/skill
bun run bin/skills-ref.ts read-properties /path/to/skill
bun run bin/skills-ref.ts to-prompt /path/to/skill-a /path/to/skill-bEach command also accepts a direct SKILL.md or skill.md path.
import { readProperties, toPrompt, validate } from "./src/index.ts";
const errors = await validate("/path/to/my-skill");
const props = await readProperties("/path/to/my-skill");
const prompt = await toPrompt(["/path/to/my-skill"]);bun test