Member Junction
    Preparing search index...

    Renders a single delegation in the live session thread:

    • Working: a compact card — agent avatar, " is working…", the CURRENT friendly step label, the latest raw message indented + muted beneath it, and a thin progress bar (determinate when the server supplies a percentage, indeterminate shimmer otherwise).
    • Done: COLLAPSED to a single-line chip — ✓ <agent> · <one-line result preview> · via <agent> — expandable inline (click / chevron) to the full result text. Failures render the variant.

    Provenance is a small via <agent> badge + a shield icon whose title tooltip carries the full provenance sentence (no repeated sentence under every card).

    DEVELOPER MODE (gear-gated by the overlay shell): when DevMode is on and the card knows its delegated run id, an "Open run" link is revealed that emits OpenRunRequested so the shell can navigate to the MJ: AI Agent Runs record.

    Index

    Constructors

    Properties

    CancelRequested: EventEmitter<string> = ...

    Emitted with the call's ID when the WORKING card's ✕ cancel affordance is clicked — EXPLICIT user intent to kill the in-flight delegated run (by deliberate host policy, barge-in alone never cancels delegations; only this button does). The overlay routes it to RealtimeSessionService.CancelDelegation, which flips this card to a failed "Cancelled by user" result.

    The delegation card view-model to render (immutable — replaced on every update).

    DevMode: boolean = false

    Whether developer affordances (the "Open run" link) are revealed.

    Expanded: boolean = false

    Whether the done chip is expanded inline to show the full result text.

    OpenArtifactRequested: EventEmitter<ParsedDelegationArtifact> = ...

    Emitted when a "View" artifact chip is clicked (the overlay focuses the artifact's tab).

    OpenRunRequested: EventEmitter<string> = ...

    Emitted with the delegated run's ID when the dev "Open run" link is clicked.

    Accessors

    Methods