-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext-plugin.json.example
More file actions
54 lines (54 loc) · 1.01 KB
/
context-plugin.json.example
File metadata and controls
54 lines (54 loc) · 1.01 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
{
"$schema": "https://raw.githubusercontent.com/DevWellington/opencode-context-plugin/main/config-schema.json",
"maxContexts": 5,
"debug": false,
"debounceMs": 2000,
"injection": {
"enabled": false,
"autoInject": true,
"maxContexts": 5,
"maxTokens": 8000,
"cache": {
"enabled": true,
"ttlMs": 300000
}
},
"relevanceScoring": {
"enabled": true,
"weights": {
"recency": 0.4,
"keywords": 0.35,
"affinity": 0.25
}
},
"search": {
"enabled": true,
"maxResults": 10
},
"report": {
"enabled": true,
"autoGenerate": true
},
"remoteSync": {
"enabled": false,
"provider": "s3",
"options": {
"endpoint": "",
"bucket": "",
"credentials": {}
}
},
"protected": {
"enabled": true,
"maxDays": -1
},
"globalIntelligence": {
"enabled": true,
"path": "~/.opencode/global-intelligence.md"
},
"logRotation": {
"enabled": true,
"maxFiles": 10,
"maxSizeBytes": 10485760
}
}