-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAGILE_BACKLOG.json
More file actions
482 lines (482 loc) · 13.5 KB
/
AGILE_BACKLOG.json
File metadata and controls
482 lines (482 loc) · 13.5 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
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
{
"project": "Writer's Block Assistant",
"description": "Following Semantic Seed Venture Studio's XP-oriented development standards with focus on BDD/TDD",
"epics": [
{
"id": "E1",
"name": "Infrastructure Foundation",
"valueStatement": "Build secure, scalable infrastructure for the application",
"securityImpact": "High",
"stories": [
{
"id": "IF-001",
"name": "Tenant Schema Setup",
"points": 3,
"type": "Feature",
"branch": "feature/MT-001",
"bddScenarios": [
{
"feature": "Multi-tenant Schema",
"scenarios": [
{
"name": "Schema creation",
"given": "tenant onboarding request",
"when": "creating schema",
"then": "isolated schema created",
"and": "baseline tables added"
}
]
}
],
"acceptanceCriteria": [
"Schema isolation",
"Table creation",
"Migration system"
],
"testStrategy": [
"Unit Tests: Schema",
"Integration Tests: Isolation",
"Migration Tests: Updates"
]
},
{
"id": "IF-002",
"name": "Tenant Configuration API",
"points": 2,
"type": "Feature",
"branch": "feature/MT-002"
},
{
"id": "IF-003",
"name": "Tenant Data Isolation",
"points": 3,
"type": "Feature",
"branch": "feature/MT-003"
},
{
"id": "IF-004",
"name": "Role Management API",
"points": 3,
"type": "Feature",
"branch": "feature/RBAC-001"
},
{
"id": "IF-005",
"name": "Permission Assignment",
"points": 2,
"type": "Feature",
"branch": "feature/RBAC-002"
},
{
"id": "IF-006",
"name": "Role Hierarchy",
"points": 3,
"type": "Feature",
"branch": "feature/RBAC-003"
},
{
"id": "IF-007",
"name": "Vector Storage Setup",
"points": 3,
"type": "Feature",
"branch": "feature/DB-001"
},
{
"id": "IF-008",
"name": "Data Partitioning",
"points": 3,
"type": "Feature",
"branch": "feature/DB-002"
},
{
"id": "IF-009",
"name": "Backup & Recovery",
"points": 3,
"type": "Feature",
"branch": "feature/DB-003"
}
]
},
{
"id": "E2",
"name": "Content Management",
"valueStatement": "Enable efficient content creation and management",
"stories": [
{
"id": "CM-001",
"name": "Version History Core",
"points": 3,
"type": "Feature",
"branch": "feature/CMS-001"
},
{
"id": "CM-002",
"name": "Version Comparison",
"points": 2,
"type": "Feature",
"branch": "feature/CMS-002"
},
{
"id": "CM-003",
"name": "Version Restoration",
"points": 3,
"type": "Feature",
"branch": "feature/CMS-003"
},
{
"id": "CM-004",
"name": "Format Conversion",
"points": 3,
"type": "Feature",
"branch": "feature/CMS-004"
},
{
"id": "CM-005",
"name": "Content Validation",
"points": 2,
"type": "Feature",
"branch": "feature/CMS-005"
},
{
"id": "CM-006",
"name": "Content Analysis",
"points": 3,
"type": "Feature",
"branch": "feature/CMS-006"
}
]
},
{
"id": "E3",
"name": "AI Integration",
"valueStatement": "Enable intelligent writing assistance through local AI models",
"securityImpact": "High",
"stories": [
{
"id": "AI-001",
"name": "Ollama Service Integration",
"points": 3,
"type": "Feature",
"branch": "feature/AI-001"
},
{
"id": "AI-002",
"name": "Model Management",
"points": 2,
"type": "Feature",
"branch": "feature/AI-002"
},
{
"id": "AI-003",
"name": "Inference Pipeline",
"points": 3,
"type": "Feature",
"branch": "feature/AI-003"
},
{
"id": "AI-004",
"name": "Vector Generation",
"points": 2,
"type": "Feature",
"branch": "feature/AI-004"
},
{
"id": "AI-005",
"name": "Similarity Search",
"points": 3,
"type": "Feature",
"branch": "feature/AI-005"
},
{
"id": "AI-006",
"name": "Context Ranking",
"points": 3,
"type": "Feature",
"branch": "feature/AI-006"
},
{
"id": "AI-007",
"name": "Style Profiling",
"points": 2,
"type": "Feature",
"branch": "feature/AI-007"
},
{
"id": "AI-008",
"name": "Style Checking",
"points": 3,
"type": "Feature",
"branch": "feature/AI-008"
},
{
"id": "AI-009",
"name": "Style Adaptation",
"points": 3,
"type": "Feature",
"branch": "feature/AI-009"
},
{
"id": "AI-010a",
"name": "Real Embedding Generation",
"points": 3,
"type": "Feature",
"branch": "feature/AI-010a",
"dependencies": ["AI-001", "AI-002", "AI-004"],
"bddScenarios": [
{
"feature": "Real Embedding Generation",
"scenarios": [
{
"name": "Generate embeddings for text",
"given": "text content to embed",
"when": "generating vector embeddings",
"then": "real embeddings are created with correct dimensions",
"and": "performance is under 1s per fragment"
},
{
"name": "Integration with ModelManager",
"given": "ModelManager is available",
"when": "requesting embeddings with specific model",
"then": "model is loaded via ModelManager",
"and": "embeddings are generated using that model"
},
{
"name": "Error handling",
"given": "model is unavailable",
"when": "attempting to generate embeddings",
"then": "appropriate error is raised",
"and": "error message is descriptive"
}
]
}
],
"acceptanceCriteria": [
"Real API calls to embedding models (no stubs)",
"Integration with ModelManager working",
"Embeddings generated with correct dimensions",
"Performance under 1s per text fragment",
"Basic error handling implemented",
"Unit and integration tests passing"
],
"testStrategy": [
"Unit Tests: Embedding generation logic",
"Integration Tests: ModelManager integration",
"Performance Tests: <1s per fragment SLA",
"Error Tests: Graceful failure handling"
]
},
{
"id": "AI-010b",
"name": "Embedding Cache & Multi-Model",
"points": 2,
"type": "Feature",
"branch": "feature/AI-010b",
"dependencies": ["AI-010a"],
"bddScenarios": [
{
"feature": "Embedding Cache & Multi-Model",
"scenarios": [
{
"name": "Cache frequently used embeddings",
"given": "previously embedded text",
"when": "requesting embeddings again",
"then": "cached embeddings are returned",
"and": "response time is under 100ms"
},
{
"name": "Multiple embedding models",
"given": "different embedding models available",
"when": "selecting specific model",
"then": "embeddings use that model",
"and": "dimensions match model specifications"
},
{
"name": "Cache invalidation",
"given": "cached embeddings",
"when": "cache size limit reached",
"then": "least recently used embeddings evicted",
"and": "cache remains performant"
}
]
}
],
"acceptanceCriteria": [
"Caching for frequently used embeddings",
"<100ms for cached embeddings",
"Support for multiple embedding models",
"Dynamic dimension handling",
"Cache hit/miss metrics tracked",
"Performance SLAs met"
],
"testStrategy": [
"Cache Tests: Hit/miss scenarios",
"Performance Tests: <100ms for cached",
"Multi-model Tests: Different models and dimensions",
"Metrics Tests: Cache statistics tracking"
]
}
]
},
{
"id": "E4",
"name": "Knowledge Management",
"valueStatement": "Create and maintain knowledge structures from content",
"stories": [
{
"id": "KM-001",
"name": "Vault Sync Core",
"points": 3,
"type": "Feature",
"branch": "feature/KM-001"
},
{
"id": "KM-002",
"name": "Markdown Processing",
"points": 2,
"type": "Feature",
"branch": "feature/KM-002"
},
{
"id": "KM-003",
"name": "Metadata Management",
"points": 3,
"type": "Feature",
"branch": "feature/KM-003"
},
{
"id": "KM-004",
"name": "Conflict Resolution",
"points": 3,
"type": "Feature",
"branch": "feature/KM-004"
},
{
"id": "KM-005",
"name": "Graph Core",
"points": 3,
"type": "Feature",
"branch": "feature/KM-005"
},
{
"id": "KM-006",
"name": "Graph Visualization",
"points": 3,
"type": "Feature",
"branch": "feature/KM-006"
},
{
"id": "KM-007",
"name": "Graph Search",
"points": 2,
"type": "Feature",
"branch": "feature/KM-007"
},
{
"id": "KM-008",
"name": "Graph Analytics",
"points": 3,
"type": "Feature",
"branch": "feature/KM-008"
}
]
},
{
"id": "E5",
"name": "VSCode Extension",
"valueStatement": "Provide seamless writing assistance within VSCode",
"stories": [
{
"id": "VSC-001",
"name": "Command Integration",
"points": 2,
"type": "Feature",
"branch": "feature/VSC-001"
},
{
"id": "VSC-002",
"name": "Custom Views",
"points": 3,
"type": "Feature",
"branch": "feature/VSC-002"
},
{
"id": "VSC-003",
"name": "Input Handling",
"points": 3,
"type": "Feature",
"branch": "feature/VSC-003"
},
{
"id": "VSC-004",
"name": "WebSocket Core",
"points": 3,
"type": "Feature",
"branch": "feature/VSC-004"
},
{
"id": "VSC-005",
"name": "Live Suggestions",
"points": 3,
"type": "Feature",
"branch": "feature/VSC-005"
},
{
"id": "VSC-006",
"name": "Collaboration",
"points": 3,
"type": "Feature",
"branch": "feature/VSC-006"
},
{
"id": "VSC-007",
"name": "Performance Optimization",
"points": 2,
"type": "Feature",
"branch": "feature/VSC-007"
}
]
},
{
"id": "E6",
"name": "Enterprise Features",
"valueStatement": "Provide enterprise-grade security, compliance, and analytics",
"stories": [
{
"id": "ENT-001",
"name": "Usage Tracking",
"points": 3,
"type": "Feature",
"branch": "feature/ENT-001"
},
{
"id": "ENT-002",
"name": "Performance Monitoring",
"points": 3,
"type": "Feature",
"branch": "feature/ENT-002"
},
{
"id": "ENT-003",
"name": "Analytics Dashboard",
"points": 2,
"type": "Feature",
"branch": "feature/ENT-003"
}
]
}
],
"definitionOfReady": [
"Story has clear acceptance criteria",
"Dependencies are identified",
"Technical approach is understood",
"Story is estimated and sized ≤3 points",
"Test scenarios are defined"
],
"definitionOfDone": [
"Code is reviewed and approved",
"Tests are passing",
"Documentation is updated",
"Acceptance criteria met",
"Performance requirements met"
]
}