agentic-qe
Version:
Agentic Quality Engineering Fleet System - AI-driven quality management platform
38 lines • 941 B
TypeScript
/**
* Troubleshoot Command
* Troubleshoots specific issues with diagnosis and suggestions
*/
export interface TroubleshootOptions {
issue: string;
context?: any;
logFile?: string;
export?: 'json' | 'yaml';
outputDir?: string;
stepByStep?: boolean;
searchKB?: boolean;
}
export interface ResolutionStep {
step: number;
action: string;
description: string;
command?: string;
}
export interface SimilarIssue {
title: string;
solution: string;
relevance: number;
}
export interface TroubleshootResult {
success: boolean;
diagnosis: string;
suggestions: string[];
resolutionSteps?: ResolutionStep[];
similarIssues?: SimilarIssue[];
errorPatterns?: string[];
reportPath?: string;
}
/**
* Troubleshoot specific issue
*/
export declare function troubleshoot(options: TroubleshootOptions): Promise<TroubleshootResult>;
//# sourceMappingURL=troubleshoot.d.ts.map