com.publicdomainrelay.temp.agent.skill
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "com.publicdomainrelay.temp.agent.skill:body.content" }
- AddedEdge AddedEdge { src: "com.publicdomainrelay.temp.agent.skill:body", tgt: "com.publicdomainrelay.temp.agent.skill:body.content", kind: "prop", name: Some("content") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "com.publicdomainrelay.temp.agent.skill:body.content" }
Additional Notes
- Non-breaking: AddedEdge { src: "com.publicdomainrelay.temp.agent.skill:body", tgt: "com.publicdomainrelay.temp.agent.skill:body.content", kind: "prop", name: Some("content") }
1
1
{
2
2
"id": "com.publicdomainrelay.temp.agent.skill",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"name",
11
11
"description",
12
+
"content",
12
13
"createdAt"
13
14
],
14
15
"properties": {
15
16
"name": {
16
17
"type": "string",
17
18
"description": "Human-readable name of the skill."
18
19
},
20
+
"content": {
21
+
"type": "string",
22
+
"description": "The skill itself."
23
+
},
19
24
"examples": {
20
25
"type": "array",
21
26
"items": {
22
27
"ref": "com.atproto.repo.strongRef",
23
28
"type": "ref"
24
29
},
25
30
"description": "Strong references to example records demonstrating this skill."
26
31
},
27
32
"createdAt": {
28
33
"type": "string",
29
34
"description": "ISO 8601 timestamp when this skill record was created."
30
35
},
31
36
"description": {
32
37
"type": "string",
33
38
"description": "Instructions for when and how to use this skill."
34
39
},
35
40
"property_references": {
36
41
"type": "array",
37
42
"items": {
38
43
"ref": "#propertyReference",
39
44
"type": "ref"
40
45
},
41
46
"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."
42
47
}
43
48
}
44
49
},
45
50
"description": "An agent skill record that describes a capability the agent can perform, with examples and property references."
46
51
},
47
52
"propertyReference": {
48
53
"type": "object",
49
54
"required": [
50
55
"path"
51
56
],
52
57
"properties": {
53
58
"ref": {
54
59
"ref": "com.atproto.repo.strongRef",
55
60
"type": "ref",
56
61
"description": "Strong reference to a record that contains the example data."
57
62
},
58
63
"path": {
59
64
"type": "string",
60
65
"description": "JSONPath-like dotted path into the resolved example tree, e.g. '.examples[].value.payload.value.user_data'."
61
66
}
62
67
},
63
68
"description": "A single path-annotated value reference within a skill's example records. Carries either a literal string or a strongRef pointing to the value."
64
69
}
65
70
},
66
71
"$type": "com.atproto.lexicon.schema",
67
72
"lexicon": 1
68
73
}