<?xml version="1.0" encoding="UTF-8"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude"
     version="3"
     ipr="trust200902"
     docName="draft-bu-agentproto-security-principal-binding-02"
     category="info"
     submissionType="IETF"
     consensus="false">
  <front>
    <title abbrev="Agent Principal Binding">Security Principal and Verifier Binding for Agent Communication Protocols</title>
    <seriesInfo name="Internet-Draft" value="draft-bu-agentproto-security-principal-binding-02"/>
    <author fullname="Songbo Bu" initials="S." surname="Bu">
      <organization/>
      <address>
        <email>bluedognull@gmail.com</email>
      </address>
    </author>
    <date year="2026" month="July" day="6"/>
    <area>Applications and Real-Time</area>
    <workgroup>Agent Communication Protocols</workgroup>
    <keyword>agent communication</keyword>
    <keyword>delegation</keyword>
    <keyword>verifier binding</keyword>
    <keyword>security principal</keyword>
    <abstract>
      <t>Agent communication protocols often carry claims about user authority,
      agent instance identity, tool or external-resource identity, delegation
      state, session continuity, and action evidence.  These claims have
      different verifiers, freshness requirements, failure modes, and security
      consequences.  If they are collapsed into a single token, identity label,
      session identifier, or audit record, protocol text can accidentally imply
      more authority or accountability than the receiver can actually verify.</t>

      <t>This document defines a verifier-facing model for separating those
      claims.  It provides a reusable matrix format that protocol authors can
      use to state, for each security-relevant claim, which field carries it,
      which party verifies it, what binding or freshness rule applies, what
      failure behavior is required when the claim is absent, stale,
      inconsistent, or not verifiable, and what constrained result an
      application may consume after successful verification.  It also separates
      specification status, implementation status, and evidence type so that
      reviewers can distinguish current protocol text, implementation evidence,
      inherited mechanisms, and architectural assumptions.  The document is
      protocol-neutral.  It is intended to help compare candidate agent
      communication drafts and to provide security-considerations and
      requirements text for agent session and delegation binding.</t>
    </abstract>
  </front>

  <middle>
    <section anchor="introduction" numbered="true">
      <name>Introduction</name>
      <t>Agent protocols are being proposed for long-lived communication among
      agents, tools, gateways, services, and human or organizational principals.
      These protocols need to express several different kinds of security
      meaning:</t>
      <ul>
        <li>who authorized the task;</li>
        <li>which live agent or runtime instance is acting;</li>
        <li>which tool, gateway, or external resource is being invoked;</li>
        <li>what authority has been delegated, by whom, and under what scope;</li>
        <li>what is bound to the current session or channel; and</li>
        <li>what evidence can later be verified about an action.</li>
      </ul>

      <t>These are not the same claim.  A valid organizational identifier does
      not by itself prove a live agent instance.  A session identifier does not
      by itself prove delegated authority.  A transparency receipt does not by
      itself prove that the action was authorized.  A tool invocation record
      does not by itself prove that the tool was within delegated scope.</t>

      <t>The purpose of this document is to make these boundaries reviewable.
      It does not define a new agent protocol, token format, audit log,
      transparency service, or authorization system.  Instead, it defines a
      claim-to-verifier discipline that other drafts can map to.</t>
    </section>

    <section anchor="conventions" numbered="true">
      <name>Conventions and Definitions</name>
      <t>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
      <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when,
      they appear in all capitals, as shown here.</t>

      <t>This document is currently intended as Informational guidance.
      Requirement language is used to make security expectations reviewable by
      protocol authors; it does not by itself define a wire protocol.</t>
    </section>

    <section anchor="terminology" numbered="true">
      <name>Terminology</name>
      <dl newline="true">
        <dt>Agent</dt>
        <dd><t>An automated software component that initiates, receives,
        mediates, or performs actions on behalf of a human, organization,
        account, workload, or policy authority.</t></dd>

        <dt>Security principal</dt>
        <dd><t>An entity whose authority, identity, state, or responsibility is
        relevant to a security decision.</t></dd>

        <dt>Claim</dt>
        <dd><t>A security-relevant statement that a protocol participant,
        credential, token, receipt, attestation, record, or external system
        asserts or carries.</t></dd>

        <dt>Carrier</dt>
        <dd><t>The protocol field, credential, record, header, receipt,
        attestation, envelope, or external reference that carries a claim.</t></dd>

        <dt>Verifier</dt>
        <dd><t>The party that evaluates a claim for a particular security
        decision.</t></dd>

        <dt>Binding</dt>
        <dd><t>The relationship between a claim and the specific state to which
        it applies, such as a session transcript, task digest, delegation chain,
        subject identifier, tool invocation, or evidence record.</t></dd>

        <dt>Freshness</dt>
        <dd><t>The replay, expiration, revocation, sequence, rotation,
        challenge, nonce, or recency rule used to determine whether a claim can
        still be relied upon.</t></dd>

        <dt>Failure behavior</dt>
        <dd><t>The required behavior when a claim is missing, stale,
        inconsistent, not verifiable, or out of scope for the decision being
        made.</t></dd>

        <dt>Accepted result</dt>
        <dd><t>The constrained verifier output that an application, gateway,
        policy engine, or relying party is allowed to consume after successful
        verification.  An accepted result is not the raw peer-provided token,
        receipt, claim, or attestation.  It is the verifier-produced result,
        including its scope and limitations.</t></dd>

        <dt>Layer label</dt>
        <dd><t>A descriptive label for where a verifier decision is made or
        where a claim is carried.  The label can use ordinary protocol-layer
        terminology, such as application, transport, or network, or an
        agent-native architectural taxonomy, but the vocabulary needs to be
        defined by the draft that uses it.</t></dd>

        <dt>Evidence reference</dt>
        <dd><t>A stable reference to a public test vector, example, test case,
        implementation note, interop record, issue, pull request, or other
        reviewable artifact that supports a mapping row.</t></dd>
      </dl>
    </section>

    <section anchor="problem-statement" numbered="true">
      <name>Problem Statement</name>
      <t>Agent communication drafts can become difficult to review when a single
      architectural label is used to imply several security properties.  Common
      examples include:</t>
      <ul>
        <li>treating an account, organization, or credential identifier as
        evidence that a particular live agent instance is acting;</li>
        <li>treating session continuity as evidence of delegated authority;</li>
        <li>treating tool invocation evidence as evidence that the tool
        invocation was authorized;</li>
        <li>treating an audit record or transparency receipt as proof of
        correctness, completeness, or authorization;</li>
        <li>treating a governance or reputation mechanism as a current protocol
        guarantee when the current draft does not specify the verifier,
        evidence, or failure path; and</li>
        <li>treating post-execution attribution as if it were pre-execution
        authorization, or treating pre-execution authorization as if it proved
        what actually happened after execution; and</li>
        <li>treating inherited mechanisms from other drafts as if they were
        fully specified by the draft under review.</li>
      </ul>

      <t>These ambiguities are not merely editorial.  They affect
      interoperability and security review.  Two implementations can agree on a
      field name while making different decisions about who verifies the field,
      what state the field is bound to, and what happens when the field cannot
      be validated.</t>

      <t>This document addresses that problem by giving protocol authors a
      common way to map each security-relevant claim to a carrier, verifier,
      verification rule, binding, freshness rule, accepted result, layer, and
      failure behavior.</t>
    </section>

    <section anchor="goals" numbered="true">
      <name>Goals</name>
      <ul>
        <li>Separate security principals and security claims that are often
        conflated in agent communication protocols.</li>
        <li>Define a reusable verifier matrix for agent protocol drafts.</li>
        <li>Make delegation, session binding, freshness, replay, revocation, and
        failure behavior mechanically reviewable.</li>
        <li>Define accepted results so that applications consume
        verifier-produced decisions rather than raw peer-provided claims.</li>
        <li>Encourage row-specific evidence references and negative tests for
        claims that are asserted as implemented or specified.</li>
        <li>Support comparison among candidate protocols without requiring them
        to share the same wire format.</li>
        <li>Provide candidate security-considerations text for agent
        communication work.</li>
        <li>Make explicit which mechanisms are specified by the current draft,
        inherited from another document, planned for future work, or only
        architectural assumptions.</li>
      </ul>
    </section>

    <section anchor="non-goals" numbered="true">
      <name>Non-Goals</name>
      <t>This document does not:</t>
      <ul>
        <li>define a new agent transport protocol;</li>
        <li>define a credential format;</li>
        <li>define a delegation-token format;</li>
        <li>define an audit-record format;</li>
        <li>define a transparency-receipt format;</li>
        <li>require any specific public key, certificate, Verifiable Credential,
        SCITT, WIMSE, OAuth, GNAP, RATS, or vLEI mechanism;</li>
        <li>decide whether any existing draft satisfies the matrix; or</li>
        <li>select a single protocol as the architectural solution for all
        claims.</li>
      </ul>
    </section>

    <section anchor="applicability" numbered="true">
      <name>Applicability and Review Modes</name>
      <t>This document is applicable when an agent communication draft carries,
      depends on, or inherits claims about authority, live instance identity,
      delegated scope, session continuity, tool or resource identity, action
      evidence, freshness, revocation, or verifier output.  A draft does not
      need to define all of these claims to use the matrix; it only needs to
      identify the claims it carries or depends on.</t>

      <t>The matrix can be used at several levels of formality.  A mature draft
      can include a complete verifier matrix in its Security Considerations
      section or appendix.  An early draft can use partial rows to make open
      questions explicit.  A design team can maintain the mapping in a
      companion document, repository, issue, or pull request before importing
      stable text into an Internet-Draft.</t>

      <t>The review mode should match the status claimed by a row.  A row marked
      as specified should contain enough detail for independent implementation.
      A row marked as implemented should identify the implementation boundary
      and evidence type.  A row marked as inherited, planned, partial, none, or
      assumption should not be treated as a current protocol guarantee.</t>
    </section>

    <section anchor="principal-model" numbered="true">
      <name>Security Principal Model</name>
      <t>The following principals commonly appear in agent communication
      designs.</t>
      <dl newline="true">
        <dt>Human or organizational authority</dt>
        <dd><t>The person, organization, role, legal entity, account, or policy
        authority on whose behalf the agent acts.</t></dd>

        <dt>Agent instance</dt>
        <dd><t>The concrete live agent, runtime, workload, or execution
        environment that participates in the protocol exchange.</t></dd>

        <dt>Agent provider or runtime provider</dt>
        <dd><t>The party that supplies, hosts, or controls an agent
        implementation or runtime environment.</t></dd>

        <dt>Tool or external resource</dt>
        <dd><t>A tool, API, service, file, database, payment endpoint, browser,
        physical device, or other resource invoked by an agent.</t></dd>

        <dt>Gateway, broker, or mediator</dt>
        <dd><t>An intermediary that translates, routes, composes, gates, or
        mediates agent interactions.</t></dd>

        <dt>Delegator</dt>
        <dd><t>The party that grants authority to another party or agent.</t></dd>

        <dt>Delegatee</dt>
        <dd><t>The party or agent that receives attenuated authority.</t></dd>

        <dt>Verifier or relying party</dt>
        <dd><t>The party that decides whether a claim is sufficient for a
        specific protocol action.</t></dd>

        <dt>Evidence consumer</dt>
        <dd><t>A party that later reviews, audits, composes, or relies on
        evidence of an action.</t></dd>
      </dl>

      <t>A protocol can use one credential, key, session, or record to carry
      more than one claim, but the draft needs to identify each claim
      separately.  Reusing a carrier does not make the claims equivalent.</t>

      <t>Workload identity documents, such as the WIMSE architecture
      <xref target="I-D.ietf-wimse-arch"/> and workload identity practices
      <xref target="I-D.ietf-wimse-workload-identity-practices"/>, are useful
      examples of why an instance, workload, or execution environment claim
      should be separated from human or organizational authority and from
      delegated task scope.</t>
    </section>

    <section anchor="registry" numbered="true">
      <name>Claim Classes and Initial Claim Registry</name>
      <t>A draft SHOULD identify which of the following claim classes it carries
      or depends on.  The identifiers below are provisional and are intended to
      make early review concrete.  They are not an IANA registry and do not by
      themselves define protocol conformance.</t>
      <dl anchor="claim-registry" newline="true">
        <dt>C-001: Instance identity</dt>
        <dd><t>Which live agent, runtime, workload, endpoint, or process is
        acting now?</t></dd>

        <dt>C-002: Human or organizational authority</dt>
        <dd><t>Who authorized the task, policy, role, or delegation?</t></dd>

        <dt>C-003: Delegated scope</dt>
        <dd><t>What authority has been delegated, by whom, to whom, under what
        scope and attenuation?</t></dd>

        <dt>C-004: Session continuity</dt>
        <dd><t>What state is bound to the current channel, connection,
        long-lived session, or task?</t></dd>

        <dt>C-005: Action evidence</dt>
        <dd><t>What action was requested, attempted, completed, blocked, or
        failed?</t></dd>

        <dt>C-006: Tool or resource identity</dt>
        <dd><t>Which tool or external resource is being invoked or
        affected?</t></dd>

        <dt>C-007: Evidence provenance</dt>
        <dd><t>What evidence, signature, receipt, attestation, log entry, or
        record supports an action or decision?</t></dd>

        <dt>C-008: Freshness or revocation</dt>
        <dd><t>Is the authority, delegation, instance state, tool binding, or
        session state still current?</t></dd>

        <dt>C-009: Failure handling</dt>
        <dd><t>What happens when the verifier cannot validate the claim for the
        requested action?</t></dd>

        <dt>C-010: Composition boundary</dt>
        <dd><t>Which claims are preserved, transformed, or lost when agents,
        gateways, receipts, or tools are composed?</t></dd>

        <dt>C-011: Accepted result</dt>
        <dd><t>What normalized result may the application consume after
        successful verification, and what does that result not authorize?</t></dd>

        <dt>C-012: Authorization and attribution boundary</dt>
        <dd><t>Is the row claiming pre-execution authority, delegated scope,
        post-execution attribution, execution evidence, audit enforcement, or
        relying-party acceptance, and which of those does it not claim?</t></dd>
      </dl>

      <t>The registry is intentionally claim-oriented rather than
      protocol-oriented.  More than one candidate protocol can map to the same
      claim, and a protocol can map to only a subset of the registry.  The
      initial list is expected to change as AGENTPROTO discussion identifies
      additional claim classes or merges overlapping ones.</t>
    </section>

    <section anchor="matrix" numbered="true">
      <name>Verifier Matrix</name>
      <t>For each security-relevant claim, a protocol draft SHOULD provide a
      row with the following fields.</t>
      <dl newline="true">
        <dt>Claim ID</dt>
        <dd><t>The registry identifier for the claim being mapped.</t></dd>

        <dt>Claim</dt>
        <dd><t>The precise security statement being made.</t></dd>

        <dt>Carrier</dt>
        <dd><t>The protocol field, token, credential, record, header, receipt,
        attestation, or out-of-band reference that carries the claim.</t></dd>

        <dt>Verifier</dt>
        <dd><t>The party that validates the claim.</t></dd>

        <dt>Verification rule</dt>
        <dd><t>The check performed by the verifier.</t></dd>

        <dt>Binding</dt>
        <dd><t>The other state to which the claim is bound, such as a session
        identifier, TLS exporter, action digest, delegation chain, subject
        identifier, or tool invocation.</t></dd>

        <dt>Freshness</dt>
        <dd><t>The replay, expiration, revocation, rotation, sequence, or
        recency rule.</t></dd>

        <dt>Failure behavior</dt>
        <dd><t>The required behavior when the claim is missing, stale,
        inconsistent, or not verifiable.</t></dd>

        <dt>Accepted result</dt>
        <dd><t>The constrained output that a verifier returns to the relying
        application when the row succeeds.  It should name the normalized claim
        or decision state, the scope in which it may be used, and any important
        non-claims.  For example, a successful possession check might return
        "holder of enrolled key under current release policy" without returning
        "delegated authority is sufficient" or "human authorization is
        present".</t></dd>

        <dt>Layer</dt>
        <dd><t>The protocol layer or architectural review dimension associated
        with the row.  This field is descriptive.  It does not impose a fixed
        layer taxonomy on every protocol, and it does not require a protocol to
        spread claims across different layers.</t></dd>

        <dt>Implementation status</dt>
        <dd><t>Whether the row is implemented, not implemented, partially
        implemented, or external.</t></dd>

        <dt>Specification status</dt>
        <dd><t>Whether the row is specified in the current draft, planned for a
        later revision, inherited from another document, or an architectural
        assumption.</t></dd>

        <dt>Dependency</dt>
        <dd><t>The draft, standard, service, governance process, transparency
        log, authorization system, attestation system, registry, or operational
        practice on which the row depends, if any.</t></dd>

        <dt>Evidence reference</dt>
        <dd><t>An optional reference to a public test vector, example, test
        case, implementation artifact, interop note, issue, pull request, or
        other stable evidence that makes the row checkable.</t></dd>

        <dt>Evidence type</dt>
        <dd><t>The kind of evidence being referenced, such as source-level,
        unit-level, local-harness, interop, deployment, document, issue,
        pull-request, or other evidence.</t></dd>
      </dl>
    </section>

    <section anchor="review-rules" numbered="true">
      <name>Matrix Review Rules</name>
      <t>The matrix is intended to make review strict enough that a draft cannot
      obtain a security property merely by naming an adjacent mechanism.  The
      following rules apply to a verifier matrix.</t>
      <ol>
        <li>A carrier does not imply a claim unless the claim is explicitly
        stated.</li>
        <li>A claim does not imply a verifier unless the verifier is identified
        for the decision being made.</li>
        <li>A verifier decision is not complete unless the binding, freshness
        rule, and failure behavior are stated.  If another component consumes
        the successful decision, the accepted result also needs to be stated.</li>
        <li>An inherited mechanism is not a current protocol guarantee unless
        the dependency and failure behavior are stated.</li>
        <li>A receipt, log entry, or audit record proves only the statement it
        records; it does not automatically prove authorization, completeness, or
        correct execution.</li>
        <li>A row that is marked as planned, inherited, partial, or assumption
        MUST NOT be used as evidence that the current draft fully specifies the
        corresponding security property.</li>
        <li>A layer label is not itself a security property.  It helps reviewers
        locate where a claim is carried or verified, but the security property
        still depends on the carrier, verifier, binding, freshness rule, and
        failure behavior.</li>
        <li>A raw token, credential, attestation, receipt, or protocol field is
        not by itself an accepted result.  If an application consumes a
        successful verifier output, the draft SHOULD state the normalized
        accepted result and the scope of reliance.</li>
        <li>An evidence reference is not required for every early row, but when
        one is present it needs to support the specific verifier decision
        described by the row.</li>
        <li>An evidence type is not an assurance level.  It describes the
        boundary of the supporting material so reviewers do not treat source
        evidence, local tests, interop vectors, and deployment evidence as
        equivalent.</li>
      </ol>
    </section>

    <section anchor="layer-vocabulary" numbered="true">
      <name>Layer Vocabulary</name>
      <t>The Layer field needs to be explicit because candidate agent
      communication drafts do not all use the same architectural model.  A
      draft MAY use conventional protocol-layer language, such as application,
      transport, and network, when that is the clearest description of where
      the relevant carrier or verifier behavior sits.</t>

      <t>A draft MAY instead use an agent-native architectural taxonomy, such as
      substrate, composition, application, governance, or audit.  If it does so,
      the draft needs to define that taxonomy and explain how the labels are
      used.  For example, a "governance" label might be useful for review when
      a claim depends on a policy, registry, reputation process, slashing
      process, or administrative authority; however, that label is not a
      protocol layer unless the draft defines it as one.</t>

      <t>The Layer field is open-ended per row.  A protocol can place all of its
      relevant carriers or verifier behavior at the transport layer if that is
      how the protocol is designed.  Conversely, a protocol can use an
      architectural label when the verifier decision depends on composition,
      audit, or governance behavior outside the transport exchange.  The matrix
      does not require either vocabulary; it requires the chosen vocabulary to
      be explicit.</t>
    </section>

    <section anchor="two-level-model" numbered="true">
      <name>Two-Level Review Model</name>
      <t>The matrix can be maintained as two linked review levels: a claim
      registry and one or more protocol mapping records.</t>
      <t>The first level is a claim registry for AGENTPROTO review.  It assigns
      stable identifiers to security claims or requirements, without selecting
      one protocol as the general solution for every row.  Each row can name one
      or more candidate protocols that map to that claim.</t>

      <dl anchor="two-level-claim-registry" newline="true">
        <dt>C-001: Agent or workload instance identity</dt>
        <dd><t>Candidate mappings include AGTP, IACP, a WIMSE profile, or
        another candidate.</t></dd>

        <dt>C-002: Human or organizational authority</dt>
        <dd><t>Candidate mappings include vLEI, OAuth, GNAP, an authorization
        receipt, or another candidate.</t></dd>

        <dt>C-003: Delegated scope</dt>
        <dd><t>Candidate mappings include a delegation chain, delegation
        receipt, or capability profile.</t></dd>

        <dt>C-004: Session continuity</dt>
        <dd><t>Candidate mappings include protocol session state, transport
        binding, or a migration profile.</t></dd>

        <dt>C-005: Action evidence</dt>
        <dd><t>Candidate mappings include an audit receipt, capsule,
        transparency statement, or evidence graph.</t></dd>

        <dt>C-011: Accepted result</dt>
        <dd><t>Candidate mappings include the verifier-produced result that an
        application, gateway, policy engine, or relying party is allowed to
        consume after successful verification.</t></dd>

        <dt>C-012: Authorization and attribution boundary</dt>
        <dd><t>Candidate mappings include human-authorization receipts,
        delegation records, mandate records, attribution records, audit
        records, action-evidence graphs, or other mechanisms whose security
        meaning depends on whether they speak before execution, during
        execution, after execution, or at relying-party acceptance time.</t></dd>
      </dl>

      <t>The second level is the set of protocol mapping records.  Each
      candidate draft can provide one or more records for the claims it carries
      or depends on.  This prevents a protocol from being treated as a complete
      architecture merely because it covers one claim well, and it lets the
      working group compare drafts row by row.</t>

      <t>A protocol mapping row records the claim ID, claim text, carrier,
      verifier, verification rule, binding, freshness rule, accepted result,
      layer label, failure behavior, implementation status, specification
      status, any external dependency, evidence reference, and evidence type.
      For example, an instance-identity row might state that the carrier is a
      protocol field, the verifier is the peer, the binding is the handshake
      transcript, freshness is supplied by a nonce or epoch, the accepted result
      is a session-scoped instance decision, the failure behavior is connection
      rejection, and the evidence type is interop or local-harness evidence.</t>

      <t>The claim registry is not a conformance target by itself.  The protocol
      mapping record set is the review surface: it states what the draft actually
      specifies, what is implemented, what is inherited from another component,
      what remains an architectural assumption, and what evidence or test vector
      can be used to check the row.</t>
    </section>

    <section anchor="status-values" numbered="true">
      <name>Status Value Semantics</name>
      <t>The implementation and specification status fields are security
      relevant.  They prevent an author, implementer, or reviewer from treating
      an intended mechanism as a current protocol guarantee.</t>
      <t>The specification-status vocabulary is specified, planned, inherited,
      and assumption.  The implementation-status vocabulary is implemented,
      partial, none, and external.</t>
      <t>The two vocabularies are independent.  A row can be specified but have
      no known implementation, implemented experimentally but not yet specified
      in the draft, inherited from another document with external
      implementation evidence, or planned without any current implementation
      claim.</t>
      <dl newline="true">
        <dt>specified</dt>
        <dd><t>The current draft contains enough protocol text for an
        independent implementer to identify the carrier, verifier, binding,
        freshness rule, accepted result when applicable, and failure behavior.</t></dd>

        <dt>inherited</dt>
        <dd><t>The row depends on another specification or system.  The
        dependency needs to be identified, and the draft needs to state what
        happens if the dependency is absent or not trusted.  An inherited row is
        not complete if it merely names another document; it also needs to
        identify the inherited verifier, binding, freshness rule, accepted
        result when applicable, and failure behavior or state that they are
        outside the current draft's scope.</t></dd>

        <dt>planned</dt>
        <dd><t>The row is intended for a later revision and MUST NOT be treated
        as a current security guarantee.</t></dd>

        <dt>assumption</dt>
        <dd><t>The row depends on architecture, deployment, governance, or
        operational behavior that the draft does not specify.</t></dd>

        <dt>implemented</dt>
        <dd><t>At least one implementation performs the verification behavior
        described by the row.  The row SHOULD identify whether that evidence is
        source-level, unit-level, local-harness, interop, or deployment
        evidence.  If a public test vector or reproducible artifact exists, the
        row SHOULD include an evidence reference.</t></dd>

        <dt>partial</dt>
        <dd><t>The draft or implementation covers part of the row, but at least
        one of the carrier, verifier, binding, freshness rule, accepted result,
        or failure behavior is incomplete.</t></dd>

        <dt>none</dt>
        <dd><t>No implementation evidence is currently claimed for the row.</t></dd>

        <dt>external</dt>
        <dd><t>The implementation evidence exists outside the candidate draft's
        own implementation.  The row should identify the external system,
        artifact, or implementation boundary.</t></dd>
      </dl>
    </section>

    <section anchor="mapping-template" numbered="true">
      <name>Protocol Mapping Template</name>
      <t>Candidate protocol drafts can use the following compact template in a
      Security Considerations section, appendix, or companion document.</t>
      <dl anchor="protocol-mapping-template-fields" newline="true">
        <dt>ID</dt>
        <dd><t>The claim identifier from the registry.</t></dd>

        <dt>Claim</dt>
        <dd><t>The precise statement being asserted or depended upon.</t></dd>

        <dt>Carrier</dt>
        <dd><t>The protocol field, credential, token, receipt, attestation,
        envelope, or external reference that carries the claim.</t></dd>

        <dt>Verifier</dt>
        <dd><t>The party that performs the check.</t></dd>

        <dt>Verification rule</dt>
        <dd><t>The rule applied by the verifier.</t></dd>

        <dt>Binding</dt>
        <dd><t>The state to which the claim is bound.</t></dd>

        <dt>Freshness</dt>
        <dd><t>The replay, revocation, expiration, sequence, nonce, or recency
        rule.</t></dd>

        <dt>Accepted result or success behavior</dt>
        <dd><t>The verifier-produced result that the relying application may
        consume after successful verification.  This field should state the
        scope of reliance and important non-claims.</t></dd>

        <dt>Layer</dt>
        <dd><t>The protocol layer or architectural review dimension used by the
        draft for this row.</t></dd>

        <dt>Failure behavior</dt>
        <dd><t>The behavior when the claim is absent, stale, inconsistent, or
        not verifiable.</t></dd>

        <dt>Implementation status</dt>
        <dd><t>One of implemented, partial, none, or external.</t></dd>

        <dt>Specification status</dt>
        <dd><t>One of specified, planned, inherited, or assumption.</t></dd>

        <dt>Dependency</dt>
        <dd><t>The external document, system, service, registry, or operational
        process on which the row depends, if any.</t></dd>

        <dt>Evidence reference</dt>
        <dd><t>A stable public pointer to the test vector, example, test case,
        implementation artifact, interop record, issue, or pull request that
        supports the row, if available.</t></dd>

        <dt>Evidence type</dt>
        <dd><t>The type of evidence, such as source-level, unit-level,
        local-harness, interop, deployment, document, issue, pull-request, or
        other evidence.</t></dd>
      </dl>

      <t>When a draft does not carry a claim, the corresponding row MAY be
      omitted.  If the draft relies on the claim for a security decision, the
      row SHOULD NOT be omitted; it should instead state the dependency or
      assumption explicitly.</t>

      <t>When a row produces a result that application logic consumes, the row
      SHOULD define the accepted result.  For example, a verifier can return a
      constrained result such as "session-bound token possessed on this
      connection" without also returning "this request target is authorized" or
      "human authorization is present".</t>
    </section>

    <section anchor="evidence-references" numbered="true">
      <name>Evidence and Test Vector References</name>
      <t>A verifier matrix becomes more useful when its rows are checkable
      rather than only asserted.  A row therefore MAY include an evidence
      reference.  The reference can point to a public test vector, example,
      conformance test, implementation test, interop note, issue, pull request,
      or other stable artifact.</t>

      <t>An evidence reference does not need to prove that a protocol is
      complete.  It needs to support the specific row.  For example, a test
      vector for session replay resistance supports a freshness or binding row;
      it does not by itself prove delegated authority.  A receipt verification
      example supports an evidence-carrier row; it does not by itself prove that
      the recorded action was authorized.</t>

      <t>When evidence is implementation-related, the row SHOULD distinguish the
      evidence type.  Useful categories include source-level evidence,
      unit-level evidence, local-harness evidence, cross-implementation interop
      evidence, and deployment evidence.  This distinction prevents a draft from
      treating a local unit test, public interop vector, and deployment signal
      as equivalent.</t>

      <t>A useful evidence reference is row-specific.  It identifies the input
      object, the canonicalization or serialization rule when bytes are compared,
      the verifier decision being tested, the expected positive result, and at
      least one negative case that fails for the same row.  If the evidence
      depends on a private deployment or non-public implementation, the row
      should say so instead of treating the evidence as publicly reproducible.</t>

      <t>When a row produces an accepted result, the evidence reference should
      identify both the successful verifier output and at least one case in which
      a raw, stale, unbound, or incomplete claim is not passed to the application
      as an accepted result.</t>
    </section>

    <section anchor="inheritance-targets" numbered="true">
      <name>Inheritance Targets and Artifact-Layer Mechanisms</name>
      <t>Some mechanisms used by agent communication protocols are not
      communication protocols themselves.  For example, an authorization
      receipt, transparency statement, action-evidence graph, revocation
      statement, or attestation result can be an artifact-layer mechanism that
      is carried by, referenced by, or bound to a communication exchange.</t>

      <t>Such a mechanism can be a valid inheritance target for a protocol
      mapping row.  If a draft marks a row as inherited, the row SHOULD identify
      the inherited mechanism and the decision state it supplies.  The row
      should state the inherited verifier, carrier, binding, freshness rule,
      accepted result, failure behavior, and evidence reference when
      available.</t>

      <t>Marking a row as inherited is preferable to silently implying a
      guarantee.  It allows a communication protocol to stay focused on its
      transport or session design while still making authority, action evidence,
      revocation, or audit dependencies visible to reviewers.</t>
    </section>

    <section anchor="composition-slots" numbered="true">
      <name>Composition Profiles and Accountability Slots</name>
      <t>Some agent accountability drafts describe review in terms of slots or
      profiles rather than a single protocol.  The same matrix discipline
      applies.  Each slot should be representable as one or more mapping rows
      with its own carrier, verifier, binding, freshness rule, accepted result,
      failure behavior, and evidence reference.</t>

      <t>For example, the composition model in
      <xref target="I-D.mih-sato-agent-accountability-composition"/> uses CAN,
      WHO, WHAT, and AUDIT profiles joined by a shared action digest.  In this
      document's terms, the shared digest is a binding and composition aid for
      C-005 and C-010.  It is not, by itself, an accepted result for authority,
      delegation, human authorization, completeness, runtime enforcement, or
      relying-party policy sufficiency.</t>

      <t>Pre-execution approval, delegated authority, post-execution
      attribution, observed action evidence, and audit enforcement can name the
      same principal and the same action.  They nevertheless remain different
      claims unless a draft specifies a verifier that intentionally joins them
      and defines the accepted result and failure behavior for that joined
      decision.  A shared digest can make the join checkable; it does not make
      the rows interchangeable.</t>
    </section>

    <section anchor="worked-example" numbered="true">
      <name>Protocol-Neutral Worked Example</name>
      <t>The following example is deliberately protocol-neutral.  It is not a
      complete mapping for AGTP <xref target="I-D.hood-independent-agtp"/>,
      IACP <xref target="I-D.gebauer-iacp"/>, WIMSE
      <xref target="I-D.ietf-wimse-arch"/>, or any other candidate draft.  It
      illustrates how rows should separate claims, verifier decisions, accepted
      results, and failure behavior.</t>

      <dl newline="true">
        <dt>C-002: user or organization authorized the task</dt>
        <dd><t>Possible carriers include a role credential, account policy,
        vLEI, OAuth token, GNAP grant <xref target="RFC9635"/>, or equivalent.
        The verifier is the receiving agent or policy verifier.  The claim is
        bound to the task, scope, subject, and resource.  Freshness comes from
        token lifetime, revocation, or policy version.  Failure behavior is
        rejection or fresh authorization.</t></dd>

        <dt>C-001: live agent instance is acting</dt>
        <dd><t>Possible carriers include channel authentication, an agent
        credential, attestation, or a condition-bound protected key.  The
        verifier is a peer, gateway, or relying party.  The claim is bound to a
        session or channel transcript and to any declared protection conditions.
        Freshness comes from handshake freshness, attestation recency, nonce
        challenge, or equivalent live-key check.  The accepted result is limited
        to live instance or key-possession status under those conditions; it does
        not by itself prove delegated task scope or human authority.  Failure
        behavior is session rejection or capability downgrade.</t></dd>

        <dt>C-003: delegation is in scope</dt>
        <dd><t>Possible carriers include a delegation token or chain.  The
        verifier is the recipient or gateway.  The claim is bound to the
        delegator, delegatee, action class, and resource.  Freshness comes from
        expiry, revocation, or attenuation version.  Failure behavior is
        rejection of the delegated action.</t></dd>

        <dt>C-006: tool invocation is in scope</dt>
        <dd><t>Possible carriers include a tool call envelope or capability
        reference.  The verifier is the tool gateway or policy engine.  The
        claim is bound to delegated scope and tool identity.  Freshness comes
        from a per-call nonce, session binding, or sequence.  Failure behavior
        is denial of the invocation and failure recording if audit is
        claimed.</t></dd>

        <dt>C-005: action evidence refers to the same action</dt>
        <dd><t>Possible carriers include an action digest, receipt, capsule, or
        audit record.  The verifier is the profile verifier or composition
        verifier.  The claim is bound to the canonical action input and native
        record.  Freshness comes from digest context version and receipt policy.
        Failure behavior is refusal to compose the records as evidence of the
        same action.</t></dd>

        <dt>C-011: verifier returns a constrained accepted result</dt>
        <dd><t>After validating a row, the verifier returns a normalized result
        that states what the next component may rely on.  For example, a gateway
        might return "this connection currently holds the enrolled live key" but
        not "this request is authorized for this resource" unless the authority
        and delegated-scope rows also succeed.</t></dd>

        <dt>C-012: pre-execution and post-execution claims remain separate</dt>
        <dd><t>A human authorization receipt can show that a named human or
        quorum approved an action before execution.  An attribution or audit
        record can show who was recorded as delegating, performing, or observing
        the action after execution.  Even when both records are joined by the
        same action digest, the verifier returns separate accepted results for
        pre-execution authority and post-execution attribution unless another
        specified rule intentionally combines them.</t></dd>
      </dl>
    </section>

    <section anchor="negative-tests" numbered="true">
      <name>Negative Test Cases</name>
      <t>Protocol authors SHOULD consider negative tests for each row in the
      verifier matrix.  The following cases are intended as examples.</t>
      <dl newline="true">
        <dt>Stale delegation</dt>
        <dd><t>A delegation token or chain is structurally valid but expired,
        revoked, or superseded.  The verifier rejects the delegated action or
        requests fresh authorization.</t></dd>

        <dt>Unbound tool invocation</dt>
        <dd><t>A tool call envelope is valid, but the envelope is not bound to
        the delegation scope, resource identifier, or session state used for the
        decision.  The tool invocation is denied.</t></dd>

        <dt>Replay across sessions</dt>
        <dd><t>A claim or receipt from one session is replayed in another
        session.  The verifier detects that the claim is not bound to the
        current session transcript, nonce, exporter, or equivalent channel
        state.</t></dd>

        <dt>Mismatched action evidence</dt>
        <dd><t>A receipt, log entry, capsule, or evidence record refers to a
        different action digest, input, resource, or policy version than the
        action being reviewed.  The records are not composed as evidence of the
        same action.</t></dd>

        <dt>Inherited mechanism absent</dt>
        <dd><t>A draft states that another component supplies authorization,
        attestation, or evidence, but does not identify the dependency or the
        failure behavior when the dependency is unavailable.  The row is marked
        as inherited or assumption, not as a current protocol guarantee.</t></dd>

        <dt>Raw claim pass-through</dt>
        <dd><t>A protocol field, token, credential, receipt, or attestation is
        structurally valid, but the application consumes the raw object directly
        instead of a verifier-produced accepted result.  The test fails unless
        the draft defines what normalized result may be consumed and what scope
        that result has.</t></dd>

        <dt>Possession without authority</dt>
        <dd><t>A live-key, protected-key, or session-binding check succeeds, but
        the requested action is outside the delegated scope or lacks human or
        organizational authority.  The key-possession row can pass while the
        authority or delegation row fails.</t></dd>

        <dt>Digest equality treated as sufficiency</dt>
        <dd><t>Two records carry the same action digest, and the implementation
        treats that equality as authorization, completeness, correctness, or
        policy sufficiency.  The test fails unless the relevant authority,
        evidence, audit, and accepted-result rows are separately verified.</t></dd>

        <dt>Attribution substituted for authorization</dt>
        <dd><t>A post-execution attribution or audit record names a principal,
        but the system treats that record as proof that the principal approved
        the action before execution.  The verifier rejects the substitution
        unless a pre-execution authorization row is independently satisfied.</t></dd>
      </dl>
    </section>

    <section anchor="candidate-guidance" numbered="true">
      <name>Guidance for Candidate Protocol Drafts</name>
      <t>A candidate agent communication draft can use this document in four
      ways.</t>
      <ol>
        <li>It can include a verifier matrix in its Security Considerations
        section.</li>
        <li>It can publish a companion mapping document that maps its protocol
        fields to the claim registry.</li>
        <li>It can state that a claim is intentionally out of scope, inherited
        from another document, or left to deployment policy.</li>
        <li>It can link public vectors or evidence references for rows that have
        executable or reproducible evidence.</li>
      </ol>

      <t>A draft that takes the third path remains reviewable if it identifies
      the dependency and failure behavior.  The main review problem is not that
      a protocol omits a claim; the problem is when a protocol relies on a claim
      while leaving the verifier, binding, freshness rule, or failure behavior
      implicit.</t>
    </section>

    <section anchor="current-draft-vs-future" numbered="true">
      <name>Current-Draft Versus Future Mechanism</name>
      <t>When a draft supplies a verifier matrix, it SHOULD distinguish:</t>
      <ul>
        <li>mechanisms implemented or normatively specified in the current
        draft;</li>
        <li>mechanisms described as future work;</li>
        <li>mechanisms inherited from another draft or external system; and</li>
        <li>mechanisms that are architectural assumptions rather than protocol
        checks.</li>
      </ul>

      <t>This distinction is important for review.  A row that depends on a
      future reputation system, slashing process, governance committee, or
      external log can still be useful, but it should not be presented as a
      current protocol guarantee.</t>
    </section>

    <section anchor="security-considerations" numbered="true">
      <name>Security Considerations</name>
      <t>An agent communication protocol MUST NOT rely on a single identifier,
      token, session handle, log entry, or credential to imply multiple security
      properties unless the draft explicitly specifies the verification rule for
      each property.</t>
      <t>In particular:</t>
      <ul>
        <li>authority and live-instance identity need separate validation;</li>
        <li>possession of a session key does not by itself prove delegation
        scope;</li>
        <li>a delegation chain does not by itself prove current session
        continuity;</li>
        <li>a tool call does not by itself prove that the tool was within
        delegated authority;</li>
        <li>a successful key-possession, live-instance, or attestation check does
        not by itself authorize a request target;</li>
        <li>an audit log or transparency receipt does not by itself prove
        authorization, truth, completeness, or correct execution; and</li>
        <li>an architectural label such as "identity at the wire" should be
        mapped to concrete protocol checks.</li>
      </ul>

      <t>A successful verification step should produce a constrained accepted
      result for the relying component.  Protocol authors should avoid designs in
      which application logic consumes raw peer-provided claims, tokens,
      receipts, or attestations as if their mere presence were a completed
      security decision.  The accepted result needs to preserve the scope,
      binding, freshness, and limitations of the verifier decision.</t>

      <t>If a claim is required for a security decision and the verifier cannot
      validate that claim, the protocol MUST specify whether the action is
      rejected, downgraded, quarantined, delayed for additional authorization,
      or allowed with a recorded warning.  Silent acceptance is not an
      acceptable default for a security-relevant claim.</t>

      <t>Protocol authors should also consider cross-protocol composition.  A
      claim that is valid in one protocol context might lose its security
      meaning when it is copied into a receipt, gateway envelope, audit record,
      or delegated session without preserving the binding and freshness state
      needed by the verifier.</t>

      <t>Where attestation evidence is used, this document follows the RATS
      distinction among claims, evidence, appraisal, and relying-party decisions
      described in <xref target="RFC9334"/>.  Where transparency services or
      signed-statement receipts are used, this document treats those receipts as
      evidence carriers and not as automatic proof of authorization or correct
      execution; see the SCITT architecture in <xref target="RFC9943"/>.</t>
    </section>

    <section anchor="privacy-considerations" numbered="true">
      <name>Privacy Considerations</name>
      <t>Verifier-facing matrices can expose privacy-relevant design choices.  A
      draft that binds actions to human authority, organizational identifiers,
      tool invocations, or long-lived sessions should state whether the binding
      creates linkability across actions, sessions, deployments, or
      administrative domains.</t>

      <t>Drafts should avoid requiring globally linkable identifiers unless the
      security property being claimed requires them.  Where possible, a matrix
      row should state whether the verifier needs a stable identifier, a
      pairwise identifier, a role or capability assertion, a freshness proof, or
      only evidence that a locally authorized policy decision was made.</t>

      <t>Accepted results can also affect privacy.  A verifier can often return
      a scoped decision such as "authorized for this task in this session"
      instead of exposing the raw credential, stable identifier, receipt, or
      attestation evidence to application logic.  Drafts should describe when
      raw identifying material is preserved, transformed, minimized, or withheld
      from the accepted result.</t>
    </section>

    <section anchor="iana-considerations" numbered="true">
      <name>IANA Considerations</name>
      <t>This document makes no IANA requests.</t>
      <t>If later versions define a reusable registry of claim identifiers,
      verifier matrix fields, or protocol mapping status values, that registry
      will need a separate IANA considerations section.</t>
    </section>

    <section anchor="initial-application" numbered="true">
      <name>Initial Application to AGENTPROTO Discussion</name>
      <t>The AGTP <xref target="I-D.hood-independent-agtp"/> and IACP
      <xref target="I-D.gebauer-iacp"/> discussion threads provide useful early
      examples.  This section does not judge whether either draft satisfies the
      matrix; it only identifies useful first mapping targets.</t>

      <t>AGTP appears to expose candidate carriers for authority, agent identity,
      delegation, session state, composition-layer tool identity, and audit
      evidence.  The next useful step is to turn those carriers into mapping
      records that state who verifies each claim, what accepted result is
      returned, what evidence type supports the row, and what failure behavior
      applies.</t>

      <t>IACP has already been sketched by its author as a verifier-facing
      matrix.  For reviewability, the useful next step is to separate rows that
      are currently in draft-gebauer-iacp-01 from rows that are future work,
      inherited from other mechanisms, or dependent on governance systems not
      yet specified in the current I-D.</t>

      <t>The accountability composition work in
      <xref target="I-D.mih-sato-agent-accountability-composition"/> is another
      early application.  Its CAN, WHO, WHAT, and AUDIT slots can be reviewed as
      mapping rows.  The most important boundary for interop is that the shared
      action digest joins independently verified rows; it does not replace the
      native verifier for any slot and does not by itself produce an accepted
      result.</t>

      <t>Both mappings can help converge a shared requirements note without
      requiring either protocol to adopt the other's wire format.</t>
    </section>

    <section anchor="open-issues" numbered="true">
      <name>Open Issues</name>
      <ul>
        <li>Should the matrix be a requirements document, a
        security-considerations companion, or a section to be imported by
        candidate protocol drafts?</li>
        <li>What is the minimal set of mandatory claim classes for
        AGENTPROTO?</li>
        <li>Should the matrix define conformance language, or remain an
        Informational review aid?</li>
        <li>Should a shared repository hold the claim registry and protocol
        mapping records before the Internet-Draft is posted, or should the
        initial I-D define the record format first?</li>
        <li>How should action evidence be bound to delegation and session state
        without forcing a single audit-record format?</li>
        <li>Which negative test cases should protocol authors provide for stale
        delegation, replayed sessions, unbound tool calls, and mismatched
        evidence?</li>
        <li>Should privacy and linkability expectations be part of the same
        matrix, or a separate privacy considerations profile?</li>
        <li>Should evidence references remain optional, or should implemented
        rows require a public evidence reference before being marked as
        implemented?</li>
      </ul>
    </section>

    <section anchor="acknowledgments" numbered="true">
      <name>Acknowledgments</name>
      <t>The author thanks Leonard Gebauer for proposing a two-level
      claim-registry and per-protocol mapping-record structure and for providing
      IACP-oriented mapping examples; Chris Hood for clarifying open-ended layer
      vocabulary and AGTP transport-layer mapping considerations; Iman Schrock
      for proposing evidence-backed mapping rows and inheritance-target framing
      for artifact-layer mechanisms; and Steven Mih and Tom Sato for
      accountability-composition and conformance-vector discussion that helped
      clarify action-digest joins and slot-style review.  The author thanks
      Akira Okutomi
      for discussion that motivated clearer accepted-result and success-output
      boundaries, Karthik Rampalli for discussion of composed-stack review and
      failure classes, and Thi Nguyen-Huu for discussion of condition-bound
      credentials and live-key examples.  The author also thanks
      participants on the AGENTPROTO mailing list for discussion of
      security-principal separation, verifier-facing review matrices, protocol
      comparison, and claim-level coordination among candidate drafts.
      Acknowledgment does not imply endorsement of this document or of any
      particular protocol mapping.</t>
    </section>
  </middle>

  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.2119.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.8174.xml"/>
      </references>

      <references>
        <name>Informative References</name>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9334.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9635.xml"/>
        <xi:include href="https://bib.ietf.org/public/rfc/bibxml/reference.RFC.9943.xml"/>

        <reference anchor="I-D.ietf-wimse-arch" target="https://datatracker.ietf.org/doc/draft-ietf-wimse-arch/">
          <front>
            <title>Workload Identity in a Multi System Environment (WIMSE) Architecture</title>
            <author fullname="Joseph A. Salowey" initials="J. A." surname="Salowey"/>
            <author fullname="Yaroslav Rosomakho" initials="Y." surname="Rosomakho"/>
            <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig"/>
            <date year="2026" month="March" day="2"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-wimse-arch-07"/>
        </reference>

        <reference anchor="I-D.ietf-wimse-workload-identity-practices" target="https://datatracker.ietf.org/doc/draft-ietf-wimse-workload-identity-practices/">
          <front>
            <title>Workload Identity Practices</title>
            <author fullname="Arndt Schwenkschuster" initials="A." surname="Schwenkschuster"/>
            <author fullname="Yaroslav Rosomakho" initials="Y." surname="Rosomakho"/>
            <date year="2026" month="June" day="30"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-wimse-workload-identity-practices-05"/>
        </reference>

        <reference anchor="I-D.hood-independent-agtp" target="https://datatracker.ietf.org/doc/draft-hood-independent-agtp/">
          <front>
            <title>Agent Transfer Protocol (AGTP)</title>
            <author fullname="Chris Hood" initials="C." surname="Hood"/>
            <date year="2026" month="June" day="28"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-hood-independent-agtp-09"/>
        </reference>

        <reference anchor="I-D.gebauer-iacp" target="https://datatracker.ietf.org/doc/draft-gebauer-iacp/">
          <front>
            <title>Internet Agent Communication Protocol</title>
            <author fullname="Leonard Gebauer" initials="L." surname="Gebauer"/>
            <date year="2026" month="June" day="29"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-gebauer-iacp-01"/>
        </reference>

        <reference anchor="I-D.mih-sato-agent-accountability-composition" target="https://datatracker.ietf.org/doc/draft-mih-sato-agent-accountability-composition/">
          <front>
            <title>Agent Accountability: Composition and Conformance</title>
            <author fullname="Steven Mih" initials="S." surname="Mih"/>
            <author fullname="Tom Sato" initials="T." surname="Sato"/>
            <author fullname="Songbo Bu" initials="S." surname="Bu"/>
            <author fullname="Iman Schrock" initials="I." surname="Schrock"/>
            <date year="2026" month="July" day="5"/>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-mih-sato-agent-accountability-composition-00"/>
        </reference>
      </references>
    </references>
  </back>
</rfc>
