Anchorage API reference
    Preparing search index...

    One automated entry an agent accepts: a principal kind paired with the exact entry paths it may arrive on. Kind alone is too coarse — a schedule-driven agent should not thereby accept webhook-delivered signals.

    interface AgentAutomationRule {
        entryPaths: readonly (
            | "approval.resume"
            | "http.start"
            | "signal.message"
            | "signal.queue"
            | "signal.reactive"
            | "signal.state"
            | "signal.notification"
            | "signal.wake"
            | "notification.dispatch"
            | "schedule.fire"
        )[];
        kind: AutomatedPrincipalKind;
    }
    Index

    Properties

    Properties

    entryPaths: readonly (
        | "approval.resume"
        | "http.start"
        | "signal.message"
        | "signal.queue"
        | "signal.reactive"
        | "signal.state"
        | "signal.notification"
        | "signal.wake"
        | "notification.dispatch"
        | "schedule.fire"
    )[]