-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathmkdocs.yml
More file actions
249 lines (241 loc) · 8.39 KB
/
Copy pathmkdocs.yml
File metadata and controls
249 lines (241 loc) · 8.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
site_name: TRACE
site_description: "Trust Runtime Attestation and Compliance Evidence: open attestation standard for agentic AI governance"
site_url: https://trace.agentrust-io.com
repo_url: https://github.com/agentrust-io/trace-spec
repo_name: agentrust-io/trace-spec
edit_uri: edit/main/
docs_dir: .
copyright: "© 2026 TRACE Specification contributors: CC BY 4.0"
exclude_docs: |
.github/
overrides/
node_modules/
src/
tests/
# schema/ is published, not excluded, but only the file whose $id points at
# this host. The others declare an agentrust-io.com $id and are served there;
# serving a second copy here would give the same document two URLs.
schema/trace-claim.json
schema/trace-revocation.json
schema/trace-revocation-bundle.json
LICENSE
NOTICE
README.md
ANTITRUST.md
ADOPTERS.md
SECURITY.md
pyproject.toml
theme:
name: material
custom_dir: overrides
font: false
logo: docs/assets/icon.svg
favicon: docs/assets/icon.svg
palette:
- scheme: default
primary: custom
accent: custom
toggle:
icon: material/brightness-4
name: Switch to dark mode
- scheme: slate
primary: custom
accent: custom
toggle:
icon: material/brightness-7
name: Switch to light mode
features:
- navigation.instant
- navigation.instant.progress
- navigation.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.expand
- navigation.top
- navigation.path
- navigation.footer
- search.suggest
- search.highlight
- search.share
- content.code.copy
- content.code.annotate
- content.tabs.link
- content.tooltips
- toc.follow
- announce.dismiss
icon:
repo: fontawesome/brands/github
plugins:
- search:
lang: en
- llmstxt:
full_output: llms-full.txt
markdown_description: >-
TRACE (Trust Runtime Attestation and Compliance Evidence) is an open
specification for signed AI agent runtime evidence. A TRACE Trust Record
connects workload identity, policy, data classification, and transcript
commitments. Software signing, hardware attestation, and transparency
inclusion establish different properties and require separate checks.
Start with a local signed record and tamper detection, then choose the
evidence required by your verifier. It builds on RFC 9711 (CWT/EAT), RFC 9334
(RATS), and SCITT, and ships a Python library, agentrust-trace, with a
conformance suite.
sections:
Getting started:
- index.md
- docs/quickstart.md
- docs/trust-levels.md
- docs/verification.md
- docs/glossary.md
Specification:
- spec/trace-v0.2.md
- docs/schema.md
Integration:
- docs/integration/agt.md
- docs/integration/openshell.md
- docs/integration/cmcp.md
- docs/integration/sandbox-runtime.md
Platforms:
- docs/platforms/index.md
- minify:
minify_html: true
- mkdocstrings:
default_handler: python
handlers:
python:
paths: [src]
options:
docstring_style: google
show_source: false
show_root_heading: true
show_root_full_path: false
show_symbol_type_heading: true
show_symbol_type_toc: true
members_order: source
separate_signature: true
show_signature_annotations: true
unwrap_annotated: true
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
linenums_style: pymdownx-inline
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.keys
- attr_list
- md_in_html
- tables
- footnotes
- toc:
permalink: true
toc_depth: 3
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/agentrust-io/trace-spec
name: trace-spec on GitHub
- icon: fontawesome/brands/python
link: https://pypi.org/project/agentrust-trace/
name: agentrust-trace on PyPI
- icon: fontawesome/brands/discord
link: https://discord.gg/grgzFEHgkj
name: Join the Discord
generator: false
analytics:
feedback:
title: Was this page helpful?
ratings:
- icon: material/emoticon-happy-outline
name: This page was helpful
data: 1
note: Thanks for your feedback!
- icon: material/emoticon-sad-outline
name: This page could be improved
data: 0
note: "Thanks for your feedback: open an issue to let us know."
extra_css:
# Shared AgenTrust editorial design system. Deliberately the only stylesheet:
# a local override here is how this site drifted to the Material default
# violet last time. Change the shared file instead.
- https://agentrust-io.com/design-system.css
nav:
- Home: index.md
- Getting Started:
- Quickstart: docs/quickstart.md
- Trust Levels: docs/trust-levels.md
- Verification: docs/verification.md
- Build Provenance Depth: docs/build-provenance-depth.md
- Verification Outcome Statements: docs/verification-outcome-statements.md
- Schema Reference: docs/schema.md
- Glossary: docs/glossary.md
- Tutorials:
- Sign your first trust record: docs/tutorials/signing-your-first-trust-record.md
- Verify a trust record: docs/tutorials/verifying-a-trust-record.md
- Hardware attestation platforms: docs/tutorials/hardware-attestation-platforms.md
- Integration with cMCP: docs/tutorials/integrating-with-cmcp.md
- Anchor to the registry: docs/tutorials/anchoring-to-the-registry.md
- Verify the tool transcript: docs/tutorials/verifying-the-audit-chain.md
- AGT adapter: docs/tutorials/agt-adapter.md
- Specification:
- TRACE v0.2: spec/trace-v0.2.md
- Registry Anchor Format v1: spec/registry-anchor-v1.md
- MCP Server Provenance v1: spec/server-provenance-v1.md
- Content Marking v1: spec/content-marking-v1.md
- TRACE v0.1 (superseded): spec/trace-v0.1.md
- Integration:
- AGT: docs/integration/agt.md
- NVIDIA OpenShell: docs/integration/openshell.md
- cMCP: docs/integration/cmcp.md
- Sandboxed agent runtimes: docs/integration/sandbox-runtime.md
- PIC/TRACE authorization bridge: docs/integration/pic-trace-bridge-v1.md
- Platforms:
- Overview: docs/platforms/index.md
- AMD SEV-SNP: docs/platforms/amd-sev-snp.md
- Intel TDX: docs/platforms/intel-tdx.md
- NVIDIA H100: docs/platforms/nvidia-h100.md
- Crosswalks:
- OWASP Agentic Top 10: docs/crosswalks/owasp-agentic-top-10.md
- Acta Decision Receipts: docs/crosswalks/acta-decision-receipts.md
- N'KEMBA Institutional Reconstruction: docs/crosswalks/nkemba-institutional-reconstruction.md
- Test Suite: https://tests.agentrust-io.com
- Method:
- How the conformance vectors are built: docs/conformance-method.md
- RFCs:
- Composable zero-knowledge proofs: docs/rfcs/composable-zk-assurance.md
- A2A delegation-link verification profile: docs/rfcs/a2a-delegation-profile.md
- Runtime evidence and verifier grades: docs/rfcs/runtime-evidence-profile.md
- Project:
- Limitations: LIMITATIONS.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Governance: GOVERNANCE.md
- Technical Charter: CHARTER.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Maintainers: MAINTAINERS.md
- Sponsors: SPONSORS.md
- Roadmap: ROADMAP.md
- Privacy: PRIVACY.md
- Scope: Governance/Scope.md
- Contributor License Agreement: Governance/CLA.md
- Licenses: Governance/License.md
- Community Specification License: Governance/COMMUNITY-SPECIFICATION-LICENSE.md
- Notices: Governance/Notices.md
extra_javascript:
# Shared cross-project top navigation (TRACE / Manifest / cMCP / cA2A / ...)
- https://agentrust-io.com/supernav.js