AutoBE
    Preparing search index...

    Compact error excerpt carried on IPhaseState.error. Mirrors the minimum-useful subset of the on-disk {phase}.error.json.gz payload so a summary reader can read failure context without loading the compressed sidecar.

    interface IPhaseError {
        message?: string;
        name?: string;
    }
    Index

    Properties

    Properties

    message?: string

    Trimmed and length-capped excerpt of the caught error's message. The archiver caps this at 1 KB so a runaway stack-as-message cannot bloat the summary; full message + stack live in {phase}.error.json.gz.

    name?: string

    Error constructor name (Error, TypeError, AutoBeTimeoutError, etc.). Useful when the caught failure was a typed AutoBE error whose name itself carries information beyond the message.