/** * Skills Test CLI Command * * Test and validate skills */ import { Command } from 'commander'; import type { CLIContext } from '../registry.js'; declare function createSkillsTestCommand(_ctx: CLIContext): Command; export { createSkillsTestCommand };