Summary of Custom Catalog negotiation changes in A2UI v0.8
Summary of Custom Catalog negotiation changes in A2UI v0.8
Section titled “Summary of Custom Catalog negotiation changes in A2UI v0.8”This document summarizes the changes made to the A2UI protocol in v0.8 to support a more flexible and powerful custom catalog negotiation mechanism. It is intended as a guide for developers implementing these changes in agent or renderer libraries.
The previous mechanism, which involved a single, one-time clientUiCapabilities message, has been deprecated. The new approach allows for a more dynamic, per-request declaration of capabilities, enabling a single client to support multiple catalogs and allowing the agent to choose the most appropriate one for each UI surface.
Key changes to the protocol
Section titled “Key changes to the protocol”-
Agent capability advertisement (
supportedCatalogIds,acceptsInlineCatalogs): The agent’s role in negotiation has been expanded. It now can declare a list of supported catalog IDs, in addition to whether it is capable of processing catalogs defined “inline” by the client.- Relevant Doc:
a2ui_extension_specification.md
- Relevant Doc:
-
Client capabilities via A2A metadata: The client now sends its capabilities in an
a2uiClientCapabilitiesobject. Crucially, this is no longer a standalone message but is included in themetadatafield of every A2A message sent to the agent.- This object contains
supportedCatalogIds(an array of known catalog IDs) and an optionalinlineCatalogs(an array of full catalog definitions). - Relevant doc: The new process is explained in the
a2ui_protocol.mdsection on Catalog Negotiation. - Relevant schema:
a2ui_client_capabilities_schema.json
- This object contains
-
Per-Surface catalog selection (
beginRendering): The agent is now responsible for selecting which catalog to use for each UI surface. It signals its choice using the new optionalcatalogIdfield in thebeginRenderingmessage. If this field is omitted, the client must default to the Standard Catalog.- Relevant doc:
a2ui_protocol.md - Relevant schema: The change is reflected in
server_to_client.json.
- Relevant doc:
-
Catalog definition ID (
catalogId): To facilitate identification, the catalog definition schema itself now has a requiredcatalogIdfield.- Relevant schema:
catalog_description_schema.json
- Relevant schema:
Implementation guide for developers
Section titled “Implementation guide for developers”For Agent (server) library developers
Section titled “For Agent (server) library developers”Your responsibilities are to process the client’s declared capabilities and make a rendering choice.
-
Advertise capability: In the agent’s capability card, add the
supportedCatalogIdsarray and theacceptsInlineCatalogs: trueparameter within the A2UI extension block to declare which catalogs you support and whether you can handle dynamic ones. -
Parse client capabilities: On every incoming A2A message, your library must parse the
metadata.a2uiClientCapabilitiesobject to determine which catalogs the client supports. You will get a list ofsupportedCatalogIdsand potentially a list ofinlineCatalogs. -
Choose a Catalog: Before rendering a UI, decide which catalog to use. Your choice must be one of the catalogs advertised by the client in the capabilities object.
-
Specify Catalog on render: When sending the
beginRenderingmessage for a surface, set thecatalogIdfield to the ID of your chosen catalog (e.g.,"https://my-company.com/inline_catalogs/my-custom-catalog"). If you do not set this field, you are implicitly requesting the use of the standard catalog. -
Generate compliant UI: Ensure that all components generated in subsequent
surfaceUpdatemessages for that surface conform to the properties and types defined in the chosen catalog.
For Renderer (client) library developers
Section titled “For Renderer (client) library developers”Your responsibilities are to accurately declare your capabilities and render surfaces using the catalog selected by the agent.
-
Declare capabilities on every request: For every A2A message your application sends, your library must inject the
a2uiClientCapabilitiesobject into the top-levelmetadatafield. -
Populate
supportedCatalogIds: In the capabilities object, populate this array with the string identifiers of all pre-compiled catalogs your renderer supports. If your renderer supports the standard catalog for v0.8, you should include its ID:https://a2ui.org/specification/v0_8/standard_catalog_definition.json. -
Provide
inlineCatalogs(optional): If your renderer supports dynamically generating or defining catalogs at runtime, include their full, valid Catalog Definition Documents in theinlineCatalogsarray. -
Process
beginRendering: When your renderer receives abeginRenderingmessage, it must inspect the newcatalogIdfield. -
Select Catalog for surface:
- If
catalogIdis present, use the corresponding catalog to render that surface. Your renderer must be able to look up the catalog from its pre-compiled list or from the inline definitions it just sent. - If
catalogIdis absent, you must default to using the Standard Catalog for v0.8 for that surface.
- If
-
Manage multiple Catalogs: Your renderer must be architected to handle multiple surfaces being rendered with different catalogs simultaneously. A dictionary mapping
surfaceIdto the chosencatalogis a common approach.