@runloop/api-client - v1.18.1
    Preparing search index...

    Interface BrokerMount

    interface BrokerMount {
        axon_id: string;
        type: "broker_mount";
        agent_binary?: string | null;
        launch_args?: string[] | null;
        protocol?: "acp" | "claude_json" | null;
    }
    Index

    Properties

    axon_id: string

    The ID of the axon event stream to mount onto the Devbox.

    type: "broker_mount"
    agent_binary?: string | null

    Binary to launch the agent (e.g., 'opencode'). Used by protocols that launch a subprocess (acp, claude_json).

    launch_args?: string[] | null

    Arguments to pass to the agent command (e.g., ['acp']). Used by protocols that launch a subprocess (acp, claude_json).

    protocol?: "acp" | "claude_json" | null

    The protocol used by the broker to deliver events to the agent.