com.publicdomainrelay.temp.agent.skill
Schema Diff
+0 -0
Compatibility Analysis
Backward Compatible
No changes detected.
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
12
"content",
13
13
"createdAt"
14
14
],
15
15
"properties": {
16
16
"name": {
17
17
"type": "string",
18
18
"description": "Human-readable name of the skill."
19
19
},
20
20
"content": {
21
21
"type": "string",
22
22
"description": "The skill itself."
23
23
},
24
24
"examples": {
25
25
"type": "array",
26
26
"items": {
27
27
"ref": "com.atproto.repo.strongRef",
28
28
"type": "ref"
29
29
},
30
30
"description": "Strong references to example records demonstrating this skill."
31
31
},
32
32
"createdAt": {
33
33
"type": "string",
34
34
"description": "ISO 8601 timestamp when this skill record was created."
35
35
},
36
36
"description": {
37
37
"type": "string",
38
38
"description": "Instructions for when and how to use this skill."
39
39
},
40
40
"property_references": {
41
41
"type": "array",
42
42
"items": {
43
43
"ref": "#propertyReference",
44
44
"type": "ref"
45
45
},
46
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."
47
47
}
48
48
}
49
49
},
50
50
"description": "An agent skill record that describes a capability the agent can perform, with examples and property references."
51
51
},
52
52
"propertyReference": {
53
53
"type": "object",
54
54
"required": [
55
55
"path"
56
56
],
57
57
"properties": {
58
58
"ref": {
59
59
"ref": "com.atproto.repo.strongRef",
60
60
"type": "ref",
61
61
"description": "Strong reference to a record that contains the example data."
62
62
},
63
63
"path": {
64
64
"type": "string",
65
65
"description": "JSONPath-like dotted path into the resolved example tree, e.g. '.examples[].value.payload.value.user_data'."
66
66
}
67
67
},
68
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."
69
69
}
70
70
},
71
71
"$type": "com.atproto.lexicon.schema",
72
72
"lexicon": 1
73
73
}