@ace-sdk/cli
Version:
ACE CLI - Command-line tool for intelligent pattern learning and playbook management
17 lines • 384 B
TypeScript
/**
* Session summarization command
*/
/**
* Summarize command options
*/
interface SummarizeOptions {
output?: string;
format?: string;
stdin?: boolean;
}
/**
* Summarize a recorded session
*/
export declare function summarizeCommand(sessionIdOrFile: string | undefined, options?: SummarizeOptions): Promise<void>;
export {};
//# sourceMappingURL=summarize.d.ts.map