crewai-ts
Version:
TypeScript port of crewAI for agent-based workflows
18 lines • 707 B
TypeScript
/**
* CLI command for retrieving latest crew.kickoff() task outputs.
* Optimized for memory efficiency with on-demand loading.
*/
import { Command } from '../Command.js';
export declare class LogTasksOutputsCommand extends Command {
readonly name = "log-tasks-outputs";
readonly description = "Retrieve your latest crew.kickoff() task outputs";
readonly syntax = "";
readonly examples: string[];
execute(args: string[]): Promise<void>;
/**
* Parse command line arguments for the log-tasks-outputs command
* No arguments required for this command
*/
protected parseArgs(args: string[]): Record<string, any>;
}
//# sourceMappingURL=LogTasksOutputsCommand.d.ts.map