An agent skill record that describes a capability the agent can perform, with examples and property references.
tid
Timestamp-based ID
Properties
content
string
Required
The skill itself.
createdAt
string
Required
ISO 8601 timestamp when this skill record was created.
description
string
Required
Instructions for when and how to use this skill.
examples
array
of
ref
com.atproto.repo.strongRef
Optional
Strong references to example records demonstrating this skill.
name
string
Required
Human-readable name of the skill.
property_references
array
of
ref
#propertyReference
Optional
Annotated path-value pairs describing fields within the example records. Each entry either carries a literal string value or a strongRef that resolves (recursively) to the value at that path.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"description",
"content",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"description": "Human-readable name of the skill."
},
"content": {
"type": "string",
"description": "The skill itself."
},
"examples": {
"type": "array",
"items": {
"ref": "com.atproto.repo.strongRef",
"type": "ref"
},
"description": "Strong references to example records demonstrating this skill."
},
"createdAt": {
"type": "string",
"description": "ISO 8601 timestamp when this skill record was created."
},
"description": {
"type": "string",
"description": "Instructions for when and how to use this skill."
},
"property_references": {
"type": "array",
"items": {
"ref": "#propertyReference",
"type": "ref"
},
"description": "Annotated path-value pairs describing fields within the example records. Each entry either carries a literal string value or a strongRef that resolves (recursively) to the value at that path."
}
}
},
"description": "An agent skill record that describes a capability the agent can perform, with examples and property references."
}