-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.json
More file actions
30 lines (30 loc) · 1.12 KB
/
Copy pathschema.json
File metadata and controls
30 lines (30 loc) · 1.12 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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/SK-DEV-AI/opencode-slim-system/master/schema.json",
"title": "opencode-slim-system plugin options",
"description": "Configuration schema for the opencode-slim-system plugin options in opencode.jsonc",
"version": 2,
"type": "object",
"properties": {
"exclude": {
"description": "Tool IDs to keep at original stock descriptions (not slimmed)",
"type": "array",
"items": { "type": "string" },
"uniqueItems": true
},
"tools": {
"description": "Inline description overrides for any tool ID (built-in or plugin). Highest priority.",
"type": "object",
"additionalProperties": { "type": "string" }
},
"toolsDir": {
"description": "Custom path to a directory of {id}.txt tool description files. Default: ~/.config/opencode/slim-system/tool/",
"type": "string"
},
"reset": {
"description": "When true, wipes the config directory and reseeds from embedded defaults on next restart.",
"type": "boolean"
}
},
"additionalProperties": false
}