forked from a2aproject/A2A
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
140 lines (134 loc) · 4.87 KB
/
mkdocs.yml
File metadata and controls
140 lines (134 loc) · 4.87 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
# Project information
site_name: Agent2Agent Protocol (A2A)
site_url: https://google.github.io/A2A
site_description: >-
An open protocol enabling communication and interoperability between opaque agentic applications
site_dir: site
# Navigation
nav:
- Home: index.md
- Why A2A?:
- A2A and MCP: topics/a2a-and-mcp.md
- Agent Discovery: topics/agent-discovery.md
- Enterprise Ready: topics/enterprise-ready.md
- Push Notifications: topics/push-notifications.md
- A2A Protocol:
- About: specification/index.md
- Overview: specification/overview.md
- Agent Card: specification/agent-card.md
- Agent-to-Agent Communication: specification/agent-to-agent-communication.md
- Sample Messages: specification/sample-messages.md
- Community: community.md
- Partners: partners.md
- Resources: resources.md
- A2A Tutorial (Python):
- Introduction: tutorials/python/1-introduction.md
- Setup: tutorials/python/2-setup.md
- Create project: tutorials/python/3-create-project.md
- Agent Skills: tutorials/python/4-agent-skills.md
- Add Agent Card: tutorials/python/5-add-agent-card.md
- Start server: tutorials/python/6-start-server.md
- Interact with server: tutorials/python/7-interact-with-server.md
- Agent capabilities: tutorials/python/8-agent-capabilities.md
- Ollama agent: tutorials/python/9-ollama-agent.md
- Next steps: tutorials/python/10-next-steps.md
# Repository
repo_name: A2A
repo_url: https://github.com/google/A2A
# Copyright
copyright: Copyright Google 2025
# Custom CSS
extra_css:
- stylesheets/custom.css
# Configuration
theme:
name: material
font:
text: Google Sans
code: Roboto Mono
logo: assets/a2a-logo.png
favicon: assets/a2a-logo.png
icon:
repo: fontawesome/brands/github
palette:
- scheme: default
primary: indigo
accent: white
toggle:
icon: material/brightness-7
name: Switch to dark mode
- scheme: slate
primary: white
accent: white
toggle:
icon: material/brightness-4
name: Switch to light mode
features:
- content.code.annotate
- content.code.copy
- content.code.select
- content.tabs.link
- navigation.expand
- navigation.footer
- navigation.indexes
- navigation.instant
- navigation.instant.progress
- navigation.path
- navigation.tabs
- navigation.top
- navigation.tracking
- toc.follow
# Extensions
markdown_extensions:
- 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
- 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
- toc:
permalink: true
# Plugins
plugins:
# - search
- redirects:
redirect_maps:
"topics/a2a_and_mcp.md": "topics/a2a-and-mcp.md"
"topics/agent_discovery.md": "topics/agent-discovery.md"
"topics/enterprise_ready.md": "topics/enterprise-ready.md"
"topics/push_notification.md": "topics/push-notifications.md"
"topics/push_notifications.md": "topics/push-notifications.md"
# temp period of time with wrong links in source
"specification/topics/a2a_and_mcp.md": "topics/a2a-and-mcp.md"
"specification/topics/agent_discovery.md": "topics/agent-discovery.md"
"specification/topics/enterprise_ready.md": "topics/enterprise-ready.md"
"specification/topics/push_notification.md": "topics/push-notifications.md"
"specification/topics/push_notifications.md": "topics/push-notifications.md"
# Tutorial
"tutorials/python/1_introduction.md": "tutorials/python/1-introduction.md"
"tutorials/python/2_setup.md": "tutorials/python/2-setup.md"
"tutorials/python/3_create_project.md": "tutorials/python/3-create-project.md"
"tutorials/python/4_agent_skills.md": "tutorials/python/4-agent-skills.md"
"tutorials/python/5_add_agent_card.md": "tutorials/python/5-add-agent-card.md"
"tutorials/python/6_start_server.md": "tutorials/python/6-start-server.md"
"tutorials/python/7_interact_with_server.md": "tutorials/python/7-interact-with-server.md"
"tutorials/python/8_agent_capabilities.md": "tutorials/python/8-agent-capabilities.md"
"tutorials/python/9_ollama_agent.md": "tutorials/python/9-ollama-agent.md"
"tutorials/python/10_next_steps.md": "tutorials/python/10-next-steps.md"