Member Junction
    Preparing search index...

    A compact preview of one DELEGATED agent run the reviewed session spawned (an MJ: AI Agent Runs row linked via AgentSessionID, EXCLUDING the co-agent's own observability run). Carries just enough to render a done delegation card.

    interface RealtimeSessionReviewRun {
        AgentID: string;
        AgentName: string | null;
        CompletedAt: Date | null;
        ErrorMessage: string | null;
        FinalStep: string | null;
        Message: string | null;
        RunID: string;
        StartedAt: Date | null;
        Status: string;
        Success: boolean;
    }
    Index

    Properties

    AgentID: string

    The delegated agent's id.

    AgentName: string | null

    Denormalized agent display name from the run view, when available.

    CompletedAt: Date | null
    ErrorMessage: string | null

    The run's error message, when it failed.

    FinalStep: string | null

    The final step the run reported (Success | Failed | Retry | …), when known.

    Message: string | null

    The run's user-facing result message, when one was recorded.

    RunID: string

    MJ: AI Agent Runs.ID.

    StartedAt: Date | null
    Status: string

    Terminal (or last-known) run status (Completed | Failed | Running | …).

    Success: boolean

    Whether the run reported success.