AutoBE
    Preparing search index...

    Interface AutoBeAnalyzeSectionReviewIssue

    Structured review issue for targeted rewrites / patches.

    interface AutoBeAnalyzeSectionReviewIssue {
        evidence?: string | null;
        fixInstruction: string;
        moduleIndex: number | null;
        ruleCode: string;
        sectionIndex?: number | null;
        unitIndex: number | null;
    }
    Index

    Properties

    evidence?: string | null

    Optional supporting evidence snippet or summary.

    fixInstruction: string

    Concrete repair instruction to apply on the next retry.

    moduleIndex: number | null

    Target module index, or null if file-level issue.

    ruleCode: string

    Stable rule identifier (e.g., missing_bridge_block, non_ears_format).

    sectionIndex?: number | null

    Optional target section index for finer-grained guidance.

    unitIndex: number | null

    Target unit index, or null if module/file-level issue.