nexus-agents - v2.80.0
    Preparing search index...

    Interface CodeAnalysisResult

    Code analysis result from CodeExpert.

    interface CodeAnalysisResult {
        content: string;
        structuredData?: Record<string, unknown>;
        recommendations?: string[];
        warnings?: string[];
        confidence: number;
        modelUsed?: string;
        operationType: "debugging" | "optimization" | "refactoring" | "generation";
        affectedFiles?: string[];
        codeChanges?: CodeChange[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    content: string

    Primary result content

    structuredData?: Record<string, unknown>

    Structured data if applicable

    recommendations?: string[]

    Recommendations or suggestions

    warnings?: string[]

    Warnings or issues found

    confidence: number

    Confidence score (0-1)

    modelUsed?: string

    Model used for this expert's execution (Issue #817)

    operationType: "debugging" | "optimization" | "refactoring" | "generation"

    Type of code operation performed

    affectedFiles?: string[]

    Files affected

    codeChanges?: CodeChange[]

    Code changes or suggestions