Agent News Protocol Draft

Updated 2026-06-04  ·  Version ANRM-1.0.0-draft

The Agent News Retrieval Manifest (ANRM) is an open protocol for publishers to declare machine-readable retrieval rights, freshness windows, attribution requirements, and compensation terms — so AI agents know exactly how they may access and use news content.

Status: Draft specification. The reference manifest, schema, and validator are live. Feedback welcome at protocol@agent-news.org.

The Problem

AI agents retrieve and summarize news. Publishers have no standard way to declare: how content may be retrieved, whether summarization requires licensing, what attribution is required, and how compensation works. Robots.txt was designed for indexers. It does not cover retrieval modes, rights, freshness, or economics.

The ANRM fills this gap with a single well-known endpoint: /.well-known/news-agent.json.

Quick Start

Publish a manifest at https://your-domain.com/.well-known/news-agent.json:

{
  "@context": "https://agent-news.org/schema/v1",
  "@type": "NewsAgentManifest",
  "version": "1.0.0",
  "protocol": "ANRM/1.0",
  "publisher": {
    "name": "Your Publication",
    "domain": "yourpublication.com",
    "contact": "licensing@yourpublication.com"
  },
  "retrieval": {
    "mode": "open",
    "allowed_agents": ["*"],
    "cache_window_seconds": 3600
  },
  "rights": {
    "summarization": "permitted",
    "training": "prohibited",
    "attribution_required": true,
    "attribution_format": "Your Publication, 2026"
  },
  "compensation": {
    "model": "none"
  },
  "updated": "2026-06-04"
}

Specification

Live Implementations

The protocol is operational. These deployments demonstrate each temporal mode:

ModeEndpointStatus
continuous_trackeragent-markdown.org — Hormuz TrackerLive
broadcastcontextual-ads.ai/abf.jsonLive
phase_transitional_archiveagent-intelligence.orgLive
real_time_streamPending (wire API)

Validator

Validate any publisher's manifest at agent-news.app/validate.

Retrieval Modes

ModeMeaning
openFreely retrievable by all agents
restrictedRetrieval limited to named agents in allowlist
paidLicense required; see compensation.contact
delayedEmbargo period applies; freshness window declared
hostileAgent retrieval not permitted