Anchorage API reference
    Preparing search index...
    interface StartIdleRunInput {
        agent: Agent;
        entryPath:
            | "approval.resume"
            | "http.start"
            | "signal.message"
            | "signal.queue"
            | "signal.reactive"
            | "signal.state"
            | "signal.notification"
            | "signal.wake"
            | "notification.dispatch"
            | "schedule.fire";
        message?: AgentMessageInput;
        principal: ExecutionPrincipal;
        requestedBy: string;
        resourceId?: string;
        runId: string;
        signal?: AgentSignalInput;
        threadId: string;
    }
    Index

    Properties

    agent: Agent
    entryPath:
        | "approval.resume"
        | "http.start"
        | "signal.message"
        | "signal.queue"
        | "signal.reactive"
        | "signal.state"
        | "signal.notification"
        | "signal.wake"
        | "notification.dispatch"
        | "schedule.fire"
    message?: AgentMessageInput

    WHO is waking the run. Carries the KIND, so a host synthesizing a ThreadScope for the idle run cannot downgrade automation to a human — which would let it past the agent host's role branch without its agent ever declaring the entry.

    requestedBy: string

    Compatibility alias for principal.id.

    resourceId?: string
    runId: string
    signal?: AgentSignalInput
    threadId: string