Execution layer | typed capabilities | machine-readable runtime

Give agents a real execution interface to your site.

AgentDoor turns declarations into a working runtime: discovery files, typed capability routes, sessions, rate limits, optional AI policy publication, and optional audit artifacts.

AgentDoor is the execution layer for agent-readable websites.

What It Is

A production runtime for machine-readable website interaction.

AgentDoor provides explicit discovery endpoints and typed capability execution routes so agents can operate against a stable contract.

It includes session handling, policy-aware access controls, and optional audit outputs for teams that need stronger operational guarantees.

Why It Exists

Most agent interactions with websites are still implicit and brittle.

Problem

No explicit runtime contract

Without machine-readable discovery and typed routes, agent behavior depends on undocumented assumptions.

Failure mode

Fragile automation paths

Scraping and ad hoc integration logic break when interfaces or flows change.

Response

Typed execution surface

AgentDoor publishes stable capability contracts, session flow, and policy hints for reliable machine interaction.

How It Works

Four steps from declaration to executable agent runtime.

1

Declare

Define site metadata and capabilities with clear machine-facing semantics.

2

Publish

Serve discovery endpoints and capability route contracts at well-known paths.

3

Execute

Run typed capability calls with sessions, auth controls, and rate limits.

4

Govern

Apply optional AI policy and produce optional audit artifacts for verification.

Quickstart

Run a minimal execution-layer integration.

Start with the SDK package and register your first coordinated capability surface.

npm install @agentdoorio/sdk @agentdoorio/express

import { AgentDoor } from "@agentdoorio/sdk";

const door = new AgentDoor({
  service: "example-api",
  repo: "github.com/your-org/your-repo"
});

await door.connect();
await door.publishCapabilities();

Contact

For teams that need reliable agent execution against real site capabilities.

AgentDoor is for organizations that want explicit, typed, machine-readable interaction surfaces instead of brittle automation.