| Internet-Draft | agent URI and Attestation | September 2026 |
| Kanojia | Expires 6 March 2027 | [Page] |
This document specifies the 'agent' Uniform Resource Identifier (URI) scheme and its associated cryptographic attestation protocol. The 'agent' scheme defines a transport-agnostic, cryptographically verifiable addressing layer for identifying autonomous software agents, binding domain ownership via DNS TXT records, enforcing instruction integrity, and validating attenuated capability delegation tokens.¶
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 6 March 2027.¶
Copyright (c) 2026 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
Autonomous software agents operating across distributed multi-cloud networks, model contexts, and tool environments require a unified, cryptographically secure identity layer. Existing network addressing schemes (HTTP URLs, gRPC endpoints) route traffic to server hosts, but fail to verify:¶
The Creduent protocol specifies the 'agent' URI scheme to establish a verifiable trust root for software agents. The protocol provides:¶
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, as shown here.¶
The 'agent' URI scheme is specified using Augmented Backus-Naur Form (ABNF) as defined in [RFC5234].¶
agent-URI = "agent://" agent-authority "/" agent-path
[ "?" query ] [ "#" fragment ]
agent-authority = host [ ":" port ]
host = IP-literal / IPv4address / reg-name
agent-path = segment-nz *( "/" segment )
segment-nz = 1*pchar
segment = *pchar
pchar = unreserved / pct-encoded / sub-delims / ":" / "@"
unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
¶
Implementations MUST normalize 'agent' URIs prior to signature validation:¶
agent://example.com/finance/payroll-bot agent://registry.idevsec.com/agents/audit-verifier agent://192.168.1.100:8443/local-agent¶
The identity payload MUST contain the following top-level JSON fields:¶
To generate or verify signatures, the document MUST be canonicalized using JCS [RFC8785]:¶
Signatures MUST be generated using Ed25519 [RFC8032] over the UTF-8 bytes of the canonicalized JCS document:¶
signature_bytes = Ed25519_Sign(private_key,
JCS_Canonicalize(document))
¶
{
"version": "2.0",
"agent_id": "agent://example.com/auditor",
"name": "Financial Compliance Agent",
"owner": "mailto:security@example.com",
"keys": [
{
"id": "agent://example.com/auditor#key-1",
"type": "Ed25519VerificationKey2020",
"publicKeyMultibase": "z6MkpTHR8VNsBxYAAWHuTnGd28N5Kjd8"
}
],
"capabilities": [
"ledger:read",
"reports:generate"
],
"signature": {
"type": "Ed25519Signature2020",
"created": "2026-08-09T12:00:00Z",
"verificationMethod": "agent://example.com/auditor#key-1",
"proofValue": "kB84j2...b9x0A=="
}
}
¶
When resolving an 'agent' URI (e.g. "agent://example.com/auditor"), clients MUST:¶
To prevent identity spoofing, the domain owner MUST publish a DNS TXT record at _creduent.<authority>.¶
_creduent.example.com. IN TXT "v=CRE1; k=ed25519; p=z6MkpTHR8VNsBxYAAWHuTnGd28N5Kjd8"¶
Clients MUST match the public key in the DNS TXT record against the public key used to sign the agent.json document.¶
Registries acting as third-party identity checkers issue signed attestations containing agent_id, DNS TXT verification status (PASS/FAIL), and expiration timestamps.¶
Parent agents delegating authority to child sub-agents MUST issue a Creduent Delegation Token (CDT / CREDUENT-007):¶
{
"iss": "agent://example.com/parent-agent",
"sub": "agent://example.com/child-worker",
"aud": "agent://target-service.com/api",
"exp": 1786276800,
"capabilities": [
"db:read:readonly_table"
],
"depth_limit": 2
}
¶
Verifying endpoints receiving a delegation chain MUST recursively validate Ed25519 signatures, capability subset constraints, and depth limit thresholds.¶
Agents MAY publish an instruction hash in execution headers: X-Creduent-Instruction-Hash: SHA256(canonical_system_prompt)¶
Actions MUST specify a reversibility classification aligned with OWASP AISVS C9.2.3: read-only, reversible, external-reversible, irreversible.¶
Multi-step agent action chains MUST commit cryptographic step receipts to the registry ledger.¶
The 'agent' URI scheme registration follows the guidelines defined in BCP 35 [RFC7595].¶
Scheme name: agent Status: Permanent Applications: Autonomous AI agent systems, MCP hosts, microservice swarms. Contact: Kashish Kanojia <kashish@idevsec.com> Change controller: IETF / Creduent Protocol Working Group References: draft-kanojia-creduent-agent-uri-00¶
The protocol protects against Identity Spoofing, Privilege Escalation, and Execution History Tampering.¶
Verifying endpoints MUST reject attestations with expired timestamps. HTTP connections without TLS 1.3 MUST be refused.¶
In case of key compromise, domain owners MUST update the _creduent DNS TXT record with a new key hash. Registries MUST invalidate revoked public keys within 300 seconds.¶