tribunal-kit 5.7.0 → 5.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/.agent/ARCHITECTURE.md +6 -7
  2. package/.agent/agents/frontend-reviewer.md +13 -0
  3. package/.agent/agents/frontend-specialist.md +14 -0
  4. package/.agent/agents/logic-reviewer.md +11 -0
  5. package/.agent/agents/orchestrator.md +15 -0
  6. package/.agent/agents/project-planner.md +5 -0
  7. package/.agent/agents/security-auditor.md +13 -0
  8. package/.agent/agents/ui-ux-auditor.md +7 -31
  9. package/.agent/history/memory/.memory.idx +1693 -0
  10. package/.agent/history/memory/MEMORY.md +123 -0
  11. package/.agent/routing_index.json +694 -714
  12. package/.agent/rules/GEMINI.md +88 -13
  13. package/.agent/scripts/_colors.js +131 -89
  14. package/.agent/scripts/_utils.js +163 -128
  15. package/.agent/scripts/auto_preview.js +207 -197
  16. package/.agent/scripts/bundle_analyzer.js +227 -192
  17. package/.agent/scripts/case_law_manager.js +991 -689
  18. package/.agent/scripts/checklist.js +233 -190
  19. package/.agent/scripts/context_broker.js +930 -605
  20. package/.agent/scripts/dependency_analyzer.js +275 -184
  21. package/.agent/scripts/graph_builder.js +412 -341
  22. package/.agent/scripts/graph_visualizer.js +392 -390
  23. package/.agent/scripts/graph_zoom.js +198 -156
  24. package/.agent/scripts/inner_loop_validator.js +523 -445
  25. package/.agent/scripts/lint_runner.js +199 -157
  26. package/.agent/scripts/marathon_harness.js +819 -661
  27. package/.agent/scripts/minify_context.js +115 -100
  28. package/.agent/scripts/mutation_runner.js +321 -280
  29. package/.agent/scripts/prompt_compiler.js +62 -42
  30. package/.agent/scripts/schema_validator.js +373 -280
  31. package/.agent/scripts/security_scan.js +333 -190
  32. package/.agent/scripts/session_manager.js +306 -270
  33. package/.agent/scripts/skill_evolution.js +810 -637
  34. package/.agent/scripts/skill_integrator.js +327 -307
  35. package/.agent/scripts/strengthen_skills.js +203 -193
  36. package/.agent/scripts/swarm_dispatcher.js +558 -457
  37. package/.agent/scripts/test_runner.js +178 -152
  38. package/.agent/scripts/verify_all.js +200 -168
  39. package/.agent/skills/fabel-protocol/SKILL.md +271 -0
  40. package/.agent/skills/thinking-protocol/SKILL.md +27 -0
  41. package/.agent/workflows/generate.md +2 -1
  42. package/.agent/workflows/tribunal-full.md +4 -3
  43. package/.agent/workflows/tribunal-speed.md +1 -1
  44. package/README.md +184 -58
  45. package/bin/mcp-server.js +496 -173
  46. package/bin/tribunal-kit.js +1245 -987
  47. package/bin/wrapper.js +108 -74
  48. package/dist/cli.js +44 -0
  49. package/dist/commands/align.js +201 -0
  50. package/dist/commands/case.js +23 -0
  51. package/dist/commands/compile.js +84 -0
  52. package/dist/commands/init.js +42 -0
  53. package/dist/commands/learn.js +57 -0
  54. package/dist/commands/memory.js +456 -0
  55. package/package.json +22 -10
  56. package/scripts/benchmark.js +162 -125
  57. package/scripts/changelog.js +196 -168
  58. package/scripts/sync-version.js +94 -81
  59. package/scripts/validate-payload.js +85 -78
@@ -0,0 +1,1693 @@
1
+ {
2
+ "version": 1,
3
+ "entries": [
4
+ {
5
+ "id": 1,
6
+ "memory_type": "semantic",
7
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
8
+ "tags": [
9
+ "project-idiom",
10
+ "auto-learned"
11
+ ],
12
+ "created_at": "1783147927Z",
13
+ "last_accessed": "1783147927Z",
14
+ "access_count": 0,
15
+ "token_estimate": 32,
16
+ "source": "manual",
17
+ "session_id": null
18
+ },
19
+ {
20
+ "id": 2,
21
+ "memory_type": "semantic",
22
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
23
+ "tags": [
24
+ "project-idiom",
25
+ "auto-learned"
26
+ ],
27
+ "created_at": "1783147927Z",
28
+ "last_accessed": "1783147927Z",
29
+ "access_count": 0,
30
+ "token_estimate": 34,
31
+ "source": "manual",
32
+ "session_id": null
33
+ },
34
+ {
35
+ "id": 3,
36
+ "memory_type": "semantic",
37
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
38
+ "tags": [
39
+ "project-idiom",
40
+ "auto-learned"
41
+ ],
42
+ "created_at": "1783147927Z",
43
+ "last_accessed": "1783147927Z",
44
+ "access_count": 0,
45
+ "token_estimate": 20,
46
+ "source": "manual",
47
+ "session_id": null
48
+ },
49
+ {
50
+ "id": 4,
51
+ "memory_type": "semantic",
52
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
53
+ "tags": [
54
+ "project-idiom",
55
+ "auto-learned"
56
+ ],
57
+ "created_at": "1783147927Z",
58
+ "last_accessed": "1783147927Z",
59
+ "access_count": 0,
60
+ "token_estimate": 54,
61
+ "source": "manual",
62
+ "session_id": null
63
+ },
64
+ {
65
+ "id": 5,
66
+ "memory_type": "semantic",
67
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
68
+ "tags": [
69
+ "project-idiom",
70
+ "auto-learned"
71
+ ],
72
+ "created_at": "1783147927Z",
73
+ "last_accessed": "1783147927Z",
74
+ "access_count": 0,
75
+ "token_estimate": 17,
76
+ "source": "manual",
77
+ "session_id": null
78
+ },
79
+ {
80
+ "id": 6,
81
+ "memory_type": "semantic",
82
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
83
+ "tags": [
84
+ "project-idiom",
85
+ "auto-learned"
86
+ ],
87
+ "created_at": "1783147927Z",
88
+ "last_accessed": "1783147927Z",
89
+ "access_count": 0,
90
+ "token_estimate": 19,
91
+ "source": "manual",
92
+ "session_id": null
93
+ },
94
+ {
95
+ "id": 7,
96
+ "memory_type": "semantic",
97
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
98
+ "tags": [
99
+ "project-idiom",
100
+ "auto-learned"
101
+ ],
102
+ "created_at": "1783147927Z",
103
+ "last_accessed": "1783147927Z",
104
+ "access_count": 0,
105
+ "token_estimate": 20,
106
+ "source": "manual",
107
+ "session_id": null
108
+ },
109
+ {
110
+ "id": 8,
111
+ "memory_type": "semantic",
112
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
113
+ "tags": [
114
+ "project-idiom",
115
+ "auto-learned"
116
+ ],
117
+ "created_at": "1783147927Z",
118
+ "last_accessed": "1783147927Z",
119
+ "access_count": 0,
120
+ "token_estimate": 54,
121
+ "source": "manual",
122
+ "session_id": null
123
+ },
124
+ {
125
+ "id": 9,
126
+ "memory_type": "procedural",
127
+ "content": "Run `echo 'No build step required for this project'` to build the project",
128
+ "tags": [
129
+ "build-script",
130
+ "build",
131
+ "auto-learned"
132
+ ],
133
+ "created_at": "1783147927Z",
134
+ "last_accessed": "1783147927Z",
135
+ "access_count": 0,
136
+ "token_estimate": 19,
137
+ "source": "manual",
138
+ "session_id": null
139
+ },
140
+ {
141
+ "id": 10,
142
+ "memory_type": "procedural",
143
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
144
+ "tags": [
145
+ "build-script",
146
+ "test",
147
+ "auto-learned"
148
+ ],
149
+ "created_at": "1783147927Z",
150
+ "last_accessed": "1783147927Z",
151
+ "access_count": 0,
152
+ "token_estimate": 18,
153
+ "source": "manual",
154
+ "session_id": null
155
+ },
156
+ {
157
+ "id": 11,
158
+ "memory_type": "semantic",
159
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
160
+ "tags": [
161
+ "project-idiom",
162
+ "auto-learned"
163
+ ],
164
+ "created_at": "1783148175Z",
165
+ "last_accessed": "1783148175Z",
166
+ "access_count": 0,
167
+ "token_estimate": 32,
168
+ "source": "manual",
169
+ "session_id": null
170
+ },
171
+ {
172
+ "id": 12,
173
+ "memory_type": "semantic",
174
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
175
+ "tags": [
176
+ "project-idiom",
177
+ "auto-learned"
178
+ ],
179
+ "created_at": "1783148175Z",
180
+ "last_accessed": "1783148175Z",
181
+ "access_count": 0,
182
+ "token_estimate": 34,
183
+ "source": "manual",
184
+ "session_id": null
185
+ },
186
+ {
187
+ "id": 13,
188
+ "memory_type": "semantic",
189
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
190
+ "tags": [
191
+ "project-idiom",
192
+ "auto-learned"
193
+ ],
194
+ "created_at": "1783148175Z",
195
+ "last_accessed": "1783148175Z",
196
+ "access_count": 0,
197
+ "token_estimate": 20,
198
+ "source": "manual",
199
+ "session_id": null
200
+ },
201
+ {
202
+ "id": 14,
203
+ "memory_type": "semantic",
204
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
205
+ "tags": [
206
+ "project-idiom",
207
+ "auto-learned"
208
+ ],
209
+ "created_at": "1783148175Z",
210
+ "last_accessed": "1783148175Z",
211
+ "access_count": 0,
212
+ "token_estimate": 54,
213
+ "source": "manual",
214
+ "session_id": null
215
+ },
216
+ {
217
+ "id": 15,
218
+ "memory_type": "semantic",
219
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
220
+ "tags": [
221
+ "project-idiom",
222
+ "auto-learned"
223
+ ],
224
+ "created_at": "1783148175Z",
225
+ "last_accessed": "1783148175Z",
226
+ "access_count": 0,
227
+ "token_estimate": 17,
228
+ "source": "manual",
229
+ "session_id": null
230
+ },
231
+ {
232
+ "id": 16,
233
+ "memory_type": "semantic",
234
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
235
+ "tags": [
236
+ "project-idiom",
237
+ "auto-learned"
238
+ ],
239
+ "created_at": "1783148175Z",
240
+ "last_accessed": "1783148175Z",
241
+ "access_count": 0,
242
+ "token_estimate": 19,
243
+ "source": "manual",
244
+ "session_id": null
245
+ },
246
+ {
247
+ "id": 17,
248
+ "memory_type": "semantic",
249
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
250
+ "tags": [
251
+ "project-idiom",
252
+ "auto-learned"
253
+ ],
254
+ "created_at": "1783148175Z",
255
+ "last_accessed": "1783148175Z",
256
+ "access_count": 0,
257
+ "token_estimate": 20,
258
+ "source": "manual",
259
+ "session_id": null
260
+ },
261
+ {
262
+ "id": 18,
263
+ "memory_type": "semantic",
264
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
265
+ "tags": [
266
+ "project-idiom",
267
+ "auto-learned"
268
+ ],
269
+ "created_at": "1783148175Z",
270
+ "last_accessed": "1783148175Z",
271
+ "access_count": 0,
272
+ "token_estimate": 54,
273
+ "source": "manual",
274
+ "session_id": null
275
+ },
276
+ {
277
+ "id": 19,
278
+ "memory_type": "procedural",
279
+ "content": "Run `echo 'No build step required for this project'` to build the project",
280
+ "tags": [
281
+ "build-script",
282
+ "build",
283
+ "auto-learned"
284
+ ],
285
+ "created_at": "1783148175Z",
286
+ "last_accessed": "1783148175Z",
287
+ "access_count": 0,
288
+ "token_estimate": 19,
289
+ "source": "manual",
290
+ "session_id": null
291
+ },
292
+ {
293
+ "id": 20,
294
+ "memory_type": "procedural",
295
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
296
+ "tags": [
297
+ "build-script",
298
+ "test",
299
+ "auto-learned"
300
+ ],
301
+ "created_at": "1783148175Z",
302
+ "last_accessed": "1783148175Z",
303
+ "access_count": 0,
304
+ "token_estimate": 18,
305
+ "source": "manual",
306
+ "session_id": null
307
+ },
308
+ {
309
+ "id": 21,
310
+ "memory_type": "semantic",
311
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
312
+ "tags": [
313
+ "project-idiom",
314
+ "auto-learned"
315
+ ],
316
+ "created_at": "1783148243Z",
317
+ "last_accessed": "1783148243Z",
318
+ "access_count": 0,
319
+ "token_estimate": 32,
320
+ "source": "manual",
321
+ "session_id": null
322
+ },
323
+ {
324
+ "id": 22,
325
+ "memory_type": "semantic",
326
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
327
+ "tags": [
328
+ "project-idiom",
329
+ "auto-learned"
330
+ ],
331
+ "created_at": "1783148244Z",
332
+ "last_accessed": "1783148244Z",
333
+ "access_count": 0,
334
+ "token_estimate": 34,
335
+ "source": "manual",
336
+ "session_id": null
337
+ },
338
+ {
339
+ "id": 23,
340
+ "memory_type": "semantic",
341
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
342
+ "tags": [
343
+ "project-idiom",
344
+ "auto-learned"
345
+ ],
346
+ "created_at": "1783148244Z",
347
+ "last_accessed": "1783148244Z",
348
+ "access_count": 0,
349
+ "token_estimate": 20,
350
+ "source": "manual",
351
+ "session_id": null
352
+ },
353
+ {
354
+ "id": 24,
355
+ "memory_type": "semantic",
356
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
357
+ "tags": [
358
+ "project-idiom",
359
+ "auto-learned"
360
+ ],
361
+ "created_at": "1783148244Z",
362
+ "last_accessed": "1783148244Z",
363
+ "access_count": 0,
364
+ "token_estimate": 54,
365
+ "source": "manual",
366
+ "session_id": null
367
+ },
368
+ {
369
+ "id": 25,
370
+ "memory_type": "semantic",
371
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
372
+ "tags": [
373
+ "project-idiom",
374
+ "auto-learned"
375
+ ],
376
+ "created_at": "1783148244Z",
377
+ "last_accessed": "1783148244Z",
378
+ "access_count": 0,
379
+ "token_estimate": 17,
380
+ "source": "manual",
381
+ "session_id": null
382
+ },
383
+ {
384
+ "id": 26,
385
+ "memory_type": "semantic",
386
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
387
+ "tags": [
388
+ "project-idiom",
389
+ "auto-learned"
390
+ ],
391
+ "created_at": "1783148244Z",
392
+ "last_accessed": "1783148244Z",
393
+ "access_count": 0,
394
+ "token_estimate": 19,
395
+ "source": "manual",
396
+ "session_id": null
397
+ },
398
+ {
399
+ "id": 27,
400
+ "memory_type": "semantic",
401
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
402
+ "tags": [
403
+ "project-idiom",
404
+ "auto-learned"
405
+ ],
406
+ "created_at": "1783148244Z",
407
+ "last_accessed": "1783148244Z",
408
+ "access_count": 0,
409
+ "token_estimate": 20,
410
+ "source": "manual",
411
+ "session_id": null
412
+ },
413
+ {
414
+ "id": 28,
415
+ "memory_type": "semantic",
416
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
417
+ "tags": [
418
+ "project-idiom",
419
+ "auto-learned"
420
+ ],
421
+ "created_at": "1783148244Z",
422
+ "last_accessed": "1783148244Z",
423
+ "access_count": 0,
424
+ "token_estimate": 54,
425
+ "source": "manual",
426
+ "session_id": null
427
+ },
428
+ {
429
+ "id": 29,
430
+ "memory_type": "procedural",
431
+ "content": "Run `echo 'No build step required for this project'` to build the project",
432
+ "tags": [
433
+ "build-script",
434
+ "build",
435
+ "auto-learned"
436
+ ],
437
+ "created_at": "1783148244Z",
438
+ "last_accessed": "1783148244Z",
439
+ "access_count": 0,
440
+ "token_estimate": 19,
441
+ "source": "manual",
442
+ "session_id": null
443
+ },
444
+ {
445
+ "id": 30,
446
+ "memory_type": "procedural",
447
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
448
+ "tags": [
449
+ "build-script",
450
+ "test",
451
+ "auto-learned"
452
+ ],
453
+ "created_at": "1783148244Z",
454
+ "last_accessed": "1783148244Z",
455
+ "access_count": 0,
456
+ "token_estimate": 18,
457
+ "source": "manual",
458
+ "session_id": null
459
+ },
460
+ {
461
+ "id": 31,
462
+ "memory_type": "semantic",
463
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
464
+ "tags": [
465
+ "project-idiom",
466
+ "auto-learned"
467
+ ],
468
+ "created_at": "1783148917Z",
469
+ "last_accessed": "1783148917Z",
470
+ "access_count": 0,
471
+ "token_estimate": 32,
472
+ "source": "manual",
473
+ "session_id": null
474
+ },
475
+ {
476
+ "id": 32,
477
+ "memory_type": "semantic",
478
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
479
+ "tags": [
480
+ "project-idiom",
481
+ "auto-learned"
482
+ ],
483
+ "created_at": "1783148917Z",
484
+ "last_accessed": "1783148917Z",
485
+ "access_count": 0,
486
+ "token_estimate": 34,
487
+ "source": "manual",
488
+ "session_id": null
489
+ },
490
+ {
491
+ "id": 33,
492
+ "memory_type": "semantic",
493
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
494
+ "tags": [
495
+ "project-idiom",
496
+ "auto-learned"
497
+ ],
498
+ "created_at": "1783148917Z",
499
+ "last_accessed": "1783148917Z",
500
+ "access_count": 0,
501
+ "token_estimate": 20,
502
+ "source": "manual",
503
+ "session_id": null
504
+ },
505
+ {
506
+ "id": 34,
507
+ "memory_type": "semantic",
508
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
509
+ "tags": [
510
+ "project-idiom",
511
+ "auto-learned"
512
+ ],
513
+ "created_at": "1783148917Z",
514
+ "last_accessed": "1783148917Z",
515
+ "access_count": 0,
516
+ "token_estimate": 54,
517
+ "source": "manual",
518
+ "session_id": null
519
+ },
520
+ {
521
+ "id": 35,
522
+ "memory_type": "semantic",
523
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
524
+ "tags": [
525
+ "project-idiom",
526
+ "auto-learned"
527
+ ],
528
+ "created_at": "1783148917Z",
529
+ "last_accessed": "1783148917Z",
530
+ "access_count": 0,
531
+ "token_estimate": 17,
532
+ "source": "manual",
533
+ "session_id": null
534
+ },
535
+ {
536
+ "id": 36,
537
+ "memory_type": "semantic",
538
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
539
+ "tags": [
540
+ "project-idiom",
541
+ "auto-learned"
542
+ ],
543
+ "created_at": "1783148917Z",
544
+ "last_accessed": "1783148917Z",
545
+ "access_count": 0,
546
+ "token_estimate": 19,
547
+ "source": "manual",
548
+ "session_id": null
549
+ },
550
+ {
551
+ "id": 37,
552
+ "memory_type": "semantic",
553
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
554
+ "tags": [
555
+ "project-idiom",
556
+ "auto-learned"
557
+ ],
558
+ "created_at": "1783148917Z",
559
+ "last_accessed": "1783148917Z",
560
+ "access_count": 0,
561
+ "token_estimate": 20,
562
+ "source": "manual",
563
+ "session_id": null
564
+ },
565
+ {
566
+ "id": 38,
567
+ "memory_type": "semantic",
568
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
569
+ "tags": [
570
+ "project-idiom",
571
+ "auto-learned"
572
+ ],
573
+ "created_at": "1783148917Z",
574
+ "last_accessed": "1783148917Z",
575
+ "access_count": 0,
576
+ "token_estimate": 54,
577
+ "source": "manual",
578
+ "session_id": null
579
+ },
580
+ {
581
+ "id": 39,
582
+ "memory_type": "procedural",
583
+ "content": "Run `echo 'No build step required for this project'` to build the project",
584
+ "tags": [
585
+ "build-script",
586
+ "build",
587
+ "auto-learned"
588
+ ],
589
+ "created_at": "1783148917Z",
590
+ "last_accessed": "1783148917Z",
591
+ "access_count": 0,
592
+ "token_estimate": 19,
593
+ "source": "manual",
594
+ "session_id": null
595
+ },
596
+ {
597
+ "id": 40,
598
+ "memory_type": "procedural",
599
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
600
+ "tags": [
601
+ "build-script",
602
+ "test",
603
+ "auto-learned"
604
+ ],
605
+ "created_at": "1783148917Z",
606
+ "last_accessed": "1783148917Z",
607
+ "access_count": 0,
608
+ "token_estimate": 18,
609
+ "source": "manual",
610
+ "session_id": null
611
+ },
612
+ {
613
+ "id": 41,
614
+ "memory_type": "semantic",
615
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
616
+ "tags": [
617
+ "project-idiom",
618
+ "auto-learned"
619
+ ],
620
+ "created_at": "1783152364Z",
621
+ "last_accessed": "1783152364Z",
622
+ "access_count": 0,
623
+ "token_estimate": 32,
624
+ "source": "manual",
625
+ "session_id": null
626
+ },
627
+ {
628
+ "id": 42,
629
+ "memory_type": "semantic",
630
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
631
+ "tags": [
632
+ "project-idiom",
633
+ "auto-learned"
634
+ ],
635
+ "created_at": "1783152364Z",
636
+ "last_accessed": "1783152364Z",
637
+ "access_count": 0,
638
+ "token_estimate": 34,
639
+ "source": "manual",
640
+ "session_id": null
641
+ },
642
+ {
643
+ "id": 43,
644
+ "memory_type": "semantic",
645
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
646
+ "tags": [
647
+ "project-idiom",
648
+ "auto-learned"
649
+ ],
650
+ "created_at": "1783152364Z",
651
+ "last_accessed": "1783152364Z",
652
+ "access_count": 0,
653
+ "token_estimate": 20,
654
+ "source": "manual",
655
+ "session_id": null
656
+ },
657
+ {
658
+ "id": 44,
659
+ "memory_type": "semantic",
660
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
661
+ "tags": [
662
+ "project-idiom",
663
+ "auto-learned"
664
+ ],
665
+ "created_at": "1783152364Z",
666
+ "last_accessed": "1783152364Z",
667
+ "access_count": 0,
668
+ "token_estimate": 54,
669
+ "source": "manual",
670
+ "session_id": null
671
+ },
672
+ {
673
+ "id": 45,
674
+ "memory_type": "semantic",
675
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
676
+ "tags": [
677
+ "project-idiom",
678
+ "auto-learned"
679
+ ],
680
+ "created_at": "1783152364Z",
681
+ "last_accessed": "1783152364Z",
682
+ "access_count": 0,
683
+ "token_estimate": 17,
684
+ "source": "manual",
685
+ "session_id": null
686
+ },
687
+ {
688
+ "id": 46,
689
+ "memory_type": "semantic",
690
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
691
+ "tags": [
692
+ "project-idiom",
693
+ "auto-learned"
694
+ ],
695
+ "created_at": "1783152364Z",
696
+ "last_accessed": "1783152364Z",
697
+ "access_count": 0,
698
+ "token_estimate": 19,
699
+ "source": "manual",
700
+ "session_id": null
701
+ },
702
+ {
703
+ "id": 47,
704
+ "memory_type": "semantic",
705
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
706
+ "tags": [
707
+ "project-idiom",
708
+ "auto-learned"
709
+ ],
710
+ "created_at": "1783152364Z",
711
+ "last_accessed": "1783152364Z",
712
+ "access_count": 0,
713
+ "token_estimate": 20,
714
+ "source": "manual",
715
+ "session_id": null
716
+ },
717
+ {
718
+ "id": 48,
719
+ "memory_type": "semantic",
720
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
721
+ "tags": [
722
+ "project-idiom",
723
+ "auto-learned"
724
+ ],
725
+ "created_at": "1783152364Z",
726
+ "last_accessed": "1783152364Z",
727
+ "access_count": 0,
728
+ "token_estimate": 54,
729
+ "source": "manual",
730
+ "session_id": null
731
+ },
732
+ {
733
+ "id": 49,
734
+ "memory_type": "procedural",
735
+ "content": "Run `echo 'No build step required for this project'` to build the project",
736
+ "tags": [
737
+ "build-script",
738
+ "build",
739
+ "auto-learned"
740
+ ],
741
+ "created_at": "1783152364Z",
742
+ "last_accessed": "1783152364Z",
743
+ "access_count": 0,
744
+ "token_estimate": 19,
745
+ "source": "manual",
746
+ "session_id": null
747
+ },
748
+ {
749
+ "id": 50,
750
+ "memory_type": "procedural",
751
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
752
+ "tags": [
753
+ "build-script",
754
+ "test",
755
+ "auto-learned"
756
+ ],
757
+ "created_at": "1783152364Z",
758
+ "last_accessed": "1783152364Z",
759
+ "access_count": 0,
760
+ "token_estimate": 18,
761
+ "source": "manual",
762
+ "session_id": null
763
+ },
764
+ {
765
+ "id": 51,
766
+ "memory_type": "semantic",
767
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
768
+ "tags": [
769
+ "project-idiom",
770
+ "auto-learned"
771
+ ],
772
+ "created_at": "1783438387Z",
773
+ "last_accessed": "1783438387Z",
774
+ "access_count": 0,
775
+ "token_estimate": 32,
776
+ "source": "manual",
777
+ "session_id": null
778
+ },
779
+ {
780
+ "id": 52,
781
+ "memory_type": "semantic",
782
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
783
+ "tags": [
784
+ "project-idiom",
785
+ "auto-learned"
786
+ ],
787
+ "created_at": "1783438387Z",
788
+ "last_accessed": "1783438387Z",
789
+ "access_count": 0,
790
+ "token_estimate": 34,
791
+ "source": "manual",
792
+ "session_id": null
793
+ },
794
+ {
795
+ "id": 53,
796
+ "memory_type": "semantic",
797
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
798
+ "tags": [
799
+ "project-idiom",
800
+ "auto-learned"
801
+ ],
802
+ "created_at": "1783438387Z",
803
+ "last_accessed": "1783438387Z",
804
+ "access_count": 0,
805
+ "token_estimate": 20,
806
+ "source": "manual",
807
+ "session_id": null
808
+ },
809
+ {
810
+ "id": 54,
811
+ "memory_type": "semantic",
812
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
813
+ "tags": [
814
+ "project-idiom",
815
+ "auto-learned"
816
+ ],
817
+ "created_at": "1783438387Z",
818
+ "last_accessed": "1783438387Z",
819
+ "access_count": 0,
820
+ "token_estimate": 54,
821
+ "source": "manual",
822
+ "session_id": null
823
+ },
824
+ {
825
+ "id": 55,
826
+ "memory_type": "semantic",
827
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
828
+ "tags": [
829
+ "project-idiom",
830
+ "auto-learned"
831
+ ],
832
+ "created_at": "1783438387Z",
833
+ "last_accessed": "1783438387Z",
834
+ "access_count": 0,
835
+ "token_estimate": 17,
836
+ "source": "manual",
837
+ "session_id": null
838
+ },
839
+ {
840
+ "id": 56,
841
+ "memory_type": "semantic",
842
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
843
+ "tags": [
844
+ "project-idiom",
845
+ "auto-learned"
846
+ ],
847
+ "created_at": "1783438387Z",
848
+ "last_accessed": "1783438387Z",
849
+ "access_count": 0,
850
+ "token_estimate": 19,
851
+ "source": "manual",
852
+ "session_id": null
853
+ },
854
+ {
855
+ "id": 57,
856
+ "memory_type": "semantic",
857
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
858
+ "tags": [
859
+ "project-idiom",
860
+ "auto-learned"
861
+ ],
862
+ "created_at": "1783438387Z",
863
+ "last_accessed": "1783438387Z",
864
+ "access_count": 0,
865
+ "token_estimate": 20,
866
+ "source": "manual",
867
+ "session_id": null
868
+ },
869
+ {
870
+ "id": 58,
871
+ "memory_type": "semantic",
872
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
873
+ "tags": [
874
+ "project-idiom",
875
+ "auto-learned"
876
+ ],
877
+ "created_at": "1783438387Z",
878
+ "last_accessed": "1783438387Z",
879
+ "access_count": 0,
880
+ "token_estimate": 54,
881
+ "source": "manual",
882
+ "session_id": null
883
+ },
884
+ {
885
+ "id": 59,
886
+ "memory_type": "procedural",
887
+ "content": "Run `echo 'No build step required for this project'` to build the project",
888
+ "tags": [
889
+ "build-script",
890
+ "build",
891
+ "auto-learned"
892
+ ],
893
+ "created_at": "1783438387Z",
894
+ "last_accessed": "1783438387Z",
895
+ "access_count": 0,
896
+ "token_estimate": 19,
897
+ "source": "manual",
898
+ "session_id": null
899
+ },
900
+ {
901
+ "id": 60,
902
+ "memory_type": "procedural",
903
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
904
+ "tags": [
905
+ "build-script",
906
+ "test",
907
+ "auto-learned"
908
+ ],
909
+ "created_at": "1783438387Z",
910
+ "last_accessed": "1783438387Z",
911
+ "access_count": 0,
912
+ "token_estimate": 18,
913
+ "source": "manual",
914
+ "session_id": null
915
+ },
916
+ {
917
+ "id": 61,
918
+ "memory_type": "semantic",
919
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
920
+ "tags": [
921
+ "project-idiom",
922
+ "auto-learned"
923
+ ],
924
+ "created_at": "1783438449Z",
925
+ "last_accessed": "1783438449Z",
926
+ "access_count": 0,
927
+ "token_estimate": 32,
928
+ "source": "manual",
929
+ "session_id": null
930
+ },
931
+ {
932
+ "id": 62,
933
+ "memory_type": "semantic",
934
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
935
+ "tags": [
936
+ "project-idiom",
937
+ "auto-learned"
938
+ ],
939
+ "created_at": "1783438449Z",
940
+ "last_accessed": "1783438449Z",
941
+ "access_count": 0,
942
+ "token_estimate": 34,
943
+ "source": "manual",
944
+ "session_id": null
945
+ },
946
+ {
947
+ "id": 63,
948
+ "memory_type": "semantic",
949
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
950
+ "tags": [
951
+ "project-idiom",
952
+ "auto-learned"
953
+ ],
954
+ "created_at": "1783438449Z",
955
+ "last_accessed": "1783438449Z",
956
+ "access_count": 0,
957
+ "token_estimate": 20,
958
+ "source": "manual",
959
+ "session_id": null
960
+ },
961
+ {
962
+ "id": 64,
963
+ "memory_type": "semantic",
964
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
965
+ "tags": [
966
+ "project-idiom",
967
+ "auto-learned"
968
+ ],
969
+ "created_at": "1783438449Z",
970
+ "last_accessed": "1783438449Z",
971
+ "access_count": 0,
972
+ "token_estimate": 54,
973
+ "source": "manual",
974
+ "session_id": null
975
+ },
976
+ {
977
+ "id": 65,
978
+ "memory_type": "semantic",
979
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
980
+ "tags": [
981
+ "project-idiom",
982
+ "auto-learned"
983
+ ],
984
+ "created_at": "1783438449Z",
985
+ "last_accessed": "1783438449Z",
986
+ "access_count": 0,
987
+ "token_estimate": 17,
988
+ "source": "manual",
989
+ "session_id": null
990
+ },
991
+ {
992
+ "id": 66,
993
+ "memory_type": "semantic",
994
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
995
+ "tags": [
996
+ "project-idiom",
997
+ "auto-learned"
998
+ ],
999
+ "created_at": "1783438449Z",
1000
+ "last_accessed": "1783438449Z",
1001
+ "access_count": 0,
1002
+ "token_estimate": 19,
1003
+ "source": "manual",
1004
+ "session_id": null
1005
+ },
1006
+ {
1007
+ "id": 67,
1008
+ "memory_type": "semantic",
1009
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1010
+ "tags": [
1011
+ "project-idiom",
1012
+ "auto-learned"
1013
+ ],
1014
+ "created_at": "1783438449Z",
1015
+ "last_accessed": "1783438449Z",
1016
+ "access_count": 0,
1017
+ "token_estimate": 20,
1018
+ "source": "manual",
1019
+ "session_id": null
1020
+ },
1021
+ {
1022
+ "id": 68,
1023
+ "memory_type": "semantic",
1024
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1025
+ "tags": [
1026
+ "project-idiom",
1027
+ "auto-learned"
1028
+ ],
1029
+ "created_at": "1783438449Z",
1030
+ "last_accessed": "1783438449Z",
1031
+ "access_count": 0,
1032
+ "token_estimate": 54,
1033
+ "source": "manual",
1034
+ "session_id": null
1035
+ },
1036
+ {
1037
+ "id": 69,
1038
+ "memory_type": "procedural",
1039
+ "content": "Run `echo 'No build step required for this project'` to build the project",
1040
+ "tags": [
1041
+ "build-script",
1042
+ "build",
1043
+ "auto-learned"
1044
+ ],
1045
+ "created_at": "1783438449Z",
1046
+ "last_accessed": "1783438449Z",
1047
+ "access_count": 0,
1048
+ "token_estimate": 19,
1049
+ "source": "manual",
1050
+ "session_id": null
1051
+ },
1052
+ {
1053
+ "id": 70,
1054
+ "memory_type": "procedural",
1055
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
1056
+ "tags": [
1057
+ "build-script",
1058
+ "test",
1059
+ "auto-learned"
1060
+ ],
1061
+ "created_at": "1783438449Z",
1062
+ "last_accessed": "1783438449Z",
1063
+ "access_count": 0,
1064
+ "token_estimate": 18,
1065
+ "source": "manual",
1066
+ "session_id": null
1067
+ },
1068
+ {
1069
+ "id": 71,
1070
+ "memory_type": "semantic",
1071
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
1072
+ "tags": [
1073
+ "project-idiom",
1074
+ "auto-learned"
1075
+ ],
1076
+ "created_at": "1783438727Z",
1077
+ "last_accessed": "1783438727Z",
1078
+ "access_count": 0,
1079
+ "token_estimate": 32,
1080
+ "source": "manual",
1081
+ "session_id": null
1082
+ },
1083
+ {
1084
+ "id": 72,
1085
+ "memory_type": "semantic",
1086
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
1087
+ "tags": [
1088
+ "project-idiom",
1089
+ "auto-learned"
1090
+ ],
1091
+ "created_at": "1783438727Z",
1092
+ "last_accessed": "1783438727Z",
1093
+ "access_count": 0,
1094
+ "token_estimate": 34,
1095
+ "source": "manual",
1096
+ "session_id": null
1097
+ },
1098
+ {
1099
+ "id": 73,
1100
+ "memory_type": "semantic",
1101
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1102
+ "tags": [
1103
+ "project-idiom",
1104
+ "auto-learned"
1105
+ ],
1106
+ "created_at": "1783438727Z",
1107
+ "last_accessed": "1783438727Z",
1108
+ "access_count": 0,
1109
+ "token_estimate": 20,
1110
+ "source": "manual",
1111
+ "session_id": null
1112
+ },
1113
+ {
1114
+ "id": 74,
1115
+ "memory_type": "semantic",
1116
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1117
+ "tags": [
1118
+ "project-idiom",
1119
+ "auto-learned"
1120
+ ],
1121
+ "created_at": "1783438727Z",
1122
+ "last_accessed": "1783438727Z",
1123
+ "access_count": 0,
1124
+ "token_estimate": 54,
1125
+ "source": "manual",
1126
+ "session_id": null
1127
+ },
1128
+ {
1129
+ "id": 75,
1130
+ "memory_type": "semantic",
1131
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
1132
+ "tags": [
1133
+ "project-idiom",
1134
+ "auto-learned"
1135
+ ],
1136
+ "created_at": "1783438727Z",
1137
+ "last_accessed": "1783438727Z",
1138
+ "access_count": 0,
1139
+ "token_estimate": 17,
1140
+ "source": "manual",
1141
+ "session_id": null
1142
+ },
1143
+ {
1144
+ "id": 76,
1145
+ "memory_type": "semantic",
1146
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
1147
+ "tags": [
1148
+ "project-idiom",
1149
+ "auto-learned"
1150
+ ],
1151
+ "created_at": "1783438727Z",
1152
+ "last_accessed": "1783438727Z",
1153
+ "access_count": 0,
1154
+ "token_estimate": 19,
1155
+ "source": "manual",
1156
+ "session_id": null
1157
+ },
1158
+ {
1159
+ "id": 77,
1160
+ "memory_type": "semantic",
1161
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1162
+ "tags": [
1163
+ "project-idiom",
1164
+ "auto-learned"
1165
+ ],
1166
+ "created_at": "1783438727Z",
1167
+ "last_accessed": "1783438727Z",
1168
+ "access_count": 0,
1169
+ "token_estimate": 20,
1170
+ "source": "manual",
1171
+ "session_id": null
1172
+ },
1173
+ {
1174
+ "id": 78,
1175
+ "memory_type": "semantic",
1176
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1177
+ "tags": [
1178
+ "project-idiom",
1179
+ "auto-learned"
1180
+ ],
1181
+ "created_at": "1783438727Z",
1182
+ "last_accessed": "1783438727Z",
1183
+ "access_count": 0,
1184
+ "token_estimate": 54,
1185
+ "source": "manual",
1186
+ "session_id": null
1187
+ },
1188
+ {
1189
+ "id": 79,
1190
+ "memory_type": "procedural",
1191
+ "content": "Run `echo 'No build step required for this project'` to build the project",
1192
+ "tags": [
1193
+ "build-script",
1194
+ "build",
1195
+ "auto-learned"
1196
+ ],
1197
+ "created_at": "1783438727Z",
1198
+ "last_accessed": "1783438727Z",
1199
+ "access_count": 0,
1200
+ "token_estimate": 19,
1201
+ "source": "manual",
1202
+ "session_id": null
1203
+ },
1204
+ {
1205
+ "id": 80,
1206
+ "memory_type": "procedural",
1207
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
1208
+ "tags": [
1209
+ "build-script",
1210
+ "test",
1211
+ "auto-learned"
1212
+ ],
1213
+ "created_at": "1783438727Z",
1214
+ "last_accessed": "1783438727Z",
1215
+ "access_count": 0,
1216
+ "token_estimate": 18,
1217
+ "source": "manual",
1218
+ "session_id": null
1219
+ },
1220
+ {
1221
+ "id": 81,
1222
+ "memory_type": "semantic",
1223
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
1224
+ "tags": [
1225
+ "project-idiom",
1226
+ "auto-learned"
1227
+ ],
1228
+ "created_at": "1783782112Z",
1229
+ "last_accessed": "1783782112Z",
1230
+ "access_count": 0,
1231
+ "token_estimate": 32,
1232
+ "source": "manual",
1233
+ "session_id": null
1234
+ },
1235
+ {
1236
+ "id": 82,
1237
+ "memory_type": "semantic",
1238
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
1239
+ "tags": [
1240
+ "project-idiom",
1241
+ "auto-learned"
1242
+ ],
1243
+ "created_at": "1783782112Z",
1244
+ "last_accessed": "1783782112Z",
1245
+ "access_count": 0,
1246
+ "token_estimate": 34,
1247
+ "source": "manual",
1248
+ "session_id": null
1249
+ },
1250
+ {
1251
+ "id": 83,
1252
+ "memory_type": "semantic",
1253
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1254
+ "tags": [
1255
+ "project-idiom",
1256
+ "auto-learned"
1257
+ ],
1258
+ "created_at": "1783782112Z",
1259
+ "last_accessed": "1783782112Z",
1260
+ "access_count": 0,
1261
+ "token_estimate": 20,
1262
+ "source": "manual",
1263
+ "session_id": null
1264
+ },
1265
+ {
1266
+ "id": 84,
1267
+ "memory_type": "semantic",
1268
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1269
+ "tags": [
1270
+ "project-idiom",
1271
+ "auto-learned"
1272
+ ],
1273
+ "created_at": "1783782112Z",
1274
+ "last_accessed": "1783782112Z",
1275
+ "access_count": 0,
1276
+ "token_estimate": 54,
1277
+ "source": "manual",
1278
+ "session_id": null
1279
+ },
1280
+ {
1281
+ "id": 85,
1282
+ "memory_type": "semantic",
1283
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
1284
+ "tags": [
1285
+ "project-idiom",
1286
+ "auto-learned"
1287
+ ],
1288
+ "created_at": "1783782112Z",
1289
+ "last_accessed": "1783782112Z",
1290
+ "access_count": 0,
1291
+ "token_estimate": 17,
1292
+ "source": "manual",
1293
+ "session_id": null
1294
+ },
1295
+ {
1296
+ "id": 86,
1297
+ "memory_type": "semantic",
1298
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
1299
+ "tags": [
1300
+ "project-idiom",
1301
+ "auto-learned"
1302
+ ],
1303
+ "created_at": "1783782112Z",
1304
+ "last_accessed": "1783782112Z",
1305
+ "access_count": 0,
1306
+ "token_estimate": 19,
1307
+ "source": "manual",
1308
+ "session_id": null
1309
+ },
1310
+ {
1311
+ "id": 87,
1312
+ "memory_type": "semantic",
1313
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1314
+ "tags": [
1315
+ "project-idiom",
1316
+ "auto-learned"
1317
+ ],
1318
+ "created_at": "1783782112Z",
1319
+ "last_accessed": "1783782112Z",
1320
+ "access_count": 0,
1321
+ "token_estimate": 20,
1322
+ "source": "manual",
1323
+ "session_id": null
1324
+ },
1325
+ {
1326
+ "id": 88,
1327
+ "memory_type": "semantic",
1328
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1329
+ "tags": [
1330
+ "project-idiom",
1331
+ "auto-learned"
1332
+ ],
1333
+ "created_at": "1783782112Z",
1334
+ "last_accessed": "1783782112Z",
1335
+ "access_count": 0,
1336
+ "token_estimate": 54,
1337
+ "source": "manual",
1338
+ "session_id": null
1339
+ },
1340
+ {
1341
+ "id": 89,
1342
+ "memory_type": "procedural",
1343
+ "content": "Run `echo 'No build step required for this project'` to build the project",
1344
+ "tags": [
1345
+ "build-script",
1346
+ "build",
1347
+ "auto-learned"
1348
+ ],
1349
+ "created_at": "1783782112Z",
1350
+ "last_accessed": "1783782112Z",
1351
+ "access_count": 0,
1352
+ "token_estimate": 19,
1353
+ "source": "manual",
1354
+ "session_id": null
1355
+ },
1356
+ {
1357
+ "id": 90,
1358
+ "memory_type": "procedural",
1359
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
1360
+ "tags": [
1361
+ "build-script",
1362
+ "test",
1363
+ "auto-learned"
1364
+ ],
1365
+ "created_at": "1783782112Z",
1366
+ "last_accessed": "1783782112Z",
1367
+ "access_count": 0,
1368
+ "token_estimate": 18,
1369
+ "source": "manual",
1370
+ "session_id": null
1371
+ },
1372
+ {
1373
+ "id": 91,
1374
+ "memory_type": "semantic",
1375
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
1376
+ "tags": [
1377
+ "project-idiom",
1378
+ "auto-learned"
1379
+ ],
1380
+ "created_at": "1783782132Z",
1381
+ "last_accessed": "1783782132Z",
1382
+ "access_count": 0,
1383
+ "token_estimate": 32,
1384
+ "source": "manual",
1385
+ "session_id": null
1386
+ },
1387
+ {
1388
+ "id": 92,
1389
+ "memory_type": "semantic",
1390
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
1391
+ "tags": [
1392
+ "project-idiom",
1393
+ "auto-learned"
1394
+ ],
1395
+ "created_at": "1783782132Z",
1396
+ "last_accessed": "1783782132Z",
1397
+ "access_count": 0,
1398
+ "token_estimate": 34,
1399
+ "source": "manual",
1400
+ "session_id": null
1401
+ },
1402
+ {
1403
+ "id": 93,
1404
+ "memory_type": "semantic",
1405
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1406
+ "tags": [
1407
+ "project-idiom",
1408
+ "auto-learned"
1409
+ ],
1410
+ "created_at": "1783782132Z",
1411
+ "last_accessed": "1783782132Z",
1412
+ "access_count": 0,
1413
+ "token_estimate": 20,
1414
+ "source": "manual",
1415
+ "session_id": null
1416
+ },
1417
+ {
1418
+ "id": 94,
1419
+ "memory_type": "semantic",
1420
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1421
+ "tags": [
1422
+ "project-idiom",
1423
+ "auto-learned"
1424
+ ],
1425
+ "created_at": "1783782132Z",
1426
+ "last_accessed": "1783782132Z",
1427
+ "access_count": 0,
1428
+ "token_estimate": 54,
1429
+ "source": "manual",
1430
+ "session_id": null
1431
+ },
1432
+ {
1433
+ "id": 95,
1434
+ "memory_type": "semantic",
1435
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
1436
+ "tags": [
1437
+ "project-idiom",
1438
+ "auto-learned"
1439
+ ],
1440
+ "created_at": "1783782132Z",
1441
+ "last_accessed": "1783782132Z",
1442
+ "access_count": 0,
1443
+ "token_estimate": 17,
1444
+ "source": "manual",
1445
+ "session_id": null
1446
+ },
1447
+ {
1448
+ "id": 96,
1449
+ "memory_type": "semantic",
1450
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
1451
+ "tags": [
1452
+ "project-idiom",
1453
+ "auto-learned"
1454
+ ],
1455
+ "created_at": "1783782132Z",
1456
+ "last_accessed": "1783782132Z",
1457
+ "access_count": 0,
1458
+ "token_estimate": 19,
1459
+ "source": "manual",
1460
+ "session_id": null
1461
+ },
1462
+ {
1463
+ "id": 97,
1464
+ "memory_type": "semantic",
1465
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1466
+ "tags": [
1467
+ "project-idiom",
1468
+ "auto-learned"
1469
+ ],
1470
+ "created_at": "1783782132Z",
1471
+ "last_accessed": "1783782132Z",
1472
+ "access_count": 0,
1473
+ "token_estimate": 20,
1474
+ "source": "manual",
1475
+ "session_id": null
1476
+ },
1477
+ {
1478
+ "id": 98,
1479
+ "memory_type": "semantic",
1480
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1481
+ "tags": [
1482
+ "project-idiom",
1483
+ "auto-learned"
1484
+ ],
1485
+ "created_at": "1783782132Z",
1486
+ "last_accessed": "1783782132Z",
1487
+ "access_count": 0,
1488
+ "token_estimate": 54,
1489
+ "source": "manual",
1490
+ "session_id": null
1491
+ },
1492
+ {
1493
+ "id": 99,
1494
+ "memory_type": "procedural",
1495
+ "content": "Run `echo 'No build step required for this project'` to build the project",
1496
+ "tags": [
1497
+ "build-script",
1498
+ "build",
1499
+ "auto-learned"
1500
+ ],
1501
+ "created_at": "1783782132Z",
1502
+ "last_accessed": "1783782132Z",
1503
+ "access_count": 0,
1504
+ "token_estimate": 19,
1505
+ "source": "manual",
1506
+ "session_id": null
1507
+ },
1508
+ {
1509
+ "id": 100,
1510
+ "memory_type": "procedural",
1511
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
1512
+ "tags": [
1513
+ "build-script",
1514
+ "test",
1515
+ "auto-learned"
1516
+ ],
1517
+ "created_at": "1783782132Z",
1518
+ "last_accessed": "1783782132Z",
1519
+ "access_count": 0,
1520
+ "token_estimate": 18,
1521
+ "source": "manual",
1522
+ "session_id": null
1523
+ },
1524
+ {
1525
+ "id": 101,
1526
+ "memory_type": "semantic",
1527
+ "content": "Database is PostgreSQL",
1528
+ "tags": [
1529
+ "db",
1530
+ "postgres"
1531
+ ],
1532
+ "created_at": "1783783700Z",
1533
+ "last_accessed": "1783783700Z",
1534
+ "access_count": 0,
1535
+ "token_estimate": 6,
1536
+ "source": "manual",
1537
+ "session_id": null
1538
+ },
1539
+ {
1540
+ "id": 102,
1541
+ "memory_type": "semantic",
1542
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
1543
+ "tags": [
1544
+ "project-idiom",
1545
+ "auto-learned"
1546
+ ],
1547
+ "created_at": "1783785670Z",
1548
+ "last_accessed": "1783785670Z",
1549
+ "access_count": 0,
1550
+ "token_estimate": 32,
1551
+ "source": "manual",
1552
+ "session_id": null
1553
+ },
1554
+ {
1555
+ "id": 103,
1556
+ "memory_type": "semantic",
1557
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
1558
+ "tags": [
1559
+ "project-idiom",
1560
+ "auto-learned"
1561
+ ],
1562
+ "created_at": "1783785670Z",
1563
+ "last_accessed": "1783785670Z",
1564
+ "access_count": 0,
1565
+ "token_estimate": 34,
1566
+ "source": "manual",
1567
+ "session_id": null
1568
+ },
1569
+ {
1570
+ "id": 104,
1571
+ "memory_type": "semantic",
1572
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1573
+ "tags": [
1574
+ "project-idiom",
1575
+ "auto-learned"
1576
+ ],
1577
+ "created_at": "1783785670Z",
1578
+ "last_accessed": "1783785670Z",
1579
+ "access_count": 0,
1580
+ "token_estimate": 20,
1581
+ "source": "manual",
1582
+ "session_id": null
1583
+ },
1584
+ {
1585
+ "id": 105,
1586
+ "memory_type": "semantic",
1587
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1588
+ "tags": [
1589
+ "project-idiom",
1590
+ "auto-learned"
1591
+ ],
1592
+ "created_at": "1783785670Z",
1593
+ "last_accessed": "1783785670Z",
1594
+ "access_count": 0,
1595
+ "token_estimate": 54,
1596
+ "source": "manual",
1597
+ "session_id": null
1598
+ },
1599
+ {
1600
+ "id": 106,
1601
+ "memory_type": "semantic",
1602
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
1603
+ "tags": [
1604
+ "project-idiom",
1605
+ "auto-learned"
1606
+ ],
1607
+ "created_at": "1783785670Z",
1608
+ "last_accessed": "1783785670Z",
1609
+ "access_count": 0,
1610
+ "token_estimate": 17,
1611
+ "source": "manual",
1612
+ "session_id": null
1613
+ },
1614
+ {
1615
+ "id": 107,
1616
+ "memory_type": "semantic",
1617
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
1618
+ "tags": [
1619
+ "project-idiom",
1620
+ "auto-learned"
1621
+ ],
1622
+ "created_at": "1783785670Z",
1623
+ "last_accessed": "1783785670Z",
1624
+ "access_count": 0,
1625
+ "token_estimate": 19,
1626
+ "source": "manual",
1627
+ "session_id": null
1628
+ },
1629
+ {
1630
+ "id": 108,
1631
+ "memory_type": "semantic",
1632
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
1633
+ "tags": [
1634
+ "project-idiom",
1635
+ "auto-learned"
1636
+ ],
1637
+ "created_at": "1783785670Z",
1638
+ "last_accessed": "1783785670Z",
1639
+ "access_count": 0,
1640
+ "token_estimate": 20,
1641
+ "source": "manual",
1642
+ "session_id": null
1643
+ },
1644
+ {
1645
+ "id": 109,
1646
+ "memory_type": "semantic",
1647
+ "content": "✅ **Required:** You are explicitly forbidden from finalizing any task without providing **concrete evidence** (terminal output, passing tests, compile success, or equivalent proof) that your output works as intended.",
1648
+ "tags": [
1649
+ "project-idiom",
1650
+ "auto-learned"
1651
+ ],
1652
+ "created_at": "1783785670Z",
1653
+ "last_accessed": "1783785670Z",
1654
+ "access_count": 0,
1655
+ "token_estimate": 54,
1656
+ "source": "manual",
1657
+ "session_id": null
1658
+ },
1659
+ {
1660
+ "id": 110,
1661
+ "memory_type": "procedural",
1662
+ "content": "Run `echo 'No build step required for this project'` to build the project",
1663
+ "tags": [
1664
+ "build-script",
1665
+ "build",
1666
+ "auto-learned"
1667
+ ],
1668
+ "created_at": "1783785670Z",
1669
+ "last_accessed": "1783785670Z",
1670
+ "access_count": 0,
1671
+ "token_estimate": 19,
1672
+ "source": "manual",
1673
+ "session_id": null
1674
+ },
1675
+ {
1676
+ "id": 111,
1677
+ "memory_type": "procedural",
1678
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
1679
+ "tags": [
1680
+ "build-script",
1681
+ "test",
1682
+ "auto-learned"
1683
+ ],
1684
+ "created_at": "1783785670Z",
1685
+ "last_accessed": "1783785670Z",
1686
+ "access_count": 0,
1687
+ "token_estimate": 18,
1688
+ "source": "manual",
1689
+ "session_id": null
1690
+ }
1691
+ ],
1692
+ "next_id": 112
1693
+ }