Member Junction
    Preparing search index...

    The normalized shape a tool ResultJson parses into.

    interface ParsedDelegationResult {
        Artifacts?: ParsedDelegationArtifact[];
        Output: string;
        RunID?: string;
        Success: boolean;
    }
    Index

    Properties

    Artifacts the delegated run produced, when the server reported any (artifacts in the JSON). Drives the overlay's auto-opened artifact tabs. undefined when absent, empty, or malformed.

    Output: string

    The result text — the agent's output, or the structured error message on failure.

    RunID?: string

    ID of the delegated agent run (MJ: AI Agent Runs) when the server reported one (runId in the JSON). Lets developer tooling link straight to the run record.

    Success: boolean

    Whether the delegated work succeeded (success !== false; non-JSON payloads default to true).