agentic-qe
Version:
Agentic Quality Engineering Fleet System - AI-driven quality management platform
40 lines • 991 B
TypeScript
/**
* Agent Debug Command
* Debugs an agent with verbose logging and state capture
*/
export interface DebugAgentOptions {
agentName: string;
verbose?: boolean;
captureState?: boolean;
export?: 'json' | 'yaml' | 'text';
outputDir?: string;
logLevel?: 'debug' | 'info' | 'warn' | 'error' | 'fatal';
includeStackTraces?: boolean;
stream?: boolean;
onLog?: (log: LogEntry) => void;
}
export interface LogEntry {
timestamp: number;
level: string;
message: string;
context?: any;
stackTrace?: string;
}
export interface AgentState {
memory: any;
tasks: any[];
status: string;
lastActivity: number;
}
export interface DebugAgentResult {
success: boolean;
logs: LogEntry[];
state?: AgentState;
exportPath?: string;
error?: string;
}
/**
* Debug agent with verbose logging
*/
export declare function debugAgent(options: DebugAgentOptions): Promise<DebugAgentResult>;
//# sourceMappingURL=agent.d.ts.map