/** * Bundled skill markdowns. Auto-generated from src/skills/*.md by * scripts/build-skills.mjs — DO NOT EDIT BY HAND. Add a new skill by * dropping a .md file in src/skills/ (with optional YAML frontmatter) * and re-running `node scripts/build-skills.mjs`. * * Skills are exposed through the read_skill tool; their descriptions live * in the system prompt. Pattern follows the Anthropic skill convention: * description in the prompt, full content on demand. */ export interface BundledSkill { name: string; description: string; content: string; } export declare const SKILLS: Record; export declare const SKILL_NAMES: string[]; //# sourceMappingURL=skills.d.ts.map