UNPKG

aiwg

Version:

Deployment tool and support utility for AI context. Copies agents, skills, commands, rules, and behaviors into the paths each AI platform reads (Claude Code, Codex, Copilot, Cursor, Warp, OpenClaw, and 6 more) so one source of truth works across 10 platfo

14 lines 531 B
/** * CLI Analyzer for MCPsmith * * Parses CLI tool help output to extract tool definitions. * * @architecture @.aiwg/architecture/mcpsmith-architecture.md - Section 5.1 * @implements @.aiwg/architecture/decisions/ADR-014-mcpsmith-mcp-server-generator.md */ import type { AnalyzerResult, CLIAnalyzerOptions } from '../types.js'; /** * Analyze a CLI tool and extract MCP tool definitions */ export declare function analyzeCLI(options: CLIAnalyzerOptions): Promise<AnalyzerResult>; //# sourceMappingURL=cli-analyzer.d.ts.map