-
Notifications
You must be signed in to change notification settings - Fork 417
Expand file tree
/
Copy pathmkdocs.yml
More file actions
153 lines (145 loc) · 4.45 KB
/
mkdocs.yml
File metadata and controls
153 lines (145 loc) · 4.45 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
site_name: AP2 - Agent Payments Protocol Documentation
site_url: https://ap2-protocol.org/
site_description: >
The Agent Payments Protocol (AP2) is a solution for enabling gen AI agents to make payments on
behalf of users, safely, securely, and in a decentralized and privacy protecting manner.
This protocol is a part of the broader ecosystem, which includes agentic protocols like A2A and
MCP, and encompasses the global nature of payments.
site_author: Google
site_dir: site
edit_uri: edit/main/docs/
extra:
analytics:
provider: google
property: G-KXMYBJWNQ7
# Navigation
nav:
- Home: index.md
- Topics:
- AP2 Overview: topics/what-is-ap2.md
- Core Concepts: topics/core-concepts.md
- AP2, A2A and MCP: topics/ap2-a2a-and-mcp.md
- AP2 and x402: topics/ap2-and-x402.md
- Privacy and Security: topics/privacy-and-security.md
- Life of a Transaction: topics/life-of-a-transaction.md
- AP2 specification: specification.md
- A2A extension for AP2: a2a-extension.md
- Glossary: glossary.md
- FAQ: faq.md
- Roadmap: roadmap.md
- Partners: partners.md
- Samples:
- Human Present Cards: https://github.com/google-agentic-commerce/AP2/tree/main/samples/python/scenarios/a2a/human-present/cards/
- Human Present x402: https://github.com/google-agentic-commerce/AP2/tree/main/samples/python/scenarios/a2a/human-present/x402/
- Digital Payment Credentials Android: https://github.com/google-agentic-commerce/AP2/tree/main/samples/android/scenarios/digital-payment-credentials/run.sh
# Repository
repo_name: AP2
repo_url: https://github.com/google-agentic-commerce/AP2
# Copyright
copyright: Copyright 2025 Google. Licensed under the Apache License, Version 2.0.
# Custom CSS
extra_css:
- stylesheets/custom.css
# Configuration
theme:
name: material
custom_dir: .mkdocs/overrides
font:
text: Google Sans
code: Roboto Mono
logo: assets/ap2-logo-white.svg
favicon: assets/ap2-logo-black.svg
icon:
repo: fontawesome/brands/github
view: material/pencil-box-multiple
admonition:
note: fontawesome/solid/note-sticky
abstract: fontawesome/solid/book
info: fontawesome/solid/circle-info
tip: fontawesome/solid/bullhorn
success: fontawesome/solid/check
question: fontawesome/solid/circle-question
warning: fontawesome/solid/triangle-exclamation
failure: fontawesome/solid/bomb
danger: fontawesome/solid/skull
bug: fontawesome/solid/robot
example: fontawesome/solid/flask
quote: fontawesome/solid/quote-left
palette:
- scheme: default
primary: pink
accent: white
features:
- announce.dismiss
- content.action.view
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.path
- navigation.top
- navigation.tracking
- toc.follow
- versioning:
provider: mike
# Extensions
markdown_extensions:
- meta
- footnotes
- admonition
- attr_list
- md_in_html
- pymdownx.details
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
- pymdownx.highlight:
anchor_linenums: true
line_spans: __span
pygments_lang_class: true
- pymdownx.inlinehilite
- pymdownx.snippets:
url_download: true
dedent_subsections: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.tabbed:
alternate_style: true
slugify: !!python/object/apply:pymdownx.slugs.slugify
kwds:
case: lower
- pymdownx.tasklist:
custom_checkbox: true
- toc:
permalink: true
# Plugins
plugins:
- search
- macros
- llmstxt:
full_output: llms-full.txt
sections:
"Introduction":
- index.md
"Core Topics":
- topics/what-is-ap2.md
- topics/core-concepts.md
- topics/ap2-a2a-and-mcp.md
- topics/ap2-and-x402.md
- topics/privacy-and-security.md
- topics/life-of-a-transaction.md
"Specification":
- specification.md
- a2a-extension.md
"Additional Resources":
- glossary.md
- faq.md
- roadmap.md
- partners.md