Anchorage API reference
    Preparing search index...
    interface ThreadAgentStartInput {
        agentId: string;
        entryPath:
            | "approval.resume"
            | "http.start"
            | "signal.message"
            | "signal.queue"
            | "signal.reactive"
            | "signal.state"
            | "signal.notification"
            | "signal.wake"
            | "notification.dispatch"
            | "schedule.fire";
        messages?: MessageListInput;
        prompt?: string;
        resourceId: string;
        runId: string;
        safeContext?: Record<string, unknown>;
        threaded?: boolean;
        threadId: string;
    }
    Index

    Properties

    agentId: string
    entryPath:
        | "approval.resume"
        | "http.start"
        | "signal.message"
        | "signal.queue"
        | "signal.reactive"
        | "signal.state"
        | "signal.notification"
        | "signal.wake"
        | "notification.dispatch"
        | "schedule.fire"
    messages?: MessageListInput
    prompt?: string
    resourceId: string
    runId: string
    safeContext?: Record<string, unknown>

    Non-reserved context accepted from trusted internal topology calls only. It is never part of the public agent-start request contract.

    threaded?: boolean
    threadId: string