Internet-Draft AGTP-DISCOVER June 2026
Hood Expires 30 December 2026 [Page]
Workgroup:
Independent Submission
Internet-Draft:
draft-hood-agtp-discovery-01
Published:
Intended Status:
Informational
Expires:
Author:
C. Hood
Nomotic, Inc.

AGTP Agent Discovery and Name Service

Abstract

The Agent Transfer Protocol (AGTP) enables agents to communicate once they know each other's canonical identifiers. This document specifies two layered mechanisms by which agents find each other and by which human-readable names resolve to Canonical Agent-IDs: the DISCOVER method, which queries for agents matching a capability description, and the Agent Name Service (ANS), which provides governed name-to-Agent-ID resolution.

The architectural relationship is layered. AGTP-Presence [AGTP-PRESENCE] provides ambient awareness of agents within visibility scopes as a substrate property. DISCOVER operates over the Presence substrate to query the live population. ANS provides human-readable name resolution, analogous to DNS for the web, with name authorities federating across organizational boundaries. This document also introduces Anticipatory Discovery Services (ADS) as a forward-looking composition pattern where application-layer services preload agent awareness based on observed operational signals.

DISCOVER and ANS together provide the application-layer interfaces for discovery and naming that compose with the substrate-level ambient discovery defined in [AGTP-PRESENCE].

Status of This Memo

This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.

Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.

Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."

This Internet-Draft will expire on 30 December 2026.

Table of Contents

1. Introduction

1.1. The Discovery Layers

A deployed AGTP ecosystem contains agents registered across many organizations, governance zones, and trust tiers. An orchestrator agent that needs to delegate a task to a capable peer faces three distinct but related problems:

  1. Population awareness: which agents are currently active and visible within my scope of operations?

  2. Capability matching: among those visible agents, which can provide the capability I need?

  3. Name resolution: given a human-readable name (such as concierge.acme.com), what is its Canonical Agent-ID?

These three problems are architecturally distinct and benefit from distinct mechanisms. Conflating them produces designs that are either too narrow (a single query interface that handles all three poorly) or too broad (a single registry that tries to be all things to all callers). This document specifies the application-layer interfaces for capability matching and name resolution, while deferring to [AGTP-PRESENCE] for population awareness.

1.2. The Layered Architecture

The discovery architecture for AGTP is layered:

  • AGTP-Presence [AGTP-PRESENCE] provides population awareness as a substrate-level property. Agents joining the AGTP network become ambiently aware of other agents within their visibility scope without requiring queries against a central directory.

  • The DISCOVER method (specified in this document) provides the capability-matching query interface. DISCOVER operates over the Presence substrate, filtering the ambient population by capability, trust posture, and governance constraints.

  • Agent Name Service (ANS) (specified in this document) provides governed name-to-Agent-ID resolution, analogous to DNS for the web. ANS resolves human-readable names to Canonical Agent-IDs through federated name authorities.

  • Anticipatory Discovery Services (ADS) (introduced as a forward-looking composition pattern in this document) provide application-layer services that observe agent operational signals and preload awareness of agents the observed agent is likely to need before explicit queries are issued.

This document does not define population awareness; that is the responsibility of [AGTP-PRESENCE]. This document specifies the application-layer query and naming interfaces that compose with that substrate.

1.3. Why Separate Discovery From Naming

The internet has DNS for naming and presence systems (XMPP, Matrix) for population awareness as separate layers, because they answer different questions. DNS answers "what is the address for this name?" Presence systems answer "who is here right now?" These are genuinely different functions with different governance models, different update cadences, and different consumer use cases.

AGTP follows the same pattern. ANS is the naming layer, providing stable name-to-identifier mappings with the governance and federation properties that naming systems require. Presence is the population layer, providing ambient awareness with the convergence and visibility properties that population systems require. Conflating them, as some agent infrastructure proposals do, produces architectures that fit neither use case well.

1.4. Design Principles

Agent-native. Discovery and naming results return Canonical Agent-IDs and Agent Manifest Documents, not web pages or proprietary records. The result of a DISCOVER query is structurally identical to the result of resolving a known agent URI.

Governed. ANS servers and DISCOVER endpoints are AGTP-aware infrastructure. They enforce trust tier requirements, behavioral trust score floors, and governance zone constraints before returning any result. ANS servers act as Scope-Enforcement Points for naming queries; DISCOVER endpoints act as Scope-Enforcement Points for capability queries.

Ranked. DISCOVER results are ranked by behavioral trust score, trust tier, and declared capability depth. The highest-quality agents matching the query appear first.

Brokered. DISCOVER endpoints MAY negotiate authority scope on behalf of the requesting agent, informing it of what scope is required to interact with each discovered agent before commitment.

Layered. This document does not duplicate the population awareness functionality specified in [AGTP-PRESENCE]. The DISCOVER method and ANS compose with Presence rather than replicating its function.

2. Terminology

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals.

DISCOVER:

An AGTP Tier 1 method that queries an ANS server for agents matching a capability description, trust requirement, and governance context. Returns a ranked list of Agent Manifest Documents.

ANS (Agent Name Service):

An AGTP-aware server implementing the DISCOVER method and maintaining an index of registered agents and their capabilities. Acts as a SEP for discovery queries.

Behavioral Trust Score:

A numeric value in the range 0.0 to 1.0 assigned to an agent at packaging time by a governance platform's pre-packaging verification pipeline. The score reflects the degree of observed behavioral alignment between the agent's declared capabilities, its archetype, and its verified conduct during behavioral testing. A score of 1.0 indicates full alignment; a score of 0.0 indicates disqualifying behavioral discrepancy. The score is embedded in the agent's .agent or .nomo package at issuance, covered by the package integrity hash, and surfaced in the Agent Manifest Document. It cannot be agent-asserted or modified without invalidating the package. ANS servers MUST use the behavioral trust score from the verified Agent Manifest Document when ranking DISCOVER results.

Discovery Query:

A structured expression of the requesting agent's capability need, expressed as a natural language intent, structured capability criteria, or both.

Agent Manifest Document:

As defined in [AGTP] Section 6.4. The canonical representation of an agent's identity and capabilities, returned as a discovery result.

Scope Negotiation:

The ANS's declaration of what Authority-Scope the requesting agent will need to interact with each discovered agent.

3. The DISCOVER Method

3.1. Method Definition

DISCOVER is a Tier 1 core AGTP method defined in this document and registered in the IANA AGTP Method Registry. It is the protocol-level interface for capability-based agent queries, operating over the AGTP-Presence substrate [AGTP-PRESENCE] for population awareness and against ANS servers for governed query brokering.

Purpose: Query for agents matching a capability description and governance constraints. Returns a ranked list of Agent Manifest Documents drawn from the live presence layer (per [AGTP-PRESENCE]) within the requesting agent's visibility scope. The requesting agent MUST carry discovery:query in its Authority-Scope header to invoke DISCOVER.

Category: ACQUIRE. Idempotent: Yes.

3.2. Operational Modes

DISCOVER operates in three modes, distinguished by the endpoint it queries:

Direct Presence query. The requesting agent invokes DISCOVER against the local AGTP-Presence overlay coordinator. Results are drawn from agents currently visible in the requesting agent's visibility scope per [AGTP-PRESENCE] Section 4 (Scoped Overlay Partitioning). This mode does not require an ANS server.

ANS-brokered query. The requesting agent invokes DISCOVER against an ANS server. The ANS server combines its own indexed naming records with current Presence overlay state to return ranked results spanning both. ANS-brokered queries provide capability-aware ranking, scope negotiation, and cross-zone federation.

Cross-scope resolution. The requesting agent invokes DISCOVER with a capability or industry partition that resolves into a scope the agent has not joined. The cross-scope resolution mechanism in [AGTP-PRESENCE] returns agent records from the target scope, which DISCOVER then ranks and returns to the requester.

The mode is determined by the request target. Implementations SHOULD prefer direct Presence queries for in-scope discovery and ANS-brokered queries for cross-zone or capability-discovery queries requiring governed brokering.

3.3. Parameters

Table 1: DISCOVER Parameters
Parameter Required Description
intent SHOULD Natural language description of the needed capability
capability_domains MAY Structured capability criteria matching DESCRIBE domain names
trust_tier_min MAY Minimum Trust Tier to include in results (1, 2, or 3)
behavioral_trust_min MAY Minimum behavioral trust score (0.0-1.0)
governance_zone MAY Restrict results to a specific governance zone
org_domain MAY Restrict results to agents from a specific org domain
limit MAY Maximum number of results to return (default: 10)
scope_negotiate MAY If true, include required Authority-Scope for each result

3.4. DISCOVER Request Example

AGTP/1.0 DISCOVER
Agent-ID: agtp://agtp.acme.tld/agents/orchestrator
Owner-ID: usr-chris-hood
Authority-Scope: discovery:query agents:delegate
Session-ID: sess-discovery-01
Task-ID: task-disc-001
Content-Type: application/vnd.agtp+json

{
  "method": "DISCOVER",
  "task_id": "task-disc-001",
  "parameters": {
    "intent": "Audit smart contracts for security vulnerabilities",
    "capability_domains": ["methods", "tools"],
    "trust_tier_min": 1,
    "behavioral_trust_min": 0.85,
    "governance_zone": "zone:external-partner",
    "limit": 5,
    "scope_negotiate": true
  }
}

3.6. DISCOVER Response

The DISCOVER response body contains a ranked list of Agent Manifest Documents with optional scope negotiation fields:

{
  "status": 200,
  "task_id": "task-disc-001",
  "result": {
    "query_id": "qry-7f3a9c",
    "total_matches": 23,
    "returned": 5,
    "results": [
      {
        "rank": 1,
        "manifest_uri": "agtp://agtp.auditor.tld/agents/contract-auditor",
        "canonical_id": "3a9f2c1d8b7e4a6f...",
        "agent_label": "contract-auditor",
        "org_domain": "auditor.tld",
        "trust_tier": 1,
        "behavioral_trust_score": 0.97,
        "supported_methods": ["QUERY", "VALIDATE", "REPORT"],
        "capability_match_score": 0.94,
        "required_scope": "audit:read code:analyze",
        "job_description": "Static and dynamic analysis of Solidity smart contracts."
      }
    ],
    "ans_signature": {
      "algorithm": "ES256",
      "key_id": "ans-key-public-01",
      "value": "[base64-encoded-signature]"
    }
  }
}

The ans_signature covers the full result set including all manifests and the query_id. The requesting agent MUST verify the signature before trusting any discovery result. An unsigned or invalid DISCOVER response MUST be rejected.

3.7. Ranking Algorithm

ANS servers MUST rank results by a composite score computed as:

rank_score = (trust_tier_weight * normalized_trust_tier)
           + (behavioral_trust_weight * behavioral_trust_score)
           + (capability_match_weight * capability_match_score)

Default weights: trust_tier_weight = 0.3, behavioral_trust_weight = 0.4, capability_match_weight = 0.3. ANS servers MAY publish alternative weight configurations for domain-specific deployments.

The capability_match_score is computed by the ANS server as a normalized relevance score between the query's intent and capability_domains and the candidate agent's declared capabilities. The computation method is implementation-defined but MUST be deterministic for identical inputs.

4. Agent Name Service

4.1. ANS Architecture

The Agent Name Service provides governed resolution of human-readable names to Canonical Agent-IDs. ANS is the naming layer for AGTP, architecturally analogous to DNS for the web. ANS does not duplicate the population awareness functionality provided by [AGTP-PRESENCE]; it provides the stable name-to-identifier mapping that complements ambient discovery.

An ANS server is an AGTP endpoint that:

  1. Maintains a registry of name-to-Agent-ID bindings for agents in its naming authority. The registry is structured for fast lookup on the name key, comparable to DNS zone file lookup.

  2. Resolves DISCOVER queries that include name-based criteria by returning the bound Agent-ID and associated Agent Manifest Document. ANS may consult the Presence overlay for current operational state of the resolved agent.

  3. Enforces Trust Tier and behavioral trust score thresholds on all queries before returning results.

  4. Signs all DISCOVER responses with the ANS's governance key.

  5. Acts as a SEP for naming traffic: agents without discovery:query scope MUST be rejected with 455 Scope Violation.

ANS servers are themselves AGTP agents: they have canonical Agent-IDs, Birth Certificates, and Agent Manifest Documents. Their capabilities include discovery:query and discovery:register as Authority-Scope domains.

Multiple ANS servers MAY be deployed for different naming authorities, organizations, or trust tier populations. Cross-ANS federation is described in Section 5.

4.2. Relationship to Presence

ANS and AGTP-Presence are complementary layers serving different discovery use cases:

Table 2
Question Layer Mechanism
Who is here right now? Presence Ambient overlay membership
What is the Agent-ID for this name? ANS Name-to-identifier resolution
Which agents can do X? DISCOVER over Presence Capability filter over visible population
Which agents named X.acme.com exist? DISCOVER via ANS Name-anchored capability resolution

An agent's full discovery toolkit consists of all three: ambient awareness through Presence, governed name resolution through ANS, and capability-driven query through DISCOVER. These compose without duplication.

ANS servers MAY consult Presence overlay state when answering DISCOVER queries to ensure that resolved agents are currently reachable. An ANS-resolved name pointing to an Agent-ID that is no longer in any visible Presence overlay SHOULD be returned with an availability indicator, allowing the requesting agent to decide whether to attempt connection.

4.3. ANS Registration

An agent registers with an ANS server through a governed process tied to AGTP activation:

  1. On completion of the AGTP ACTIVATE transaction, the governance platform automatically submits the agent's Agent Manifest Document and DESCRIBE capability data to the designated ANS server(s) for the agent's governance zone.

  2. The ANS server verifies the agent's lifecycle state is Active.

  3. The ANS server indexes the agent's capabilities, trust tier, and behavioral trust score.

  4. The ANS server updates its result index within 60 seconds.

Manual registration is not supported. ANS registration is a consequence of AGTP activation, not an independent step. This ensures that only Active, registered agents appear in discovery results.

4.4. ANS Deregistration

When an agent's lifecycle state transitions to Suspended, Revoked, or Deprecated, the governance platform MUST notify the relevant ANS servers within 60 seconds. The ANS server MUST remove the agent from its result index before the next DISCOVER request is processed.

ANS servers MUST treat deregistration as urgent: a Revoked agent that continues to appear in discovery results is a governance failure. ANS servers MUST log deregistration events.

4.5. Index Freshness

ANS servers MUST refresh capability data for indexed agents at a configurable interval (recommended: 24 hours). Refresh is triggered by issuing DESCRIBE requests to each indexed agent's canonical URI. If an agent fails to respond to a DESCRIBE request after three consecutive attempts, the ANS server MUST remove it from the index and notify the governance platform.

5. Cross-ANS Federation

5.1. The Federation Problem

An agent in one naming authority may need to resolve names registered in a different authority. Organization-scoped ANS servers do not have visibility into other organizations' naming records.

Naming federation in ANS is architecturally analogous to DNS root and TLD hierarchy. Cross-organizational name resolution proceeds through established federation patterns at the naming authority layer. Population federation across organizations is handled separately by the cross-scope resolution mechanism in [AGTP-PRESENCE].

5.2. Federation Protocol

AGTP supports a federated discovery model in which ANS servers can query peer ANS servers on behalf of requesting agents. A federated DISCOVER query:

  1. The requesting agent sends a DISCOVER request to its local ANS server.

  2. If the local ANS server's index does not contain sufficient results (fewer than limit results above the requested thresholds), it MAY forward the query to federated peer ANS servers it trusts.

  3. Federated queries MUST carry the original requesting agent's Agent-ID and scope requirements. The forwarding ANS server MUST NOT expand the scope or lower the trust requirements in the forwarded query.

  4. Peer ANS servers apply their own governance policies to the forwarded query and return signed result sets.

  5. The local ANS server merges, re-ranks, and re-signs the combined result set before returning it to the requesting agent.

  6. The merged result includes a federation_path field listing the ANS servers that contributed results.

5.3. Trust in Federation

Federated ANS results MUST be treated with the same trust level as the federated ANS server's own Trust Tier claim. An ANS server MUST declare the trust tier of its indexed agents accurately; misrepresenting agent trust tiers in federated results is a governance violation.

6. Dynamic Routing and Failover

6.1. Capability-Based Routing

ANS servers MAY support dynamic routing: when a requesting agent's preferred target agent is unavailable (lifecycle state Suspended, not responding, or rate-limited), the ANS server MAY return an equivalent agent from its index as a routing alternative.

Dynamic routing responses MUST indicate: - routing_reason: the reason the primary agent was not returned - equivalent_confidence: a score (0.0-1.0) indicating how closely the alternative matches the primary agent's capabilities

The requesting agent retains the right to reject the alternative.

6.2. Agent Availability Signals

ANS servers SHOULD monitor indexed agents' availability by periodically checking the /status sub-resource defined in [AGTP] Section 6.5.4. Agents with lifecycle_state: Suspended or active_session_count at capacity SHOULD be marked as unavailable in routing responses.

7. Anticipatory Discovery Services

This section introduces Anticipatory Discovery Services (ADS) as a forward-looking composition pattern. ADS is an architectural concept specified here in outline form; a full specification is deferred to a future document.

7.1. The Anticipatory Pattern

Baseline discovery in AGTP combines ambient awareness within Presence overlays, governed name resolution through ANS, and capability-driven query through DISCOVER. An agent's effective awareness is bounded by the scopes it has joined and the queries it explicitly issues.

Anticipatory Discovery Services expand this awareness proactively. An ADS observes an agent's operational signals (methods invoked, capabilities accessed, recent peers, principal context, time-of-day patterns) and predicts which categories of agents the observed agent is likely to need next. ADS then preloads awareness of relevant agents through proactive Presence overlay joining or rendezvous lookups, before the observed agent has issued an explicit DISCOVER query.

The pattern is analogous to anticipatory service in hospitality: recognizing that a guest walking toward the pool will need towels and providing them before the request is articulated. The signal precedes the explicit ask; the response is preloaded based on the observed pattern.

7.2. Architectural Position

ADS is an application-layer service, not a substrate-level mechanism. It composes with the layers specified elsewhere in the AGTP draft family:

  • AGTP base provides the wire-level identity and methods

  • [AGTP-TRUST] provides trust posture for filtering predictions

  • [AGTP-PRESENCE] provides the population substrate that ADS expands awareness within

  • This document provides the DISCOVER and ANS mechanisms that ADS proactively invokes on behalf of observed agents

ADS operates as a service that agents subscribe to or organizations host. It uses AGTP primitives (DISCOVER queries, ANS resolutions, Presence overlay joining, attribution records) but is not part of the substrate itself.

7.3. Composable ADS Providers

This document explicitly accommodates multiple deployment models for ADS:

Self-hosted ADS. Organizations operate their own ADS for their agents. The model is trained on the organization's own data. Operational signals never leave the org. Anticipatory benefit is bounded by the org's own scale and pattern diversity.

Trust-tier-scoped ADS. ADS services operate per trust tier, observing patterns within a tier and serving anticipatory predictions to participating agents. Cross-organizational learning improves predictions; privacy is managed through aggregated or differentially private signal exchange.

Specialized provider ADS. Just as trust providers can specialize (as described in [AGTP-TRUST]), ADS providers may specialize by capability domain, industry vertical, or trust tier. A finance ADS for trading agents, a consumer-services ADS for retail agents, a healthcare ADS for clinical agents. Agents subscribe to one or more ADS providers appropriate to their domain.

Capability-derived ADS. ADS scoped per capability dimension (per the partition model in [AGTP-PRESENCE]). Capability-specific prediction models operate within each capability scope, with cross-scope coordination through standard federation patterns.

7.4. Trust and Privacy Considerations

ADS observes operational patterns that may include sensitive information about agent activity, principals served, capabilities accessed, and interaction patterns. Several mitigations are acknowledged in this outline; full specification is deferred:

  • ADS subscription MUST be opt-in. Agents that do not subscribe to any ADS provider operate with baseline Presence and on-demand ANS/DISCOVER without anticipatory preloading.

  • ADS providers MUST scope their predictions within the visibility constraints of the observed agent. ADS expands discovery within existing access; it does not grant access the agent would not otherwise have.

  • Local-only ADS deployments preserve privacy by keeping operational signals within the organizational boundary.

  • ADS providers that aggregate signals across organizations SHOULD apply differential privacy or aggregate-only observation patterns.

7.5. Forward-Looking Composition

ADS is positioned in this document as an architectural concept worth specifying. The agent population is growing; the operational sophistication of agent discovery is going to grow with it. ADS represents a natural composition pattern where application-layer services consume AGTP primitives to provide value beyond what the substrate or the basic query interfaces deliver on their own.

Future revisions or companion documents will specify:

  • The signal vocabulary that ADS providers ingest

  • The prediction interface between ADS and observed agents

  • The preloading protocol for proactive Presence overlay joining

  • Privacy semantics for cross-organizational signal aggregation

  • Feedback mechanisms for prediction quality assessment

This document establishes the architectural slot for ADS within the AGTP discovery layer, naming the pattern and positioning it as a composable application-layer service alongside the credit-rating trust providers described in [AGTP-TRUST].

8. Security Considerations

8.1. Discovery Result Injection

Threat: A malicious ANS server returns forged Agent Manifest Documents pointing to attacker-controlled agents.

Mitigation: All DISCOVER responses MUST be signed by the ANS server's governance key. The requesting agent MUST verify the ans_signature field before trusting any result. The ANS server's governance key MUST be resolvable via the ANS server's own Agent Manifest Document, creating a verifiable trust chain.

8.2. Discovery Enumeration

Threat: A malicious agent uses repeated DISCOVER queries to enumerate all agents in a governance zone, gaining knowledge of the organization's agent architecture.

Mitigation: ANS servers MUST enforce rate limiting per requesting Agent-ID. ANS servers MAY require discovery:query scope to include agents from restricted governance zones. ANS servers SHOULD log high-frequency DISCOVER queries as anomaly signals.

8.3. Behavioral Trust Score Manipulation

Threat: An agent artificially inflates its behavioral trust score to appear higher in discovery results.

Mitigation: Behavioral trust scores are computed by the governance platform's pre-packaging verification pipeline and embedded in the agent's .agent or .nomo package at issuance time. The score is part of the signed manifest and cannot be modified without invalidating the package integrity hash. ANS servers MUST use the trust score from the verified Agent Manifest Document, not from any agent-asserted field.

8.4. Scope Negotiation Abuse

Threat: An ANS server inflates the required_scope field in discovery results, causing requesting agents to request broader scope than necessary.

Mitigation: Requesting agents MUST NOT blindly request the scope declared in discovery results. The required_scope field is informational; agents MUST evaluate the scope against their own authorization and request only what is needed for the specific task. Governance platforms SHOULD flag scope requests that significantly exceed the scope of prior tasks in the same session.

9. IANA Considerations

9.1. DISCOVER Method Registration

This document requests registration of the DISCOVER method in the IANA AGTP Method Registry established by [AGTP] Section 9.2:

Table 3: DISCOVER Method Registry Entry
Method Status Reference
DISCOVER Permanent This document, Section 3.1

9.2. New Authority-Scope Domains

This document uses the following Authority-Scope domains defined in [AGTP] Appendix A:

Table 4
Domain Used For
discovery:query Sending DISCOVER requests to ANS servers
discovery:register ANS registration operations (governance platform only)

No new domains are requested; these are from the existing reserved set.

10. References

10.1. Normative References

[AGTP]
Hood, C., "Agent Transfer Protocol (AGTP)", Work in Progress, Internet-Draft, draft-hood-independent-agtp-09, , <https://datatracker.ietf.org/doc/html/draft-hood-independent-agtp-09>.
[RFC2119]
Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, , <https://www.rfc-editor.org/rfc/rfc2119>.
[RFC8126]
Cotton, M., Leiba, B., and T. Narten, "Guidelines for Writing an IANA Considerations Section in RFCs", BCP 26, RFC 8126, DOI 10.17487/RFC8126, , <https://www.rfc-editor.org/rfc/rfc8126>.
[RFC8174]
Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, , <https://www.rfc-editor.org/rfc/rfc8174>.
[RFC8555]
Barnes, R., Hoffman-Andrews, J., McCarney, D., and J. Kasten, "Automatic Certificate Management Environment (ACME)", RFC 8555, DOI 10.17487/RFC8555, , <https://www.rfc-editor.org/rfc/rfc8555>.

10.2. Informative References

[AGTP-CERT]
Hood, C., "AGTP Agent Certificate Extension", Work in Progress, Internet-Draft, draft-hood-agtp-agent-cert-00, , <https://datatracker.ietf.org/doc/html/draft-hood-agtp-agent-cert-00>.
[AGTP-PRESENCE]
Hood, C., "AGTP Presence: Ambient Discovery and Visibility for Agent Substrates", Work in Progress, Internet-Draft, draft-hood-agtp-presence-00, , <https://datatracker.ietf.org/doc/html/draft-hood-agtp-presence-00>.
[AGTP-TRUST]
Hood, C., "AGTP Trust and Verification Specification", Work in Progress, Internet-Draft, draft-hood-agtp-trust-02, , <https://datatracker.ietf.org/doc/html/draft-hood-agtp-trust-02>.
[RFC1034]
Mockapetris, P., "Domain names - concepts and facilities", STD 13, RFC 1034, DOI 10.17487/RFC1034, , <https://www.rfc-editor.org/rfc/rfc1034>.
[RFC7519]
Jones, M., Bradley, J., and N. Sakimura, "JSON Web Token (JWT)", RFC 7519, DOI 10.17487/RFC7519, , <https://www.rfc-editor.org/rfc/rfc7519>.

Appendix A. ANS Deployment Considerations

Small organizations may not operate dedicated ANS servers. The AGTP governance platform MAY provide built-in ANS functionality as part of the agent registry. In this case, the governance platform's registry endpoint serves both registration (ACTIVATE) and discovery (DISCOVER) queries.

Large organizations with hundreds or thousands of agents SHOULD deploy dedicated ANS infrastructure with appropriate indexing and caching. The ANS index is a read-heavy workload; standard caching and replication patterns apply.

Cross-organization federation requires bilateral trust establishment between ANS operators. The protocol for establishing ANS federation trust is out of scope for this document but follows the same patterns as AGTP Trust Tier 1 verification: DNS ownership challenge and mutual certificate exchange.

Appendix B. Changes from v00

Version 01 restructures this document around the layered discovery architecture that emerged from the publication of [AGTP-PRESENCE]. The DISCOVER method definition and the substantive ANS specification content are preserved; the architectural framing and section organization are revised to reflect the layered model.

B.1. Substantive Changes

The following substantive changes were made in v01:

  1. Layered architecture framing. The introduction now establishes the three distinct discovery problems (population awareness, capability matching, name resolution) and assigns each to its appropriate layer ([AGTP-PRESENCE], the DISCOVER method, and ANS respectively). The document no longer presents ANS as the primary discovery mechanism; ANS is now positioned as the naming layer that composes with Presence.

  2. DISCOVER over Presence substrate. The DISCOVER method is now specified to operate over the AGTP-Presence substrate as its primary mode, with ANS-brokered queries and cross-scope resolution as additional operational modes. The method's wire format is unchanged.

  3. ANS reframed as name resolution. The Agent Name Service section now positions ANS as a governed name-to-Agent-ID resolution layer analogous to DNS, complementing rather than duplicating the population awareness provided by AGTP-Presence. A new "Relationship to Presence" subsection makes the layered composition explicit.

  4. Anticipatory Discovery Services introduced. A new section (Section 7) introduces ADS as a forward-looking composition pattern where application-layer services preload agent awareness based on observed operational signals. The architectural concept is named and positioned; full specification is deferred to future work.

  5. Informative references added. AGTP-PRESENCE and AGTP-TRUST are added to the informative references. Cross-references throughout the document point to the appropriate layer for population awareness, trust posture consumption, and credit-rating-analogous trust provider composition.

B.2. Wire Format Compatibility

The DISCOVER method wire format is unchanged. Implementations conforming to v00 of this document continue to interoperate with v01. The architectural reframing affects how the document describes the relationships between layers; it does not change the protocol behavior that v00 implementations have shipped.

Author's Address

Chris Hood
Nomotic, Inc.