Skip to content
Open
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
3 changes: 3 additions & 0 deletions specification/grpc/a2a.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
syntax = "proto3";
package a2a.v1;

import "buf/validate/validate.proto";
import "google/api/annotations.proto";
import "google/api/client.proto";
import "google/api/field_behavior.proto";
Expand Down Expand Up @@ -434,6 +435,8 @@ message AgentCard {
repeated AgentCardSignature signatures = 17;
// An optional URL to an icon for the agent.
string icon_url = 18;
// A stable unique identifier (UUID) for an agent, optional.
string id = 19 [(buf.validate.field).string.uuid = true];
}
// --8<-- [end:AgentCard]

Expand Down
5 changes: 5 additions & 0 deletions specification/json/a2a.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions types/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,11 @@ export interface AgentCard {
* @default "0.3.0"
*/
protocolVersion: string;
/**
* A stable unique identifier (UUID) for an agent, consistent across all its versions, optional.
* @format uuid
*/
id?: string;
/**
* A human-readable name for the agent.
*
Expand Down