AutoBE
    Preparing search index...

    Interface IAutoBeDebugRuntimeSummary

    Compact digest of the final Debug-stage runtime execution attempt.

    interface IAutoBeDebugRuntimeSummary {
        attempts: number;
        elapsed: number;
        endpointFailures?: IAutoBeDebugRuntimeEndpointFailure[];
        failed: number;
        failureClusters?: IAutoBeDebugRuntimeFailureCluster[];
        failureSignatures?: string[];
        passed: number;
        providerFailures?: IAutoBeDebugRuntimeProviderFailure[];
        reason?: "runtime_setup_failed" | "runtime_execution_failed";
        repairAppliedPatches?: number;
        repairAttempts?: number;
        repairAttemptSummaries?: IAutoBeDebugRuntimeRepairAttemptSummary[];
        repairCandidateBatches?: number;
        repairEndpointAttempts?: IAutoBeDebugRuntimeEndpointRepairAttempt[];
        repairFailedEndpoints?: string[];
        repairRejectedBatches?: number;
        repairRejections?: IAutoBeDebugRuntimeRepairRejection[];
        repairRuntimeAttempts?: number;
        repairSchemaRetries?: number;
        repairSkippedReason?:
            | "no_realize_history"
            | "no_endpoint_failures"
            | "no_successful_rewrites"
            | "non_improving_runtime"
            | "repeated_failure_signature"
            | "non_implementation_failures"
            | "max_repair_attempts"
            | "stagnated_runtime"
            | "regressed_runtime"
            | "setup_failed";
        repairTopDiagnostics?: string[];
        reset?: boolean;
        setupFailure?: IAutoBeDebugRuntimeSetupFailure;
        simultaneous?: number;
        success: boolean;
        total: number;
    }
    Index

    Properties

    attempts: number

    Number of runtime attempts performed before reaching this summary.

    elapsed: number

    Wall-clock runtime execution duration in milliseconds.

    Per-endpoint regeneration feedback for failed e2e tests.

    Populated when failed > 0 and the debug repair loop can map runtime failures back to generated Realize operation functions.

    failed: number

    Number of executed tests whose runtime error field is non-null.

    Failure-kind/provider clusters used to summarize repair progress.

    failureSignatures?: string[]

    Stable signatures for the current runtime failure set.

    passed: number

    Number of executed tests whose runtime error field is null.

    Provider-level failure aggregation used for repair prioritization.

    reason?: "runtime_setup_failed" | "runtime_execution_failed"

    Harness-level failure classification when runtime setup or execution threw before producing per-operation results.

    repairAppliedPatches?: number

    Number of Debug repair patches accepted and applied to the runtime run.

    repairAttempts?: number

    Number of Realize rewrite batches attempted during Debug repair.

    repairAttemptSummaries?: IAutoBeDebugRuntimeRepairAttemptSummary[]

    Compact per-attempt repair outcomes kept for archive diagnosis.

    repairCandidateBatches?: number

    Number of repair batches that produced provider candidates for runtime.

    repairEndpointAttempts?: IAutoBeDebugRuntimeEndpointRepairAttempt[]

    Per-endpoint repair budget consumption summary.

    repairFailedEndpoints?: string[]

    Endpoints whose Debug repair rewrite attempts produced no function.

    repairRejectedBatches?: number

    Number of repair batches rejected before a Debug patch was accepted.

    Endpoint-level rejection reasons for repair batches that did not become an accepted Debug patch.

    repairRuntimeAttempts?: number

    Number of valid repair candidates executed through runtime tests.

    repairSchemaRetries?: number

    Number of Debug repair retries spent before a runtime candidate existed.

    repairSkippedReason?:
        | "no_realize_history"
        | "no_endpoint_failures"
        | "no_successful_rewrites"
        | "non_improving_runtime"
        | "repeated_failure_signature"
        | "non_implementation_failures"
        | "max_repair_attempts"
        | "stagnated_runtime"
        | "regressed_runtime"
        | "setup_failed"

    Reason Debug repair produced no patch despite a failed runtime summary.

    This field keeps archive/debug reports from collapsing distinct cases into the ambiguous patches: 0 shape.

    repairTopDiagnostics?: string[]

    Most repeated compact diagnostics observed across rejected repairs.

    reset?: boolean

    Whether the runtime reset the database before executing tests.

    Structured diagnostics captured when runtime workspace setup failed before executing generated e2e tests.

    simultaneous?: number

    Concurrent execution limit used by the runtime.

    success: boolean

    True when at least one test ran and every operation passed.

    total: number

    Number of generated e2e operation tests executed.