Skip to content

Commit a21a474

Browse files
authored
docs(rfd): Move initial registry RFD to completed (#706)
1 parent 90b41c6 commit a21a474

5 files changed

Lines changed: 13 additions & 15 deletions

File tree

docs/docs.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,15 +128,16 @@
128128
},
129129
{
130130
"group": "Preview",
131-
"pages": ["rfds/acp-agent-registry"]
131+
"pages": []
132132
},
133133
{
134134
"group": "Completed",
135135
"pages": [
136136
"rfds/introduce-rfd-process",
137137
"rfds/session-config-options",
138138
"rfds/session-list",
139-
"rfds/session-info-update"
139+
"rfds/session-info-update",
140+
"rfds/acp-agent-registry"
140141
]
141142
}
142143
]

docs/get-started/_registry_agents.mdx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,10 @@ description: The easiest way to find and install ACP-compatible agents.
1515

1616
The ACP Registry is an easy way for developers to distribute their ACP-compatible agents to any client that speaks the protocol.
1717

18-
At the moment, this is a curated set of agents, including only the ones that [support authentication](/rfds/auth-methods).
18+
This is a curated set of agents, including only the ones that [support authentication](/rfds/auth-methods).
1919

2020
Visit [the registry repository on GitHub](https://github.com/agentclientprotocol/registry) to learn more about it.
2121

22-
<Warning>
23-
The registry is under active development, so expect its format and contents to
24-
change.
25-
</Warning>
26-
2722
## Available Agents
2823

2924
$$AGENTS_CARDS$$

docs/get-started/registry.mdx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,10 @@ description: The easiest way to find and install ACP-compatible agents.
1515

1616
The ACP Registry is an easy way for developers to distribute their ACP-compatible agents to any client that speaks the protocol.
1717

18-
At the moment, this is a curated set of agents, including only the ones that [support authentication](/rfds/auth-methods).
18+
This is a curated set of agents, including only the ones that [support authentication](/rfds/auth-methods).
1919

2020
Visit [the registry repository on GitHub](https://github.com/agentclientprotocol/registry) to learn more about it.
2121

22-
<Warning>
23-
The registry is under active development, so expect its format and contents to
24-
change.
25-
</Warning>
26-
2722
## Available Agents
2823

2924
<CardGroup cols={2}>

docs/updates.mdx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ description: Updates and announcements about the Agent Client Protocol
44
rss: true
55
---
66

7+
<Update label="March 9, 2026" tags={["RFD"]}>
8+
## ACP Registry RFD moves to Completed
9+
10+
The RFD for the initial version of the ACP Registry has been completed. Please review the [documentation](./get-started/registry) for more information.
11+
12+
</Update>
13+
714
<Update label="March 9, 2026" tags={["RFD"]}>
815
## session_info_update Notification RFD moves to Completed
916

src/agent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4490,7 +4490,7 @@ mod test_serialization {
44904490
assert_eq!(json, json!({ "currentValue": true }));
44914491

44924492
let deserialized: SessionConfigBoolean = serde_json::from_value(json).unwrap();
4493-
assert_eq!(deserialized.current_value, true);
4493+
assert!(deserialized.current_value);
44944494
}
44954495

44964496
#[cfg(feature = "unstable_boolean_config")]

0 commit comments

Comments
 (0)