@agentkai/cli
Version:
AgentKai命令行界面
22 lines • 561 B
TypeScript
import { AISystem } from '@agentkai/node';
export interface GoalCommandOptions {
add?: string;
list?: boolean;
complete?: string;
progress?: string;
status?: string;
remove?: string;
}
export declare class GoalCommand {
private system;
private logger;
constructor(system: AISystem);
execute(options: GoalCommandOptions): Promise<void>;
private addGoal;
private completeGoal;
private updateProgress;
private updateStatus;
private removeGoal;
private listGoals;
}
//# sourceMappingURL=goals.d.ts.map