crewai-ts
Version:
TypeScript port of crewAI for agent-based workflows
27 lines • 970 B
TypeScript
/**
* CLI command for replaying a crew execution from a specific task.
* Optimized for performance and debugging.
* Memory-optimized with proper type safety.
*/
import { Command } from '../Command.js';
export declare class ReplayTaskCommand extends Command {
readonly name = "replay-task";
readonly description = "Replay the crew execution from a specific task ID";
readonly syntax = "<task-id> [options]";
readonly examples: string[];
execute(args: string[]): Promise<void>;
/**
* Parse command line arguments for the replay-task command
* Optimized for handling various argument formats
*/
/**
* Parse command line arguments with enhanced type safety and memory optimization
* @param args Command line arguments
* @returns Parsed arguments object
*/
protected parseArgs(args: string[]): {
taskId?: string;
verbose?: boolean;
};
}
//# sourceMappingURL=ReplayTaskCommand.d.ts.map