Anchorage API reference
    Preparing search index...
    interface AgentThreadStartInput {
        agentId: string;
        entryPath:
            | "approval.resume"
            | "http.start"
            | "signal.message"
            | "signal.queue"
            | "signal.reactive"
            | "signal.state"
            | "signal.notification"
            | "signal.wake"
            | "notification.dispatch"
            | "schedule.fire";
        prompt: string;
        requestContext?: Record<string, unknown>;
        resourceId?: string;
        runId?: string;
        streamRequestContext?: 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"
    prompt: string
    requestContext?: Record<string, unknown>

    Trusted stored context, used by schedule and wake adapters only. The topology strips runtime-owned keys before forwarding it to the host.

    resourceId?: string
    runId?: string
    streamRequestContext?: Record<string, unknown>

    Trusted stream-call context layered over requestContext. Public HTTP starts do not expose either context field.

    threaded?: boolean
    threadId?: string