-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cursorrules
265 lines (252 loc) · 7.64 KB
/
.cursorrules
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
/_
Package architecture defines the core architectural guidelines and patterns
for AI assistance in this Go project. It emphasizes clean code, controlled
changes, and clear communication patterns.
_/
package architecture
// Guidelines defines the core architectural rules and patterns
// for AI assistance in this project
var Guidelines = struct {
// ChangeManagement defines rules for how code modifications should be handled
ChangeManagement struct {
// Principles defines core tenets for making changes
Principles []string
// UpdateStrategy defines how changes should be implemented
UpdateStrategy struct {
PreferredApproach string
Methodology []string
Scope map[string]string
}
// Validation defines requirements for validating changes
Validation struct {
Required []string
}
}
// CodeStandards defines code quality requirements and patterns
CodeStandards struct {
// Structure defines code organization rules
Structure struct {
PackageOrganization string
InterfaceDesign string
ErrorHandling string
}
// Documentation defines documentation requirements
Documentation struct {
Required []string
Style string
}
// Patterns provides example patterns to follow
Patterns struct {
Interface string
Error string
Handler string
}
}
// AIProtocols defines how AI should interact with the codebase
AIProtocols struct {
// BeforeModifying lists steps required before making changes
BeforeModifying []string
// DuringImplementation lists requirements while making changes
DuringImplementation []string
// Communication defines how AI should communicate about changes
Communication struct {
Required []string
Clarification struct {
When []string
How string
}
}
}
}{
ChangeManagement: struct {
Principles []string
UpdateStrategy struct {
PreferredApproach string
Methodology []string
Scope map[string]string
}
Validation struct {
Required []string
}
}{
Principles: []string{
"Make minimal, precise changes",
"Verify before modifying",
"Document all changes",
"Test thoroughly",
},
UpdateStrategy: struct {
PreferredApproach string
Methodology []string
Scope map[string]string
}{
PreferredApproach: "incremental",
Methodology: []string{
"Identify specific section to modify",
"Verify surrounding dependencies",
"Make targeted change",
"Validate change does not affect other components",
},
Scope: map[string]string{
"minimal": "Single function or method update",
"moderate": "Package-level modification",
"major": "Must be broken into smaller changes",
},
},
Validation: struct {
Required []string
}{
Required: []string{
"Interface compliance",
"Error handling",
"Documentation updates",
"Test coverage",
},
},
},
CodeStandards: struct {
Structure struct {
PackageOrganization string
InterfaceDesign string
ErrorHandling string
}
Documentation struct {
Required []string
Style string
}
Patterns struct {
Interface string
Error string
Handler string
}
}{
Structure: struct {
PackageOrganization string
InterfaceDesign string
ErrorHandling string
}{
PackageOrganization: "Small, focused packages with clear responsibilities",
InterfaceDesign: "Small interfaces, composition over inheritance",
ErrorHandling: "Use error wrapping, provide context",
},
Documentation: struct {
Required []string
Style string
}{
Required: []string{
"Package purpose",
"Interface contracts",
"Error scenarios",
"Usage examples",
},
Style: "Explain why, not what",
},
Patterns: struct {
Interface string
Error string
Handler string
}{
Interface: `
// Agent represents an autonomous agent in the system
type Agent interface {
// Process handles incoming tasks and returns results
// It may return ErrInvalidTask if the task cannot be processed
Process(ctx context.Context, task Task) (Result, error)
// Status returns the current agent status
Status() AgentStatus
}
`,
Error: `
// Example error handling pattern
if err != nil {
return fmt.Errorf("processing task %s: %w", task.ID, err)
}
`,
Handler: `
// Example handler pattern
func (agent *Agent) HandleTask(ctx context.Context, task Task) (Result, error) {
// Pre-conditions
if err := task.Validate(); err != nil {
return Result{}, fmt.Errorf("invalid task: %w", err)
}
// Core logic
result, err := agent.process(ctx, task)
if err != nil {
return Result{}, fmt.Errorf("processing task: %w", err)
}
// Post-conditions
if err := result.Validate(); err != nil {
return Result{}, fmt.Errorf("invalid result: %w", err)
}
return result, nil
}
`,
},
},
AIProtocols: struct {
BeforeModifying []string
DuringImplementation []string
Communication struct {
Required []string
Clarification struct {
When []string
How string
}
}
}{
BeforeModifying: []string{
"Understand full context",
"Identify minimal change set",
"Verify interface compliance",
"Plan rollback strategy",
},
DuringImplementation: []string{
"Follow Go idioms and patterns",
"Maintain interface contracts",
"Document changes inline",
"Handle all error cases",
},
Communication: struct {
Required []string
Clarification struct {
When []string
How string
}
}{
Required: []string{
"Explicit assumptions",
"Clear limitations",
"Specific questions",
"Validation needs",
},
Clarification: struct {
When []string
How string
}{
When: []string{
"Ambiguous requirements",
"Missing context",
"Multiple approaches possible",
"High-risk changes",
},
How: "Ask specific, targeted questions about interfaces and behaviors",
},
},
},
}
// Example validation function
func ValidateChange(change struct {
Type string
Files []string
Description string
}) error {
// Implementation would verify change against guidelines
return nil
}
// Example error creation function
func CreateError(code string, message string, context error) error {
if context != nil {
return fmt.Errorf("%s: %s: %w", code, message, context)
}
return fmt.Errorf("%s: %s", code, message)
}