-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
81 lines (75 loc) · 2.58 KB
/
mkdocs.yml
File metadata and controls
81 lines (75 loc) · 2.58 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
# MkDocs config for MPCP Specification
# Built and deployed under /spec at mpcp-protocol.github.io
site_name: MPCP Spec
site_description: Machine Payment Control Protocol — specification
site_url: https://mpcp-protocol.github.io/spec/
repo_url: https://github.com/mpcp-protocol/mpcp-spec
repo_name: mpcp-spec
edit_uri: edit/main/docs/
plugins:
- search
extra:
protocol_version: "MPCP 1.0"
extra_css:
- stylesheets/extra.css
theme:
name: material
palette:
- scheme: slate
primary: black
accent: blue
features:
- navigation.sections
- navigation.expand
- navigation.top
- navigation.tabs
- search.highlight
- content.code.copy
nav:
- MPCP: https://mpcp-protocol.github.io/
- Home: index.md
- Overview:
- What is MPCP: overview/what-is-mpcp.md
- Problem: overview/problem-statement.md
- Design Goals: overview/design-goals.md
- Why XRPL: overview/why-xrpl.md
- Comparison: overview/comparison-with-agent-protocols.md
- Why MPCP for Agents: overview/why-mpcp-for-agents.md
- Architecture:
- System Model: architecture/system-model.md
- Actors: architecture/actors.md
- Authorization Chain: architecture/authorization-chain.md
- Reference Flow (Fleet EV): architecture/fleet-ev-reference-flow.md
- Reference Flow (Human-Agent): architecture/human-agent-reference-flow.md
- Artifact Lifecycle: architecture/artifact-lifecycle.md
- Protocol:
- MPCP: protocol/mpcp.md
- Artifacts: protocol/artifacts.md
- Hashing: protocol/hashing.md
- Verification: protocol/verification.md
- Key Resolution: protocol/key-resolution.md
- Trust Bundles: protocol/trust-bundles.md
- Trust Model: protocol/trust-model.md
- Rails: protocol/rails.md
- PolicyGrant: protocol/PolicyGrant.md
- SBA: protocol/SignedBudgetAuthorization.md
- Policy Anchoring: protocol/policy-anchoring.md
- FleetPolicyAuthorization: protocol/FleetPolicyAuthorization.md
- ArtifactBundle: protocol/ArtifactBundle.md
- Policy Model: protocol/policy-model.md
- Policy Examples: protocol/policy-examples.md
- Profiles:
- Human-Agent Profile: profiles/human-agent-profile.md
- Transparent Gateway: profiles/gateway-profile.md
- Guides:
- Integration Guide: guides/integration-guide.md
- Build a Machine Wallet: guides/build-a-machine-wallet.md
- Fleet Payments: guides/fleet-payments.md
- Dispute Resolution: guides/dispute-resolution.md
- Diagrams: diagrams/index.md
- Ecosystem: ecosystem.md
- Roadmap: roadmap.md
markdown_extensions:
- attr_list
- md_in_html
- pymdownx.superfences