#!/usr/bin/env node /** * PraisonAI TypeScript CLI * Implements CLI Spec v1.0.0 * * Binary: praisonai-ts * Package: praisonai (npm) */ import { CLI_SPEC_VERSION } from './spec/cli-spec'; export interface ParsedArgs { command: string; subcommand?: string; args: string[]; options: Record; } /** * Parse command line arguments according to CLI spec */ declare function parseArgs(argv: string[]): ParsedArgs; /** * Load and execute a command (lazy loading) */ declare function executeCommand(parsed: ParsedArgs): Promise; export { parseArgs, executeCommand, CLI_SPEC_VERSION };