Skip to content

Commit b4a2c78

Browse files
committed
docs(a2a): add A2A protocol and debugger documentation
Add documentation for the
1 parent fbeab0b commit b4a2c78

File tree

3 files changed

+50
-0
lines changed

3 files changed

+50
-0
lines changed

docs/a2a/a2a-debugger.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
layout: default
3+
title: MCP Debugger
4+
nav_order: 2
5+
parent: MCP
6+
permalink: /a2a/a2a-debugger
7+
---
8+
9+
## AutoDev A2A debugger
10+
11+
create a file end with `.mcp.json` in your project root directory, and add the following content:
12+
13+
```json
14+
{
15+
"a2aServers": {
16+
"remote-example": {
17+
"url": "http://localhost:9999"
18+
}
19+
}
20+
}
21+
```
22+
23+
Then, click show preview in File toolbar, you can see:
24+
25+
- A2A Server/Tool LIST
26+
- A2A Model Configured
27+
- A2A Chat input box

docs/a2a/index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
layout: default
3+
title: A2A Protocol
4+
nav_order: 7
5+
has_children: true
6+
permalink: /a2a
7+
---
8+
9+
在 issue [#435](https://github.com/unit-mesh/auto-dev/issues/435), 我们创建了 AutoDev 的 A2A 功能。
10+
11+
# A2A
12+
13+
> 全称为Agent to Agent Protocol,是由Google推出的一个开放协议,旨在实现不同AI智能体之间的互操作性,
14+
> 促进它们在动态多智能体环境下的有效通信和协作。简单来说,A2A协议就像是为AI智能体之间提供了一套标准化的“语言”,
15+
> 使得不同厂商、不同技术框架的AI智能体能够像人与人交流一样,互相理解、互相协作,共同完成任务

sidebars.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,14 @@ const sidebars = {
177177
'mcp/mcp-server',
178178
],
179179
},
180+
{
181+
type: 'category',
182+
label: 'A2A',
183+
items: [
184+
'a2a/index',
185+
'a2a/a2a-debugger',
186+
],
187+
},
180188
{
181189
type: 'category',
182190
label: 'AI Agent Language',

0 commit comments

Comments
 (0)