#!/usr/bin/env node /** * Agentic QE v3 - CLI Commands for MCP Tools * * Thin CLI wrappers around MCP tools per ADR-010: MCP-First Tool Design. * All QE functionality is exposed as MCP tools first, CLI wraps them. */ import { Command } from 'commander'; export declare function registerTestCommands(program: Command): void; export declare function registerCoverageCommands(program: Command): void; export declare function registerQualityCommands(program: Command): void; export declare function registerDefectCommands(program: Command): void; export declare function registerRequirementsCommands(program: Command): void; export declare function registerCodeCommands(program: Command): void; export declare function registerSecurityCommands(program: Command): void; export declare function registerContractCommands(program: Command): void; export declare function registerVisualCommands(program: Command): void; export declare function registerA11yCommands(program: Command): void; export declare function registerChaosCommands(program: Command): void; export declare function registerLearningCommands(program: Command): void; /** * Register all QE MCP tool commands with a Commander program. * * @param program - Commander program instance */ export declare function registerQEToolCommands(program: Command): void; //# sourceMappingURL=qe-tools.d.ts.map