/** * `soleri validate-skills` — validate user-installed SKILL.md op-call examples * against the engine's actual Zod schemas. * * Scans ~/.claude/skills/ for SKILL.md files, extracts inline op-call examples, * and checks each example's params against the corresponding facade schema. * Exits with code 1 if any mismatches are found. */ import type { Command } from 'commander'; export declare function registerValidateSkills(program: Command): void;