|
1 | | -site_name: cA2A |
2 | | -site_description: Confidential agent-to-agent delegation, attested and attenuated, as a profile on A2A |
3 | | -site_url: https://ca2a.agentrust-io.com |
4 | | -repo_url: https://github.com/agentrust-io/ca2a |
5 | | -repo_name: agentrust-io/ca2a |
6 | | -edit_uri: edit/main/ |
7 | | -docs_dir: . |
8 | | -exclude_docs: | |
9 | | - .github/ |
10 | | - node_modules/ |
11 | | - benchmarks/ |
12 | | - src/ |
13 | | - tests/ |
14 | | - schemas/ |
15 | | - examples/ |
16 | | - LICENSE |
17 | | - NOTICE |
18 | | - ADOPTERS.md |
19 | | - MAINTAINERS.md |
20 | | - SECURITY.md |
21 | | - CHARTER.md |
22 | | - CODE_OF_CONDUCT.md |
23 | | - pyproject.toml |
24 | | - .gitignore |
25 | | -
|
26 | | -theme: |
27 | | - name: material |
28 | | - logo: docs/assets/icon.svg |
29 | | - favicon: docs/assets/icon.svg |
30 | | - palette: |
31 | | - - scheme: slate |
32 | | - primary: custom |
33 | | - accent: custom |
34 | | - toggle: |
35 | | - icon: material/brightness-7 |
36 | | - name: Switch to light mode |
37 | | - - scheme: default |
38 | | - primary: custom |
39 | | - accent: custom |
40 | | - toggle: |
41 | | - icon: material/brightness-4 |
42 | | - name: Switch to dark mode |
43 | | - features: |
44 | | - - navigation.instant |
45 | | - - navigation.tracking |
46 | | - - navigation.tabs |
47 | | - - navigation.tabs.sticky |
48 | | - - navigation.sections |
49 | | - - navigation.top |
50 | | - - navigation.path |
51 | | - - search.suggest |
52 | | - - search.highlight |
53 | | - - content.code.copy |
54 | | - - content.tabs.link |
55 | | - - toc.follow |
56 | | - - header.autohide |
57 | | - icon: |
58 | | - repo: fontawesome/brands/github |
59 | | - font: |
60 | | - text: Inter, system-ui, -apple-system, sans-serif |
61 | | - code: JetBrains Mono, Cascadia Code, monospace |
62 | | - |
63 | | -plugins: |
64 | | - - search |
65 | | - - minify: |
66 | | - minify_html: true |
67 | | - - mkdocstrings: |
68 | | - default_handler: python |
69 | | - handlers: |
70 | | - python: |
71 | | - paths: [src] |
72 | | - options: |
73 | | - docstring_style: google |
74 | | - show_source: false |
75 | | - show_root_heading: true |
76 | | - show_root_full_path: false |
77 | | - show_symbol_type_heading: true |
78 | | - show_symbol_type_toc: true |
79 | | - members_order: source |
80 | | - separate_signature: true |
81 | | - show_signature_annotations: true |
82 | | - unwrap_annotated: true |
83 | | - |
84 | | -markdown_extensions: |
85 | | - - admonition |
86 | | - - pymdownx.details |
87 | | - - pymdownx.superfences: |
88 | | - custom_fences: |
89 | | - - name: mermaid |
90 | | - class: mermaid |
91 | | - format: !!python/name:pymdownx.superfences.fence_code_format |
92 | | - - pymdownx.tabbed: |
93 | | - alternate_style: true |
94 | | - - pymdownx.highlight: |
95 | | - anchor_linenums: true |
96 | | - - pymdownx.inlinehilite |
97 | | - - pymdownx.snippets |
98 | | - - pymdownx.emoji: |
99 | | - emoji_index: !!python/name:material.extensions.emoji.twemoji |
100 | | - emoji_generator: !!python/name:material.extensions.emoji.to_svg |
101 | | - - attr_list |
102 | | - - md_in_html |
103 | | - - tables |
104 | | - - toc: |
105 | | - permalink: true |
106 | | - |
107 | | -extra: |
108 | | - social: |
109 | | - - icon: fontawesome/brands/github |
110 | | - link: https://github.com/agentrust-io/ca2a |
111 | | - generator: false |
112 | | - |
113 | | -extra_css: |
114 | | - - docs/stylesheets/extra.css |
115 | | - |
116 | | -nav: |
117 | | - - Home: README.md |
118 | | - - Quick Start: docs/quickstart.md |
119 | | - - How It Works: docs/concepts.md |
120 | | - - Configuration: docs/configuration.md |
121 | | - - Tutorials: |
122 | | - - Verify a delegation chain: docs/tutorials/verify-a-delegation-chain.md |
123 | | - - Authoring a delegation credential: docs/tutorials/authoring-a-delegation-credential.md |
124 | | - - Emit and verify provenance: docs/tutorials/emit-and-verify-provenance.md |
125 | | - - Reproducing the claims: docs/tutorials/reproducing-the-claims.md |
126 | | - - Integrating with A2A: docs/tutorials/integrating-with-a2a.md |
127 | | - - Specification: |
128 | | - - Overview: docs/SPEC.md |
129 | | - - A2A Profile: docs/spec/profile.md |
130 | | - - Transport Binding: docs/spec/transport.md |
131 | | - - Component Model: docs/spec/component-model.md |
132 | | - - Inbound Peer-Call Decision: docs/spec/call-graph.md |
133 | | - - Delegation Chain: docs/spec/delegation-chain.md |
134 | | - - Provenance DAG: docs/spec/provenance-dag.md |
135 | | - - Sealed Peer Channel: docs/spec/sealed-channel.md |
136 | | - - Attestation: docs/spec/attestation.md |
137 | | - - Scope-Policy Intersection: docs/spec/cedar-policy.md |
138 | | - - TRACE A2A Profile: docs/spec/trace-a2a-profile.md |
139 | | - - Verification Library: docs/spec/verification-library.md |
140 | | - - Error Codes: docs/spec/error-codes.md |
141 | | - - Failure Modes: docs/spec/failure-modes.md |
142 | | - - Threat Model: docs/spec/threat-model.md |
143 | | - - Project: |
144 | | - - Limitations: LIMITATIONS.md |
145 | | - - Changelog: CHANGELOG.md |
146 | | - - Contributing: CONTRIBUTING.md |
147 | | - - Governance: GOVERNANCE.md |
148 | | - - Roadmap: ROADMAP.md |
| 1 | +site_name: cA2A |
| 2 | +site_description: Confidential agent-to-agent delegation, attested and attenuated, as a profile on A2A |
| 3 | +site_url: https://ca2a.agentrust-io.com |
| 4 | +repo_url: https://github.com/agentrust-io/ca2a |
| 5 | +repo_name: agentrust-io/ca2a |
| 6 | +edit_uri: edit/main/ |
| 7 | +docs_dir: . |
| 8 | +exclude_docs: | |
| 9 | + .github/ |
| 10 | + node_modules/ |
| 11 | + benchmarks/ |
| 12 | + src/ |
| 13 | + tests/ |
| 14 | + schemas/ |
| 15 | + examples/ |
| 16 | + LICENSE |
| 17 | + NOTICE |
| 18 | + ADOPTERS.md |
| 19 | + MAINTAINERS.md |
| 20 | + SECURITY.md |
| 21 | + CHARTER.md |
| 22 | + CODE_OF_CONDUCT.md |
| 23 | + pyproject.toml |
| 24 | + .gitignore |
| 25 | +
|
| 26 | +theme: |
| 27 | + name: material |
| 28 | + logo: docs/assets/icon.svg |
| 29 | + favicon: docs/assets/icon.svg |
| 30 | + palette: |
| 31 | + - scheme: slate |
| 32 | + primary: custom |
| 33 | + accent: custom |
| 34 | + toggle: |
| 35 | + icon: material/brightness-7 |
| 36 | + name: Switch to light mode |
| 37 | + - scheme: default |
| 38 | + primary: custom |
| 39 | + accent: custom |
| 40 | + toggle: |
| 41 | + icon: material/brightness-4 |
| 42 | + name: Switch to dark mode |
| 43 | + features: |
| 44 | + - navigation.instant |
| 45 | + - navigation.tracking |
| 46 | + - navigation.tabs |
| 47 | + - navigation.tabs.sticky |
| 48 | + - navigation.sections |
| 49 | + - navigation.top |
| 50 | + - navigation.path |
| 51 | + - search.suggest |
| 52 | + - search.highlight |
| 53 | + - content.code.copy |
| 54 | + - content.tabs.link |
| 55 | + - toc.follow |
| 56 | + - header.autohide |
| 57 | + icon: |
| 58 | + repo: fontawesome/brands/github |
| 59 | + font: |
| 60 | + text: Inter, system-ui, -apple-system, sans-serif |
| 61 | + code: JetBrains Mono, Cascadia Code, monospace |
| 62 | + |
| 63 | +plugins: |
| 64 | + - search |
| 65 | + - minify: |
| 66 | + minify_html: true |
| 67 | + - mkdocstrings: |
| 68 | + default_handler: python |
| 69 | + handlers: |
| 70 | + python: |
| 71 | + paths: [src] |
| 72 | + options: |
| 73 | + docstring_style: google |
| 74 | + show_source: false |
| 75 | + show_root_heading: true |
| 76 | + show_root_full_path: false |
| 77 | + show_symbol_type_heading: true |
| 78 | + show_symbol_type_toc: true |
| 79 | + members_order: source |
| 80 | + separate_signature: true |
| 81 | + show_signature_annotations: true |
| 82 | + unwrap_annotated: true |
| 83 | + |
| 84 | +markdown_extensions: |
| 85 | + - admonition |
| 86 | + - pymdownx.details |
| 87 | + - pymdownx.superfences: |
| 88 | + custom_fences: |
| 89 | + - name: mermaid |
| 90 | + class: mermaid |
| 91 | + format: !!python/name:pymdownx.superfences.fence_code_format |
| 92 | + - pymdownx.tabbed: |
| 93 | + alternate_style: true |
| 94 | + - pymdownx.highlight: |
| 95 | + anchor_linenums: true |
| 96 | + - pymdownx.inlinehilite |
| 97 | + - pymdownx.snippets |
| 98 | + - pymdownx.emoji: |
| 99 | + emoji_index: !!python/name:material.extensions.emoji.twemoji |
| 100 | + emoji_generator: !!python/name:material.extensions.emoji.to_svg |
| 101 | + - attr_list |
| 102 | + - md_in_html |
| 103 | + - tables |
| 104 | + - toc: |
| 105 | + permalink: true |
| 106 | + |
| 107 | +extra: |
| 108 | + social: |
| 109 | + - icon: fontawesome/brands/github |
| 110 | + link: https://github.com/agentrust-io/ca2a |
| 111 | + generator: false |
| 112 | + |
| 113 | +extra_css: |
| 114 | + - docs/stylesheets/extra.css |
| 115 | + |
| 116 | +nav: |
| 117 | + - Home: README.md |
| 118 | + - Quick Start: docs/quickstart.md |
| 119 | + - How It Works: docs/concepts.md |
| 120 | + - Configuration: docs/configuration.md |
| 121 | + - Tutorials: |
| 122 | + - Verify a delegation chain: docs/tutorials/verify-a-delegation-chain.md |
| 123 | + - Authoring a delegation credential: docs/tutorials/authoring-a-delegation-credential.md |
| 124 | + - Emit and verify provenance: docs/tutorials/emit-and-verify-provenance.md |
| 125 | + - Reproducing the claims: docs/tutorials/reproducing-the-claims.md |
| 126 | + - Integrating with A2A: docs/tutorials/integrating-with-a2a.md |
| 127 | + - Specification: |
| 128 | + - Overview: docs/SPEC.md |
| 129 | + - A2A Profile: docs/spec/profile.md |
| 130 | + - Transport Binding: docs/spec/transport.md |
| 131 | + - Component Model: docs/spec/component-model.md |
| 132 | + - Inbound Peer-Call Decision: docs/spec/call-graph.md |
| 133 | + - Delegation Chain: docs/spec/delegation-chain.md |
| 134 | + - Provenance DAG: docs/spec/provenance-dag.md |
| 135 | + - Sealed Peer Channel: docs/spec/sealed-channel.md |
| 136 | + - Attestation: docs/spec/attestation.md |
| 137 | + - Scope-Policy Intersection: docs/spec/cedar-policy.md |
| 138 | + - TRACE A2A Profile: docs/spec/trace-a2a-profile.md |
| 139 | + - Verification Library: docs/spec/verification-library.md |
| 140 | + - Conformance: docs/spec/conformance.md |
| 141 | + - Error Codes: docs/spec/error-codes.md |
| 142 | + - Failure Modes: docs/spec/failure-modes.md |
| 143 | + - Threat Model: docs/spec/threat-model.md |
| 144 | + - Project: |
| 145 | + - Limitations: LIMITATIONS.md |
| 146 | + - Changelog: CHANGELOG.md |
| 147 | + - Contributing: CONTRIBUTING.md |
| 148 | + - Governance: GOVERNANCE.md |
| 149 | + - Roadmap: ROADMAP.md |
0 commit comments