Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/protocol/draft/schema-v2.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Schema"
description: "Schema definitions for the Agent Client Protocol"
---

<Note>
The schema file can be downloaded directly from the [latest GitHub
release](https://github.com/agentclientprotocol/agent-client-protocol/releases/latest/download/schema.json).
</Note>

## Agent

Defines the interface that all ACP-compliant agents must implement.
Expand Down
5 changes: 5 additions & 0 deletions docs/protocol/draft/schema.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Schema"
description: "Schema definitions for the Agent Client Protocol"
---

<Note>
The schema file can be downloaded directly from the [latest GitHub
release](https://github.com/agentclientprotocol/agent-client-protocol/releases/latest/download/schema.json).
</Note>

## Agent

Defines the interface that all ACP-compliant agents must implement.
Expand Down
5 changes: 5 additions & 0 deletions docs/protocol/schema.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ title: "Schema"
description: "Schema definitions for the Agent Client Protocol"
---

<Note>
The schema file can be downloaded directly from the [latest GitHub
release](https://github.com/agentclientprotocol/agent-client-protocol/releases/latest/download/schema.json).
</Note>

## Agent

Defines the interface that all ACP-compliant agents must implement.
Expand Down
6 changes: 6 additions & 0 deletions src/bin/generate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,12 @@ mod markdown_generator {
.unwrap();
writeln!(&mut self.output, "---").unwrap();
writeln!(&mut self.output).unwrap();
writeln!(
&mut self.output,
"<Note>The schema file can be downloaded directly from the [latest GitHub release](https://github.com/agentclientprotocol/agent-client-protocol/releases/latest/download/schema.json).</Note>"
)
.unwrap();
writeln!(&mut self.output).unwrap();

let mut agent_types: BTreeMap<String, Vec<(String, Value)>> = BTreeMap::new();
let mut client_types: BTreeMap<String, Vec<(String, Value)>> = BTreeMap::new();
Expand Down