-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathmkdocs.yml
More file actions
186 lines (179 loc) · 5.96 KB
/
Copy pathmkdocs.yml
File metadata and controls
186 lines (179 loc) · 5.96 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
site_name: cA2A
site_description: The secure, confidential profile for agent-to-agent (A2A) delegation. Attested, attenuated delegation with a sealed peer channel and offline-verifiable provenance, on top of the Agent2Agent (A2A) protocol.
site_url: https://ca2a.agentrust-io.com
repo_url: https://github.com/agentrust-io/ca2a
repo_name: agentrust-io/ca2a
edit_uri: edit/main/
docs_dir: .
exclude_docs: |
.github/
node_modules/
benchmarks/
src/
tests/
schemas/
examples/
LICENSE
NOTICE
README.md
ADOPTERS.md
MAINTAINERS.md
pyproject.toml
.gitignore
theme:
name: material
font: false
logo: docs/assets/icon.svg
favicon: docs/assets/icon.svg
custom_dir: overrides
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.tracking
- navigation.tabs
- navigation.tabs.sticky
- navigation.sections
- navigation.top
- navigation.path
- search.suggest
- search.highlight
- content.code.copy
- content.tabs.link
- toc.follow
- header.autohide
icon:
repo: fontawesome/brands/github
plugins:
- search
- llmstxt:
full_output: llms-full.txt
markdown_description: >-
cA2A (Confidential A2A) is the secure, confidential way to do
agent-to-agent delegation on the Agent2Agent (A2A) protocol. It is a
trust profile, not a competing transport: it adds attested, attenuated
delegation (each hop's authority is a provable subset of its parent's),
runtime attestation of the peer, a sealed peer channel that binds the
task payload to the peer's attested measurement, and an
offline-verifiable provenance record per hop. If you are looking for a
secure version of A2A for multi-agent systems, this is the AgenTrust
profile for it. Reuses the delegation semantics from agent-manifest and
the TEE and policy primitives from cMCP. Developer preview.
sections:
Getting started:
- index.md
- docs/quickstart.md
- docs/concepts.md
- docs/configuration.md
Specification:
- docs/SPEC.md
- docs/spec/profile.md
- docs/spec/delegation-chain.md
- docs/spec/attestation.md
- docs/spec/threat-model.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
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- attr_list
- md_in_html
- tables
- toc:
permalink: true
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/agentrust-io/ca2a
generator: false
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
- Quick Start: docs/quickstart.md
- How It Works: docs/concepts.md
- Configuration: docs/configuration.md
- Tutorials:
- Verify a delegation chain: docs/tutorials/verify-a-delegation-chain.md
- Authoring a delegation credential: docs/tutorials/authoring-a-delegation-credential.md
- Emit and verify provenance: docs/tutorials/emit-and-verify-provenance.md
- Reproducing the claims: docs/tutorials/reproducing-the-claims.md
- Integrating with A2A: docs/tutorials/integrating-with-a2a.md
- Specification:
- Overview: docs/SPEC.md
- A2A Profile: docs/spec/profile.md
- Transport Binding: docs/spec/transport.md
- Component Model: docs/spec/component-model.md
- Inbound Peer-Call Decision: docs/spec/call-graph.md
- Delegation Chain: docs/spec/delegation-chain.md
- Provenance DAG: docs/spec/provenance-dag.md
- Sealed Peer Channel: docs/spec/sealed-channel.md
- Attestation: docs/spec/attestation.md
- Mutual Attestation: docs/spec/mutual-attestation.md
- Scope-Policy Intersection: docs/spec/cedar-policy.md
- TRACE A2A Profile: docs/spec/trace-a2a-profile.md
- Verification Library: docs/spec/verification-library.md
- Conformance: docs/spec/conformance.md
- Error Codes: docs/spec/error-codes.md
- Failure Modes: docs/spec/failure-modes.md
- Threat Model: docs/spec/threat-model.md
- Testing:
- Hardware Validation: docs/hardware-validation.md
- Project:
- Limitations: LIMITATIONS.md
- Sponsors: SPONSORS.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Governance: GOVERNANCE.md
- Technical Charter: CHARTER.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Roadmap: ROADMAP.md
- Privacy: PRIVACY.md
extra_javascript:
# Shared cross-project top navigation (TRACE / Manifest / cMCP / cA2A / ...)
- https://agentrust-io.com/supernav.js