-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathskill.schema.json
More file actions
67 lines (67 loc) · 1.58 KB
/
Copy pathskill.schema.json
File metadata and controls
67 lines (67 loc) · 1.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/meteor/agent-skills/blob/main/skill.schema.json",
"title": "Meteor Agent Skill frontmatter",
"type": "object",
"required": ["name", "description", "metadata"],
"additionalProperties": true,
"properties": {
"name": {
"type": "string",
"pattern": "^[a-z0-9](?:[a-z0-9-]{0,62}[a-z0-9])?$",
"maxLength": 64
},
"description": {
"type": "string",
"minLength": 32,
"maxLength": 1024
},
"license": {
"type": "string",
"enum": ["MIT"]
},
"metadata": {
"type": "object",
"required": ["author", "kind", "meteor", "area", "tagline"],
"additionalProperties": true,
"properties": {
"author": {
"const": "meteor"
},
"kind": {
"enum": ["knowledge", "tool", "workflow"]
},
"meteor": {
"type": "string",
"minLength": 1
},
"area": {
"type": "string",
"enum": [
"auth",
"build",
"data",
"migration",
"ops",
"security",
"testing"
]
},
"tagline": {
"type": "string",
"minLength": 16,
"maxLength": 200
},
"bundle": {
"type": "array",
"items": { "type": "string", "pattern": "^[a-z0-9-]+$" },
"uniqueItems": true
},
"docs_synced_at": {
"type": "string",
"format": "date"
}
}
}
}
}