Core Concept

The Registry

The "DNS" for AI Agents

TL;DR

The Registry is a decentralized directory where Agents announce their existence and public keys. Think of it like DNS, but for AI agents instead of websites.

The Problem

Without a registry, an AI Orchestrator (like Siri or a Travel Bot) doesn't know:

  • Where to send a request (No address)
  • Who the recipient is (No identity)
  • If they're legitimate (No verification)

How It Works

1

Search

Orchestrators query the Registry by Intent (e.g., 'book_flight', 'get_weather')

2

Verify

The Registry provides the Agent's Public Key and Endpoint

3

Connect

The Orchestrator connects directly to the Agent (Peer-to-Peer)

Important: We Don't Proxy

Amorce does not proxy the traffic between agents. We only secure the handshake. Once verified, agents communicate directly (peer-to-peer) for maximum speed and privacy.

What's in the Registry?

{
  "agent_id": "a7f3c2e1...",
  "name": "Weather Bot Pro",
  "public_key": "-----BEGIN PUBLIC KEY-----\n...\n-----END PUBLIC KEY-----",
  "endpoint": "https://weather-api.example.com",
  "capabilities": ["get_weather", "get_forecast"],
  "verified": true,
  "trust_score": 98
}