AutoBE
    Preparing search index...

    One row of IPhaseState.operationOutcomes -- a realize-phase write attempt with its terminal status.

    Pairs successful provider locations with failed-endpoint reasons in a single ordered map so a reviewer sees both outcomes at a glance instead of joining functions[] against operationFailures[] on the original history. The 2026-05-14 qwen/qwen3.6-flash todo run wrote 35 success rows plus one failure row for patchTodoAppMemberTodosTrash: unresolved query placeholder survived final render.

    Surfacing the failure's reason here makes the repeated failure candidate (placeholder grammar enforcement on the agent side) immediately readable.

    interface IOperationOutcome {
        location: string;
        name: string;
        reason?: string;
        status: "success" | "failed";
    }
    Index

    Properties

    location: string

    Provider file path relative to the generated project root.

    name: string

    Provider function name.

    reason?: string

    Failure reason captured by the archiver, present only when status === "failed". Mirrors AutoBeRealizeOperationFailure.reason verbatim so the same string a reviewer sees in raw logs lands here.

    status: "success" | "failed"

    Whether the operation reached the success path ("success") or landed in operationFailures[] ("failed").