Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface OrchestrationDag

    interface OrchestrationDag {
        createdTs: number;
        dagHash: string;
        dagId: string;
        dagSignature: string;
        fleetId: string;
        nodes: {
            calleeAgentId: string;
            callerAgentId: string;
            contextHash: string;
            dagId: string;
            endTs: number | null;
            eventType:
                | "agent_handoff_sent"
                | "agent_handoff_received"
                | "agent_delegation_started"
                | "agent_delegation_completed";
            nodeHash: string;
            nodeId: string;
            outcome: string
            | null;
            parentNodeId: string | null;
            prevHash: string;
            signature: string;
            startTs: number;
            taskDescription: string;
        }[];
    }
    Index
    createdTs: number
    dagHash: string
    dagId: string
    dagSignature: string
    fleetId: string
    nodes: {
        calleeAgentId: string;
        callerAgentId: string;
        contextHash: string;
        dagId: string;
        endTs: number | null;
        eventType:
            | "agent_handoff_sent"
            | "agent_handoff_received"
            | "agent_delegation_started"
            | "agent_delegation_completed";
        nodeHash: string;
        nodeId: string;
        outcome: string
        | null;
        parentNodeId: string | null;
        prevHash: string;
        signature: string;
        startTs: number;
        taskDescription: string;
    }[]