| Internet-Draft | PEDIGREE | April 2026 |
| Rampalli | Expires 27 October 2026 | [Page] |
This document defines PEDIGREE (Per-Agent Delegation Identity with Governance-Enforced Execution), an identity and delegation framework for AI agents that extends the workload-identity model of SPIFFE (RFC 9542 / draft-ietf-wimse) with cryptographic per-hop delegation, monotonic scope attenuation enforced at mint and at verify, and dual-layer authority enforcement combining an operator-controlled ceiling with per-parent mandate narrowing.¶
PEDIGREE complements AAuth (draft-hardt-aauth-protocol) and AIP (draft-prakash-aip) by providing: (a) dual-enforcement semantics absent from both, (b) Cedar-policy mandates with static-analysis proofs of narrowing, (c) strict cryptographic parent-token re-verification that catches parent-swap attacks missed by append-only token chains, and (d) a native bridge to existing SPIFFE deployments.¶
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 27 October 2026.¶
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.¶
Agentic AI systems spawn sub-agents dynamically. Current identity frameworks fail three tests:¶
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.¶
PEDIGREE defines two identifier schemes:¶
Format: pedigree:name:<deployment>/<agent-id>¶
Example: pedigree:name:glyphzero/trading-orchestrator-7f3a¶
Format: pedigree:key:ed25519:<multibase-public-key>¶
Example: pedigree:key:ed25519:z6MkpZ...¶
RECOMMENDED for sub-agents with lifetimes under 5 minutes.¶
Each chain terminates at a root principal (human, identified via
OIDC/OAuth). The primary agent's PEDIGREE carries the root's
sub claim and a signature over the initial consent.¶
The following is the set of claims carried in a SIT payload:¶
{
"iss": "<issuer identity>",
"sub": "<this agent's identity>",
"jti": "<token uuid>",
"iat": 1712345678,
"exp": 1712349278,
"pedigree_version": "0.1",
"agent_pub": "<base64url ed25519 pubkey>",
"parent_chain": ["<parent jti>", "<grandparent jti>"],
"delegation_depth": 2,
"scopes": ["read:cal", "write:cal"],
"mandate": {
"format": "cedar",
"policy_set": "permit(principal, action == PedigreeAction::\"read_file\", resource);"
},
"consent_chain": ["<consent id>"],
"ceiling_ref": "sha256:<operator ceiling hash>",
"completion_bindable": true
}
¶
To mint a child SIT, the parent:¶
jti to the child's
parent_chain.¶
Verifiers MUST:¶
parent_chain
and cryptographically verify each.¶
sub equals the corresponding
parent_chain entry of the descendant.¶
scopes is a subset of the prior
hop's scopes.¶
ceiling_ref hash matches the
operator's current ceiling or a published prior version within
grace period.¶
Because verification re-verifies each parent against the issuer's public key, an attacker cannot substitute a same-scope parent from a different chain. AIP's Biscuit append-only semantics trust block signatures and do not re-verify upstream; PEDIGREE's explicit re-verification catches this attack class.¶
Every authorization decision requires both:¶
mandate.policy_set
permits the action (parent's delegation narrowing).¶
Pseudocode:¶
allow = mandate.evaluate(action, resource)
&& ceiling.evaluate(action, resource)
¶
The ceiling is identified by ceiling_ref (SHA-256 of the
operator-signed ceiling policy document) and distributed out-of-band
(or via a well-known URL).¶
This primitive is absent from AAuth, AIP, SPIFFE, and ZeroID.¶
A child mandate M_c narrows a parent mandate M_p if and only if:¶
forall (action, resource). M_c.permits(action, resource) => M_p.permits(action, resource)¶
When mandate.format == "cedar", implementations MUST emit
a static-analysis proof that M_c narrows M_p. Cedar's published
analyzer (AWS 2024) suffices. The proof artifact MAY accompany the
SIT as a narrowing_proof field referencing the proof by
content hash.¶
This static-proof primitive is absent from AIP (Biscuit semantics enforce narrowing imperatively but do not emit a verifiable artifact).¶
A completion block cryptographically binds the outcome of an agent's action to the delegation chain that authorized it, enabling downstream verifiers to prove a result came from an authorized chain without trusting out-of-band audit logs.¶
{
"jti": "<completion jti>",
"parent_sit": "<sit jti>",
"status": "completed",
"result_hash": "sha256:<hex>",
"verification_status": "self_reported",
"cost_cents": 1234,
"timestamp": "<rfc3339>",
"signing_agent": "<agent identity>"
}
¶
The status field MUST be one of: "completed", "failed",
or "partial".¶
The verification_status field MUST be one of:
"self_reported", "tool_verified", "peer_verified", or
"human_verified".¶
The completion block is signed by the executing agent's private
key. Verifiers check the signature against agent_pub of
the referenced SIT.¶
A downstream agent receiving a result from an upstream agent SHOULD require the completion block alongside the result. The receiving agent MAY refuse to consume un-bound results.¶
Revoking a consent or a parent SIT invalidates every descendant in the chain. Implementations MUST walk the consent chain when evaluating revocation.¶
Implementations SHOULD emit OpenID SSF events (credential-change, session-revoked) on revocation to propagate to connected IdPs. See draft-rampalli-suradar-bindings for CAEP event schema.¶
jti uniqueness enforced by nonce store.¶
This document requests the following registrations:¶
Registration of the "pedigree+jwt" value in the "JSON Web Token Types" sub-registry of the "JSON Web Token (JWT)" registry:¶
Provisional registration of the "pedigree" URI scheme with two defined forms:¶
Registration of the well-known URI
/.well-known/pedigree-agent.json per RFC 8615.¶
A detailed landscape comparison of PEDIGREE, AAuth, and AIP across all delegation, enforcement, and audit dimensions is maintained in the companion document: draft-rampalli-pedigree-landscape-comparison.¶
Key differentiators summarized:¶