| Internet-Draft | SATP v1.0 | May 2026 |
| AG | Expires 3 November 2026 | [Page] |
This document specifies the Sovereign Autonomous Trust Protocol (SATP), a foundational framework for establishing verifiable identity, attribution, and governance for autonomous machines. SATP provides a non-repudiable "Root of Trust" for both digital AI agents and physical autonomous systems.¶
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 3 November 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.¶
The proliferation of autonomous systems has created a "Trust Gap." SATP addresses this by establishing a decentralized, cryptographically anchored identity standard.¶
Every autonomous unit is issued a permanent did:satp identifier anchored to a verified institutional controller.¶
SATP enforces a "Zero-Trust" model, issuing JIT authorization for specific tool-calls or mechanical operations.¶
Every action is recorded to an NDJSON-based Usage Ledger, hashed and chained for tamper-proof auditing.¶
Utilizes Ed25519 for signatures and SHA-384 for ledger integrity.¶
Achieves a mean Anchoring speed of 6.42 microseconds for mass-scale industrial deployment.¶
Initiates autonomous recovery and rollback to the last verified anchor in the event of a breach.¶
Designed for transparent integration via a cryptographic proxy, enabling one-line standard implementation.¶
SATP is the definitive standard for the machine economy, enabling safe deployment at a multi-trillion dollar scale.¶
Installation: pip install satp-sdk¶
from satp import ProtocolAnchor
@ProtocolAnchor.secure()
def autonomous_action(payload):
pass
¶