forked from xLDVx/swarms-task-koii
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcursor.config.json
More file actions
59 lines (59 loc) · 2.06 KB
/
cursor.config.json
File metadata and controls
59 lines (59 loc) · 2.06 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
{
"project": {
"name": "BTC-Koii",
"description": "Bitcoin mining pools on Koii Network",
"rules": {
"planAdherence": true,
"documentDeviations": true,
"protectMasterPlan": true,
"enforcePhaseStructure": true
}
},
"aiAgent": {
"guidance": [
{
"directive": "plan_adherence",
"instruction": "Only implement features specified in the plan documents. For anything not in the plan, suggest creating a plan_update.md in the appropriate phase directory."
},
{
"directive": "phase_boundaries",
"instruction": "Respect phase boundaries and do not modify files across different phase directories without explicit instruction."
},
{
"directive": "documentation",
"instruction": "Document code thoroughly and ensure all implementations reference the specific plan sections they fulfill."
},
{
"directive": "testing",
"instruction": "Ensure tests validate both original requirements and any approved modifications."
},
{
"directive": "obstacle_handling",
"instruction": "When encountering technical obstacles, document them in a plan_update.md file with considered alternatives and chosen solutions."
}
],
"requiredContext": [
"/plan.md",
"/phase-0/plan.md",
"/directives/*.md"
],
"prohibitedActions": [
"Modifying master plan",
"Implementing features not in plan without documentation",
"Crossing phase boundaries",
"Hallucinating project requirements"
]
},
"integrations": {
"knoSdk": {
"enabled": true,
"embeddingPath": "/.kno",
"useDirectiveEmbeddings": true
}
},
"toolConfig": {
"suggestions": "Only suggest implementations that conform to plan documents",
"completions": "Include references to plan sections in code comments",
"codeGeneration": "Validate all generated code against plan requirements"
}
}