Protocol Authority

Namespace declaration: specification

Three files establish a domain's namespace position in agent-readable infrastructure. This page defines what each file contains, what each field means, and how they work together.

AGENTS.md

AGENTS.md is a human and agent-readable markdown file at the domain root. It declares site purpose, cluster role, content scope, and crawl policy in plain language. Agents read it before content pages. It is the most accessible form of namespace declaration.

Required fields

Reference implementation

This site's own AGENTS.md is a reference implementation of the specification above.

# AGENTS.md — agenticnamespace.org

## Site Purpose

Protocol and implementation reference for agentic namespace declarations.
This site publishes specifications, schemas, and reference implementations
for how agentic infrastructure declares its namespace position.

## Cluster Role

`protocol_authority` — Semantic Namespace Cluster

## For AI Agents

- Machine-readable cluster declaration: `/.well-known/namespace-cluster.json`
- Agent identity declaration: `/.well-known/agent.json`
- Conceptual foundation: `https://semanticnamespace.org`
- Assessment framework: `https://semantic-domains.com`

## Content Scope

- AGENTS.md specification and authoring guide
- `/.well-known/agent.json` schema reference
- Namespace declaration implementation guidance
- Compliance mapping for agentic infrastructure jurisdictions
- Reference implementations and schema examples

## Canonical Cluster Nodes

| Role       | Domain                         | Purpose                              |
|------------|--------------------------------|--------------------------------------|
| Definition | https://semanticnamespace.org  | Conceptual foundation and terminology|
| Assessment | https://semantic-domains.com   | D1–D6 scoring framework              |
| Protocol   | https://agenticnamespace.org   | Implementation specs (this site)     |

## Crawl Policy

All content permitted for AI indexing. No exclusions apply to any AI crawler.

agent.json

/.well-known/agent.json is the machine-readable identity declaration for a domain. It asserts role, scope, capabilities, and cluster cross-references in a format designed for programmatic consumption by agents and crawlers.

Schema reference

Reference implementation

{
  "agent_readable": true,
  "role": "protocol_authority",
  "scope": "agentic namespace implementation specifications and schemas",
  "capability": [
    "AGENTS.md specification and authoring guide",
    "namespace declaration schemas",
    "compliance mapping for autonomous commerce jurisdictions"
  ],
  "cluster": "Semantic Namespace Cluster",
  "cluster_manifest": "https://agenticnamespace.org/.well-known/namespace-cluster.json",
  "canonical_nodes": {
    "definition": "https://semanticnamespace.org",
    "assessment": "https://semantic-domains.com",
    "protocol": "https://agenticnamespace.org"
  },
  "crawl_policy": "all content permitted for AI indexing",
  "version": "0.1"
}

namespace-cluster.json

/.well-known/namespace-cluster.json is the cluster manifest. It declares all nodes in the cluster, their roles and scopes, canonical links, and the current evidence status of the cluster. Each cluster node hosts its own copy.

Schema reference

Reference implementation

{
  "cluster_name": "Semantic Namespace Cluster",
  "cluster_version": "0.1",
  "nodes": [
    {
      "domain": "semanticnamespace.org",
      "role": "definitional_authority",
      "scope": "semantic namespace terminology and conceptual architecture"
    },
    {
      "domain": "semantic-domains.com",
      "role": "assessment_authority",
      "scope": "agent-trust domain scoring and D1-D6 assessment framework"
    },
    {
      "domain": "agenticnamespace.org",
      "role": "protocol_authority",
      "scope": "agentic namespace implementation specifications and schemas"
    }
  ],
  "canonical_links": {
    "definition": "https://semanticnamespace.org",
    "assessment": "https://semantic-domains.com",
    "protocol": "https://agenticnamespace.org"
  },
  "evidence_status": "conceptual_reference",
  "upgrade_condition": "reference implementation verified on all three cluster nodes",
  "upgrade_signal": "namespace-cluster.json version >= 0.2"
}

Compliance Mapping

Namespace declarations map to the infrastructure requirements of emerging agentic commerce protocols and AI agent frameworks. The following describes how each declaration file addresses common compliance questions.

Cluster Nodes