/** * Docs Command * Issue #264: Documentation retrieval (RAG-like usage for AI tools) * * [MF-CONS-001] Uses createDocsCommand() factory + addCommand() pattern, * unified with issue command registration style. * * [SF-003] SRP: This handler only does argument parsing and output formatting. * File I/O and search logic are delegated to DocsReader utility (docs-reader.ts). * * [SF-CONS-005] Uses console.log directly (status command pattern) since this is * an output-only command with no server lifecycle management. * * @module docs-command */ import { Command } from 'commander'; /** * Create the docs command. * [MF-CONS-001] Returns a Command instance for program.addCommand(). */ export declare function createDocsCommand(): Command; //# sourceMappingURL=docs.d.ts.map