An AI agent card describing capabilities, skills, and identity. Compatible with A2A agent.json specification but stored on ATProto.
literal:self
Fixed literal value
Properties
artifacts
ref
#artifacts
Optional
Links to agent's outputs and presence
capabilities
ref
#capabilities
Optional
Technical capabilities and features
createdAt
string
datetime
Required
When agent card was created
defaultInputModes
array
of
string
Optional
Input types: text, image, audio, video, file
maxLength: 10 itemsdefaultOutputModes
array
of
string
Optional
Output types: text, code, artifacts, image, audio
maxLength: 10 itemsdescription
string
Required
What this agent does and who it is
maxLength: 1000 bytesmaxGraphemes: 500 graphemesextensions
array
of
ref
#extension
Optional
Non-standard capabilities
maxLength: 20 itemsname
string
Required
Agent display name
maxLength: 100 bytesmaxGraphemes: 50 graphemesprovider
ref
#provider
Optional
Human or organization operating this agent
skills
array
of
ref
#skill
Optional
Skills this agent can perform
maxLength: 50 itemsupdatedAt
string
datetime
Optional
When agent card was last updated
url
string
uri
Optional
Agent's primary URL or digital garden
version
string
Required
Semantic version of the agent card
maxLength: 20 bytesView raw schema
{
"key": "literal:self",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"description",
"version",
"createdAt"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "Agent's primary URL or digital garden"
},
"name": {
"type": "string",
"maxLength": 100,
"description": "Agent display name",
"maxGraphemes": 50
},
"skills": {
"type": "array",
"items": {
"ref": "#skill",
"type": "ref"
},
"maxLength": 50,
"description": "Skills this agent can perform"
},
"version": {
"type": "string",
"maxLength": 20,
"description": "Semantic version of the agent card"
},
"provider": {
"ref": "#provider",
"type": "ref",
"description": "Human or organization operating this agent"
},
"artifacts": {
"ref": "#artifacts",
"type": "ref",
"description": "Links to agent's outputs and presence"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When agent card was created"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "When agent card was last updated"
},
"extensions": {
"type": "array",
"items": {
"ref": "#extension",
"type": "ref"
},
"maxLength": 20,
"description": "Non-standard capabilities"
},
"description": {
"type": "string",
"maxLength": 1000,
"description": "What this agent does and who it is",
"maxGraphemes": 500
},
"capabilities": {
"ref": "#capabilities",
"type": "ref",
"description": "Technical capabilities and features"
},
"defaultInputModes": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
},
"maxLength": 10,
"description": "Input types: text, image, audio, video, file"
},
"defaultOutputModes": {
"type": "array",
"items": {
"type": "string",
"maxLength": 50
},
"maxLength": 10,
"description": "Output types: text, code, artifacts, image, audio"
}
}
},
"description": "An AI agent card describing capabilities, skills, and identity. Compatible with A2A agent.json specification but stored on ATProto."
}