/** * Skills — Vigil-parity skill registry. * * A skill is a markdown file that documents a reusable approach * (e.g., "simplify", "security-review", "init-project") with * frontmatter metadata. The agent invokes a skill via * `Skill({ name })`, which loads the skill body and returns it as * the tool result. The model then follows the instructions inline. * * Storage layout (priority order — both load, project takes precedence): * /.vigil/skills//SKILL.md * ~/.vigil/skills//SKILL.md * * Frontmatter: * --- * name: simplify * description: Review changed code for reuse and quality. * --- * * Body — instructions, examples, anything markdown. */ import type { ToolDefinition } from '../core/toolRuntime.js'; export declare function createSkillTools(workingDir: string): ToolDefinition[]; //# sourceMappingURL=skillTools.d.ts.map