tribunal-kit 5.8.4 → 5.8.5

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 (46) hide show
  1. package/.agent/ARCHITECTURE.md +3 -3
  2. package/.agent/history/integrity_manifest.json +75 -7
  3. package/.agent/history/memory/.memory.idx +1065 -1
  4. package/.agent/history/memory/MEMORY.md +71 -1
  5. package/.agent/rules/GEMINI.md +1 -1
  6. package/.agent/scripts/_utils.js +28 -7
  7. package/.agent/scripts/context_broker.js +0 -19
  8. package/.agent/scripts/guardrail_engine.js +1 -1
  9. package/.agent/scripts/integrity_manifest.js +10 -4
  10. package/.agent/scripts/marathon_harness.js +10 -1
  11. package/.agent/scripts/skill_evolution.js +36 -21
  12. package/.agent/scripts/swarm_dispatcher.js +65 -6
  13. package/.agent/skills/api-patterns/scripts/__pycache__/api_validator.cpython-311.pyc +0 -0
  14. package/.agent/skills/better-colors/SKILL.md +12 -4
  15. package/.agent/skills/database-design/scripts/__pycache__/schema_validator.cpython-311.pyc +0 -0
  16. package/.agent/skills/fixing-accessibility/SKILL.md +6 -4
  17. package/.agent/skills/frontend-design/SKILL.md +80 -81
  18. package/.agent/skills/frontend-design/scripts/__pycache__/accessibility_checker.cpython-311.pyc +0 -0
  19. package/.agent/skills/frontend-design/scripts/__pycache__/ux_audit.cpython-311.pyc +0 -0
  20. package/.agent/skills/geo-fundamentals/scripts/__pycache__/geo_checker.cpython-311.pyc +0 -0
  21. package/.agent/skills/i18n-localization/scripts/__pycache__/i18n_checker.cpython-311.pyc +0 -0
  22. package/.agent/skills/impeccable/SKILL.md +2 -0
  23. package/.agent/skills/lint-and-validate/scripts/__pycache__/lint_runner.cpython-311.pyc +0 -0
  24. package/.agent/skills/lint-and-validate/scripts/__pycache__/type_coverage.cpython-311.pyc +0 -0
  25. package/.agent/skills/mobile-design/scripts/__pycache__/mobile_audit.cpython-311.pyc +0 -0
  26. package/.agent/skills/motion-engineering/SKILL.md +66 -164
  27. package/.agent/skills/nextjs-react-expert/scripts/__pycache__/convert_rules.cpython-311.pyc +0 -0
  28. package/.agent/skills/nextjs-react-expert/scripts/__pycache__/react_performance_checker.cpython-311.pyc +0 -0
  29. package/.agent/skills/performance-profiling/scripts/__pycache__/lighthouse_audit.cpython-311.pyc +0 -0
  30. package/.agent/skills/seo-fundamentals/scripts/__pycache__/seo_checker.cpython-311.pyc +0 -0
  31. package/.agent/skills/testing-patterns/scripts/__pycache__/test_runner.cpython-311.pyc +0 -0
  32. package/.agent/skills/vulnerability-scanner/scripts/__pycache__/security_scan.cpython-311.pyc +0 -0
  33. package/.agent/skills/webapp-testing/scripts/__pycache__/playwright_runner.cpython-311.pyc +0 -0
  34. package/.agent/workflows/tribunal-full.md +5 -5
  35. package/CONTRIBUTING.md +1 -1
  36. package/README.md +4 -4
  37. package/bin/mcp-server.js +45 -45
  38. package/bin/wrapper.js +50 -25
  39. package/dist/cli.js +30 -0
  40. package/dist/commands/init.js +25 -1
  41. package/dist/commands/native.js +228 -0
  42. package/dist/commands/validate.js +67 -0
  43. package/dist/mcp/server.js +4 -138
  44. package/package.json +11 -10
  45. package/scripts/benchmark.js +42 -0
  46. package/scripts/sync-version.js +129 -76
@@ -2295,7 +2295,1071 @@
2295
2295
  "token_estimate": 18,
2296
2296
  "source": "manual",
2297
2297
  "session_id": null
2298
+ },
2299
+ {
2300
+ "id": 152,
2301
+ "memory_type": "semantic",
2302
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
2303
+ "tags": [
2304
+ "project-idiom",
2305
+ "auto-learned"
2306
+ ],
2307
+ "created_at": "1784705972Z",
2308
+ "last_accessed": "1784705972Z",
2309
+ "access_count": 0,
2310
+ "token_estimate": 32,
2311
+ "source": "manual",
2312
+ "session_id": null
2313
+ },
2314
+ {
2315
+ "id": 153,
2316
+ "memory_type": "semantic",
2317
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
2318
+ "tags": [
2319
+ "project-idiom",
2320
+ "auto-learned"
2321
+ ],
2322
+ "created_at": "1784705972Z",
2323
+ "last_accessed": "1784705972Z",
2324
+ "access_count": 0,
2325
+ "token_estimate": 34,
2326
+ "source": "manual",
2327
+ "session_id": null
2328
+ },
2329
+ {
2330
+ "id": 154,
2331
+ "memory_type": "semantic",
2332
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2333
+ "tags": [
2334
+ "project-idiom",
2335
+ "auto-learned"
2336
+ ],
2337
+ "created_at": "1784705972Z",
2338
+ "last_accessed": "1784705972Z",
2339
+ "access_count": 0,
2340
+ "token_estimate": 20,
2341
+ "source": "manual",
2342
+ "session_id": null
2343
+ },
2344
+ {
2345
+ "id": 155,
2346
+ "memory_type": "semantic",
2347
+ "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.",
2348
+ "tags": [
2349
+ "project-idiom",
2350
+ "auto-learned"
2351
+ ],
2352
+ "created_at": "1784705972Z",
2353
+ "last_accessed": "1784705972Z",
2354
+ "access_count": 0,
2355
+ "token_estimate": 54,
2356
+ "source": "manual",
2357
+ "session_id": null
2358
+ },
2359
+ {
2360
+ "id": 156,
2361
+ "memory_type": "semantic",
2362
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
2363
+ "tags": [
2364
+ "project-idiom",
2365
+ "auto-learned"
2366
+ ],
2367
+ "created_at": "1784705972Z",
2368
+ "last_accessed": "1784705972Z",
2369
+ "access_count": 0,
2370
+ "token_estimate": 17,
2371
+ "source": "manual",
2372
+ "session_id": null
2373
+ },
2374
+ {
2375
+ "id": 157,
2376
+ "memory_type": "semantic",
2377
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
2378
+ "tags": [
2379
+ "project-idiom",
2380
+ "auto-learned"
2381
+ ],
2382
+ "created_at": "1784705972Z",
2383
+ "last_accessed": "1784705972Z",
2384
+ "access_count": 0,
2385
+ "token_estimate": 19,
2386
+ "source": "manual",
2387
+ "session_id": null
2388
+ },
2389
+ {
2390
+ "id": 158,
2391
+ "memory_type": "semantic",
2392
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2393
+ "tags": [
2394
+ "project-idiom",
2395
+ "auto-learned"
2396
+ ],
2397
+ "created_at": "1784705972Z",
2398
+ "last_accessed": "1784705972Z",
2399
+ "access_count": 0,
2400
+ "token_estimate": 20,
2401
+ "source": "manual",
2402
+ "session_id": null
2403
+ },
2404
+ {
2405
+ "id": 159,
2406
+ "memory_type": "semantic",
2407
+ "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.",
2408
+ "tags": [
2409
+ "project-idiom",
2410
+ "auto-learned"
2411
+ ],
2412
+ "created_at": "1784705972Z",
2413
+ "last_accessed": "1784705972Z",
2414
+ "access_count": 0,
2415
+ "token_estimate": 54,
2416
+ "source": "manual",
2417
+ "session_id": null
2418
+ },
2419
+ {
2420
+ "id": 160,
2421
+ "memory_type": "procedural",
2422
+ "content": "Run `echo 'No build step required for this project'` to build the project",
2423
+ "tags": [
2424
+ "build-script",
2425
+ "build",
2426
+ "auto-learned"
2427
+ ],
2428
+ "created_at": "1784705972Z",
2429
+ "last_accessed": "1784705972Z",
2430
+ "access_count": 0,
2431
+ "token_estimate": 19,
2432
+ "source": "manual",
2433
+ "session_id": null
2434
+ },
2435
+ {
2436
+ "id": 161,
2437
+ "memory_type": "procedural",
2438
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
2439
+ "tags": [
2440
+ "build-script",
2441
+ "test",
2442
+ "auto-learned"
2443
+ ],
2444
+ "created_at": "1784705972Z",
2445
+ "last_accessed": "1784705972Z",
2446
+ "access_count": 0,
2447
+ "token_estimate": 18,
2448
+ "source": "manual",
2449
+ "session_id": null
2450
+ },
2451
+ {
2452
+ "id": 162,
2453
+ "memory_type": "semantic",
2454
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
2455
+ "tags": [
2456
+ "project-idiom",
2457
+ "auto-learned"
2458
+ ],
2459
+ "created_at": "1784706426Z",
2460
+ "last_accessed": "1784706426Z",
2461
+ "access_count": 0,
2462
+ "token_estimate": 32,
2463
+ "source": "manual",
2464
+ "session_id": null
2465
+ },
2466
+ {
2467
+ "id": 163,
2468
+ "memory_type": "semantic",
2469
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
2470
+ "tags": [
2471
+ "project-idiom",
2472
+ "auto-learned"
2473
+ ],
2474
+ "created_at": "1784706426Z",
2475
+ "last_accessed": "1784706426Z",
2476
+ "access_count": 0,
2477
+ "token_estimate": 34,
2478
+ "source": "manual",
2479
+ "session_id": null
2480
+ },
2481
+ {
2482
+ "id": 164,
2483
+ "memory_type": "semantic",
2484
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2485
+ "tags": [
2486
+ "project-idiom",
2487
+ "auto-learned"
2488
+ ],
2489
+ "created_at": "1784706426Z",
2490
+ "last_accessed": "1784706426Z",
2491
+ "access_count": 0,
2492
+ "token_estimate": 20,
2493
+ "source": "manual",
2494
+ "session_id": null
2495
+ },
2496
+ {
2497
+ "id": 165,
2498
+ "memory_type": "semantic",
2499
+ "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.",
2500
+ "tags": [
2501
+ "project-idiom",
2502
+ "auto-learned"
2503
+ ],
2504
+ "created_at": "1784706426Z",
2505
+ "last_accessed": "1784706426Z",
2506
+ "access_count": 0,
2507
+ "token_estimate": 54,
2508
+ "source": "manual",
2509
+ "session_id": null
2510
+ },
2511
+ {
2512
+ "id": 166,
2513
+ "memory_type": "semantic",
2514
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
2515
+ "tags": [
2516
+ "project-idiom",
2517
+ "auto-learned"
2518
+ ],
2519
+ "created_at": "1784706426Z",
2520
+ "last_accessed": "1784706426Z",
2521
+ "access_count": 0,
2522
+ "token_estimate": 17,
2523
+ "source": "manual",
2524
+ "session_id": null
2525
+ },
2526
+ {
2527
+ "id": 167,
2528
+ "memory_type": "semantic",
2529
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
2530
+ "tags": [
2531
+ "project-idiom",
2532
+ "auto-learned"
2533
+ ],
2534
+ "created_at": "1784706426Z",
2535
+ "last_accessed": "1784706426Z",
2536
+ "access_count": 0,
2537
+ "token_estimate": 19,
2538
+ "source": "manual",
2539
+ "session_id": null
2540
+ },
2541
+ {
2542
+ "id": 168,
2543
+ "memory_type": "semantic",
2544
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2545
+ "tags": [
2546
+ "project-idiom",
2547
+ "auto-learned"
2548
+ ],
2549
+ "created_at": "1784706426Z",
2550
+ "last_accessed": "1784706426Z",
2551
+ "access_count": 0,
2552
+ "token_estimate": 20,
2553
+ "source": "manual",
2554
+ "session_id": null
2555
+ },
2556
+ {
2557
+ "id": 169,
2558
+ "memory_type": "semantic",
2559
+ "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.",
2560
+ "tags": [
2561
+ "project-idiom",
2562
+ "auto-learned"
2563
+ ],
2564
+ "created_at": "1784706426Z",
2565
+ "last_accessed": "1784706426Z",
2566
+ "access_count": 0,
2567
+ "token_estimate": 54,
2568
+ "source": "manual",
2569
+ "session_id": null
2570
+ },
2571
+ {
2572
+ "id": 170,
2573
+ "memory_type": "procedural",
2574
+ "content": "Run `echo 'No build step required for this project'` to build the project",
2575
+ "tags": [
2576
+ "build-script",
2577
+ "build",
2578
+ "auto-learned"
2579
+ ],
2580
+ "created_at": "1784706426Z",
2581
+ "last_accessed": "1784706426Z",
2582
+ "access_count": 0,
2583
+ "token_estimate": 19,
2584
+ "source": "manual",
2585
+ "session_id": null
2586
+ },
2587
+ {
2588
+ "id": 171,
2589
+ "memory_type": "procedural",
2590
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
2591
+ "tags": [
2592
+ "build-script",
2593
+ "test",
2594
+ "auto-learned"
2595
+ ],
2596
+ "created_at": "1784706426Z",
2597
+ "last_accessed": "1784706426Z",
2598
+ "access_count": 0,
2599
+ "token_estimate": 18,
2600
+ "source": "manual",
2601
+ "session_id": null
2602
+ },
2603
+ {
2604
+ "id": 172,
2605
+ "memory_type": "semantic",
2606
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
2607
+ "tags": [
2608
+ "project-idiom",
2609
+ "auto-learned"
2610
+ ],
2611
+ "created_at": "1784706433Z",
2612
+ "last_accessed": "1784706433Z",
2613
+ "access_count": 0,
2614
+ "token_estimate": 32,
2615
+ "source": "manual",
2616
+ "session_id": null
2617
+ },
2618
+ {
2619
+ "id": 173,
2620
+ "memory_type": "semantic",
2621
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
2622
+ "tags": [
2623
+ "project-idiom",
2624
+ "auto-learned"
2625
+ ],
2626
+ "created_at": "1784706433Z",
2627
+ "last_accessed": "1784706433Z",
2628
+ "access_count": 0,
2629
+ "token_estimate": 34,
2630
+ "source": "manual",
2631
+ "session_id": null
2632
+ },
2633
+ {
2634
+ "id": 174,
2635
+ "memory_type": "semantic",
2636
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2637
+ "tags": [
2638
+ "project-idiom",
2639
+ "auto-learned"
2640
+ ],
2641
+ "created_at": "1784706433Z",
2642
+ "last_accessed": "1784706433Z",
2643
+ "access_count": 0,
2644
+ "token_estimate": 20,
2645
+ "source": "manual",
2646
+ "session_id": null
2647
+ },
2648
+ {
2649
+ "id": 175,
2650
+ "memory_type": "semantic",
2651
+ "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.",
2652
+ "tags": [
2653
+ "project-idiom",
2654
+ "auto-learned"
2655
+ ],
2656
+ "created_at": "1784706433Z",
2657
+ "last_accessed": "1784706433Z",
2658
+ "access_count": 0,
2659
+ "token_estimate": 54,
2660
+ "source": "manual",
2661
+ "session_id": null
2662
+ },
2663
+ {
2664
+ "id": 176,
2665
+ "memory_type": "semantic",
2666
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
2667
+ "tags": [
2668
+ "project-idiom",
2669
+ "auto-learned"
2670
+ ],
2671
+ "created_at": "1784706433Z",
2672
+ "last_accessed": "1784706433Z",
2673
+ "access_count": 0,
2674
+ "token_estimate": 17,
2675
+ "source": "manual",
2676
+ "session_id": null
2677
+ },
2678
+ {
2679
+ "id": 177,
2680
+ "memory_type": "semantic",
2681
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
2682
+ "tags": [
2683
+ "project-idiom",
2684
+ "auto-learned"
2685
+ ],
2686
+ "created_at": "1784706433Z",
2687
+ "last_accessed": "1784706433Z",
2688
+ "access_count": 0,
2689
+ "token_estimate": 19,
2690
+ "source": "manual",
2691
+ "session_id": null
2692
+ },
2693
+ {
2694
+ "id": 178,
2695
+ "memory_type": "semantic",
2696
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2697
+ "tags": [
2698
+ "project-idiom",
2699
+ "auto-learned"
2700
+ ],
2701
+ "created_at": "1784706433Z",
2702
+ "last_accessed": "1784706433Z",
2703
+ "access_count": 0,
2704
+ "token_estimate": 20,
2705
+ "source": "manual",
2706
+ "session_id": null
2707
+ },
2708
+ {
2709
+ "id": 179,
2710
+ "memory_type": "semantic",
2711
+ "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.",
2712
+ "tags": [
2713
+ "project-idiom",
2714
+ "auto-learned"
2715
+ ],
2716
+ "created_at": "1784706433Z",
2717
+ "last_accessed": "1784706433Z",
2718
+ "access_count": 0,
2719
+ "token_estimate": 54,
2720
+ "source": "manual",
2721
+ "session_id": null
2722
+ },
2723
+ {
2724
+ "id": 180,
2725
+ "memory_type": "procedural",
2726
+ "content": "Run `echo 'No build step required for this project'` to build the project",
2727
+ "tags": [
2728
+ "build-script",
2729
+ "build",
2730
+ "auto-learned"
2731
+ ],
2732
+ "created_at": "1784706433Z",
2733
+ "last_accessed": "1784706433Z",
2734
+ "access_count": 0,
2735
+ "token_estimate": 19,
2736
+ "source": "manual",
2737
+ "session_id": null
2738
+ },
2739
+ {
2740
+ "id": 181,
2741
+ "memory_type": "procedural",
2742
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
2743
+ "tags": [
2744
+ "build-script",
2745
+ "test",
2746
+ "auto-learned"
2747
+ ],
2748
+ "created_at": "1784706433Z",
2749
+ "last_accessed": "1784706433Z",
2750
+ "access_count": 0,
2751
+ "token_estimate": 18,
2752
+ "source": "manual",
2753
+ "session_id": null
2754
+ },
2755
+ {
2756
+ "id": 182,
2757
+ "memory_type": "semantic",
2758
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
2759
+ "tags": [
2760
+ "project-idiom",
2761
+ "auto-learned"
2762
+ ],
2763
+ "created_at": "1784706809Z",
2764
+ "last_accessed": "1784706809Z",
2765
+ "access_count": 0,
2766
+ "token_estimate": 32,
2767
+ "source": "manual",
2768
+ "session_id": null
2769
+ },
2770
+ {
2771
+ "id": 183,
2772
+ "memory_type": "semantic",
2773
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
2774
+ "tags": [
2775
+ "project-idiom",
2776
+ "auto-learned"
2777
+ ],
2778
+ "created_at": "1784706809Z",
2779
+ "last_accessed": "1784706809Z",
2780
+ "access_count": 0,
2781
+ "token_estimate": 34,
2782
+ "source": "manual",
2783
+ "session_id": null
2784
+ },
2785
+ {
2786
+ "id": 184,
2787
+ "memory_type": "semantic",
2788
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2789
+ "tags": [
2790
+ "project-idiom",
2791
+ "auto-learned"
2792
+ ],
2793
+ "created_at": "1784706809Z",
2794
+ "last_accessed": "1784706809Z",
2795
+ "access_count": 0,
2796
+ "token_estimate": 20,
2797
+ "source": "manual",
2798
+ "session_id": null
2799
+ },
2800
+ {
2801
+ "id": 185,
2802
+ "memory_type": "semantic",
2803
+ "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.",
2804
+ "tags": [
2805
+ "project-idiom",
2806
+ "auto-learned"
2807
+ ],
2808
+ "created_at": "1784706809Z",
2809
+ "last_accessed": "1784706809Z",
2810
+ "access_count": 0,
2811
+ "token_estimate": 54,
2812
+ "source": "manual",
2813
+ "session_id": null
2814
+ },
2815
+ {
2816
+ "id": 186,
2817
+ "memory_type": "semantic",
2818
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
2819
+ "tags": [
2820
+ "project-idiom",
2821
+ "auto-learned"
2822
+ ],
2823
+ "created_at": "1784706809Z",
2824
+ "last_accessed": "1784706809Z",
2825
+ "access_count": 0,
2826
+ "token_estimate": 17,
2827
+ "source": "manual",
2828
+ "session_id": null
2829
+ },
2830
+ {
2831
+ "id": 187,
2832
+ "memory_type": "semantic",
2833
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
2834
+ "tags": [
2835
+ "project-idiom",
2836
+ "auto-learned"
2837
+ ],
2838
+ "created_at": "1784706809Z",
2839
+ "last_accessed": "1784706809Z",
2840
+ "access_count": 0,
2841
+ "token_estimate": 19,
2842
+ "source": "manual",
2843
+ "session_id": null
2844
+ },
2845
+ {
2846
+ "id": 188,
2847
+ "memory_type": "semantic",
2848
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2849
+ "tags": [
2850
+ "project-idiom",
2851
+ "auto-learned"
2852
+ ],
2853
+ "created_at": "1784706809Z",
2854
+ "last_accessed": "1784706809Z",
2855
+ "access_count": 0,
2856
+ "token_estimate": 20,
2857
+ "source": "manual",
2858
+ "session_id": null
2859
+ },
2860
+ {
2861
+ "id": 189,
2862
+ "memory_type": "semantic",
2863
+ "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.",
2864
+ "tags": [
2865
+ "project-idiom",
2866
+ "auto-learned"
2867
+ ],
2868
+ "created_at": "1784706809Z",
2869
+ "last_accessed": "1784706809Z",
2870
+ "access_count": 0,
2871
+ "token_estimate": 54,
2872
+ "source": "manual",
2873
+ "session_id": null
2874
+ },
2875
+ {
2876
+ "id": 190,
2877
+ "memory_type": "procedural",
2878
+ "content": "Run `echo 'No build step required for this project'` to build the project",
2879
+ "tags": [
2880
+ "build-script",
2881
+ "build",
2882
+ "auto-learned"
2883
+ ],
2884
+ "created_at": "1784706809Z",
2885
+ "last_accessed": "1784706809Z",
2886
+ "access_count": 0,
2887
+ "token_estimate": 19,
2888
+ "source": "manual",
2889
+ "session_id": null
2890
+ },
2891
+ {
2892
+ "id": 191,
2893
+ "memory_type": "procedural",
2894
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
2895
+ "tags": [
2896
+ "build-script",
2897
+ "test",
2898
+ "auto-learned"
2899
+ ],
2900
+ "created_at": "1784706809Z",
2901
+ "last_accessed": "1784706809Z",
2902
+ "access_count": 0,
2903
+ "token_estimate": 18,
2904
+ "source": "manual",
2905
+ "session_id": null
2906
+ },
2907
+ {
2908
+ "id": 192,
2909
+ "memory_type": "semantic",
2910
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
2911
+ "tags": [
2912
+ "project-idiom",
2913
+ "auto-learned"
2914
+ ],
2915
+ "created_at": "1784706814Z",
2916
+ "last_accessed": "1784706814Z",
2917
+ "access_count": 0,
2918
+ "token_estimate": 32,
2919
+ "source": "manual",
2920
+ "session_id": null
2921
+ },
2922
+ {
2923
+ "id": 193,
2924
+ "memory_type": "semantic",
2925
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
2926
+ "tags": [
2927
+ "project-idiom",
2928
+ "auto-learned"
2929
+ ],
2930
+ "created_at": "1784706814Z",
2931
+ "last_accessed": "1784706814Z",
2932
+ "access_count": 0,
2933
+ "token_estimate": 34,
2934
+ "source": "manual",
2935
+ "session_id": null
2936
+ },
2937
+ {
2938
+ "id": 194,
2939
+ "memory_type": "semantic",
2940
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
2941
+ "tags": [
2942
+ "project-idiom",
2943
+ "auto-learned"
2944
+ ],
2945
+ "created_at": "1784706814Z",
2946
+ "last_accessed": "1784706814Z",
2947
+ "access_count": 0,
2948
+ "token_estimate": 20,
2949
+ "source": "manual",
2950
+ "session_id": null
2951
+ },
2952
+ {
2953
+ "id": 195,
2954
+ "memory_type": "semantic",
2955
+ "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.",
2956
+ "tags": [
2957
+ "project-idiom",
2958
+ "auto-learned"
2959
+ ],
2960
+ "created_at": "1784706814Z",
2961
+ "last_accessed": "1784706814Z",
2962
+ "access_count": 0,
2963
+ "token_estimate": 54,
2964
+ "source": "manual",
2965
+ "session_id": null
2966
+ },
2967
+ {
2968
+ "id": 196,
2969
+ "memory_type": "semantic",
2970
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
2971
+ "tags": [
2972
+ "project-idiom",
2973
+ "auto-learned"
2974
+ ],
2975
+ "created_at": "1784706814Z",
2976
+ "last_accessed": "1784706814Z",
2977
+ "access_count": 0,
2978
+ "token_estimate": 17,
2979
+ "source": "manual",
2980
+ "session_id": null
2981
+ },
2982
+ {
2983
+ "id": 197,
2984
+ "memory_type": "semantic",
2985
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
2986
+ "tags": [
2987
+ "project-idiom",
2988
+ "auto-learned"
2989
+ ],
2990
+ "created_at": "1784706814Z",
2991
+ "last_accessed": "1784706814Z",
2992
+ "access_count": 0,
2993
+ "token_estimate": 19,
2994
+ "source": "manual",
2995
+ "session_id": null
2996
+ },
2997
+ {
2998
+ "id": 198,
2999
+ "memory_type": "semantic",
3000
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
3001
+ "tags": [
3002
+ "project-idiom",
3003
+ "auto-learned"
3004
+ ],
3005
+ "created_at": "1784706814Z",
3006
+ "last_accessed": "1784706814Z",
3007
+ "access_count": 0,
3008
+ "token_estimate": 20,
3009
+ "source": "manual",
3010
+ "session_id": null
3011
+ },
3012
+ {
3013
+ "id": 199,
3014
+ "memory_type": "semantic",
3015
+ "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.",
3016
+ "tags": [
3017
+ "project-idiom",
3018
+ "auto-learned"
3019
+ ],
3020
+ "created_at": "1784706814Z",
3021
+ "last_accessed": "1784706814Z",
3022
+ "access_count": 0,
3023
+ "token_estimate": 54,
3024
+ "source": "manual",
3025
+ "session_id": null
3026
+ },
3027
+ {
3028
+ "id": 200,
3029
+ "memory_type": "procedural",
3030
+ "content": "Run `echo 'No build step required for this project'` to build the project",
3031
+ "tags": [
3032
+ "build-script",
3033
+ "build",
3034
+ "auto-learned"
3035
+ ],
3036
+ "created_at": "1784706814Z",
3037
+ "last_accessed": "1784706814Z",
3038
+ "access_count": 0,
3039
+ "token_estimate": 19,
3040
+ "source": "manual",
3041
+ "session_id": null
3042
+ },
3043
+ {
3044
+ "id": 201,
3045
+ "memory_type": "procedural",
3046
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
3047
+ "tags": [
3048
+ "build-script",
3049
+ "test",
3050
+ "auto-learned"
3051
+ ],
3052
+ "created_at": "1784706814Z",
3053
+ "last_accessed": "1784706814Z",
3054
+ "access_count": 0,
3055
+ "token_estimate": 18,
3056
+ "source": "manual",
3057
+ "session_id": null
3058
+ },
3059
+ {
3060
+ "id": 202,
3061
+ "memory_type": "semantic",
3062
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
3063
+ "tags": [
3064
+ "project-idiom",
3065
+ "auto-learned"
3066
+ ],
3067
+ "created_at": "1785138690Z",
3068
+ "last_accessed": "1785138690Z",
3069
+ "access_count": 0,
3070
+ "token_estimate": 32,
3071
+ "source": "manual",
3072
+ "session_id": null
3073
+ },
3074
+ {
3075
+ "id": 203,
3076
+ "memory_type": "semantic",
3077
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
3078
+ "tags": [
3079
+ "project-idiom",
3080
+ "auto-learned"
3081
+ ],
3082
+ "created_at": "1785138690Z",
3083
+ "last_accessed": "1785138690Z",
3084
+ "access_count": 0,
3085
+ "token_estimate": 34,
3086
+ "source": "manual",
3087
+ "session_id": null
3088
+ },
3089
+ {
3090
+ "id": 204,
3091
+ "memory_type": "semantic",
3092
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
3093
+ "tags": [
3094
+ "project-idiom",
3095
+ "auto-learned"
3096
+ ],
3097
+ "created_at": "1785138690Z",
3098
+ "last_accessed": "1785138690Z",
3099
+ "access_count": 0,
3100
+ "token_estimate": 20,
3101
+ "source": "manual",
3102
+ "session_id": null
3103
+ },
3104
+ {
3105
+ "id": 205,
3106
+ "memory_type": "semantic",
3107
+ "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.",
3108
+ "tags": [
3109
+ "project-idiom",
3110
+ "auto-learned"
3111
+ ],
3112
+ "created_at": "1785138690Z",
3113
+ "last_accessed": "1785138690Z",
3114
+ "access_count": 0,
3115
+ "token_estimate": 54,
3116
+ "source": "manual",
3117
+ "session_id": null
3118
+ },
3119
+ {
3120
+ "id": 206,
3121
+ "memory_type": "semantic",
3122
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
3123
+ "tags": [
3124
+ "project-idiom",
3125
+ "auto-learned"
3126
+ ],
3127
+ "created_at": "1785138690Z",
3128
+ "last_accessed": "1785138690Z",
3129
+ "access_count": 0,
3130
+ "token_estimate": 17,
3131
+ "source": "manual",
3132
+ "session_id": null
3133
+ },
3134
+ {
3135
+ "id": 207,
3136
+ "memory_type": "semantic",
3137
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
3138
+ "tags": [
3139
+ "project-idiom",
3140
+ "auto-learned"
3141
+ ],
3142
+ "created_at": "1785138690Z",
3143
+ "last_accessed": "1785138690Z",
3144
+ "access_count": 0,
3145
+ "token_estimate": 19,
3146
+ "source": "manual",
3147
+ "session_id": null
3148
+ },
3149
+ {
3150
+ "id": 208,
3151
+ "memory_type": "semantic",
3152
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
3153
+ "tags": [
3154
+ "project-idiom",
3155
+ "auto-learned"
3156
+ ],
3157
+ "created_at": "1785138690Z",
3158
+ "last_accessed": "1785138690Z",
3159
+ "access_count": 0,
3160
+ "token_estimate": 20,
3161
+ "source": "manual",
3162
+ "session_id": null
3163
+ },
3164
+ {
3165
+ "id": 209,
3166
+ "memory_type": "semantic",
3167
+ "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.",
3168
+ "tags": [
3169
+ "project-idiom",
3170
+ "auto-learned"
3171
+ ],
3172
+ "created_at": "1785138690Z",
3173
+ "last_accessed": "1785138690Z",
3174
+ "access_count": 0,
3175
+ "token_estimate": 54,
3176
+ "source": "manual",
3177
+ "session_id": null
3178
+ },
3179
+ {
3180
+ "id": 210,
3181
+ "memory_type": "procedural",
3182
+ "content": "Run `npm run build:rust` to build the project",
3183
+ "tags": [
3184
+ "build-script",
3185
+ "build",
3186
+ "auto-learned"
3187
+ ],
3188
+ "created_at": "1785138690Z",
3189
+ "last_accessed": "1785138690Z",
3190
+ "access_count": 0,
3191
+ "token_estimate": 12,
3192
+ "source": "manual",
3193
+ "session_id": null
3194
+ },
3195
+ {
3196
+ "id": 211,
3197
+ "memory_type": "procedural",
3198
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
3199
+ "tags": [
3200
+ "build-script",
3201
+ "test",
3202
+ "auto-learned"
3203
+ ],
3204
+ "created_at": "1785138690Z",
3205
+ "last_accessed": "1785138690Z",
3206
+ "access_count": 0,
3207
+ "token_estimate": 18,
3208
+ "source": "manual",
3209
+ "session_id": null
3210
+ },
3211
+ {
3212
+ "id": 212,
3213
+ "memory_type": "semantic",
3214
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
3215
+ "tags": [
3216
+ "project-idiom",
3217
+ "auto-learned"
3218
+ ],
3219
+ "created_at": "1785138695Z",
3220
+ "last_accessed": "1785138695Z",
3221
+ "access_count": 0,
3222
+ "token_estimate": 32,
3223
+ "source": "manual",
3224
+ "session_id": null
3225
+ },
3226
+ {
3227
+ "id": 213,
3228
+ "memory_type": "semantic",
3229
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
3230
+ "tags": [
3231
+ "project-idiom",
3232
+ "auto-learned"
3233
+ ],
3234
+ "created_at": "1785138695Z",
3235
+ "last_accessed": "1785138695Z",
3236
+ "access_count": 0,
3237
+ "token_estimate": 34,
3238
+ "source": "manual",
3239
+ "session_id": null
3240
+ },
3241
+ {
3242
+ "id": 214,
3243
+ "memory_type": "semantic",
3244
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
3245
+ "tags": [
3246
+ "project-idiom",
3247
+ "auto-learned"
3248
+ ],
3249
+ "created_at": "1785138695Z",
3250
+ "last_accessed": "1785138695Z",
3251
+ "access_count": 0,
3252
+ "token_estimate": 20,
3253
+ "source": "manual",
3254
+ "session_id": null
3255
+ },
3256
+ {
3257
+ "id": 215,
3258
+ "memory_type": "semantic",
3259
+ "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.",
3260
+ "tags": [
3261
+ "project-idiom",
3262
+ "auto-learned"
3263
+ ],
3264
+ "created_at": "1785138695Z",
3265
+ "last_accessed": "1785138695Z",
3266
+ "access_count": 0,
3267
+ "token_estimate": 54,
3268
+ "source": "manual",
3269
+ "session_id": null
3270
+ },
3271
+ {
3272
+ "id": 216,
3273
+ "memory_type": "semantic",
3274
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
3275
+ "tags": [
3276
+ "project-idiom",
3277
+ "auto-learned"
3278
+ ],
3279
+ "created_at": "1785138695Z",
3280
+ "last_accessed": "1785138695Z",
3281
+ "access_count": 0,
3282
+ "token_estimate": 17,
3283
+ "source": "manual",
3284
+ "session_id": null
3285
+ },
3286
+ {
3287
+ "id": 217,
3288
+ "memory_type": "semantic",
3289
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
3290
+ "tags": [
3291
+ "project-idiom",
3292
+ "auto-learned"
3293
+ ],
3294
+ "created_at": "1785138695Z",
3295
+ "last_accessed": "1785138695Z",
3296
+ "access_count": 0,
3297
+ "token_estimate": 19,
3298
+ "source": "manual",
3299
+ "session_id": null
3300
+ },
3301
+ {
3302
+ "id": 218,
3303
+ "memory_type": "semantic",
3304
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
3305
+ "tags": [
3306
+ "project-idiom",
3307
+ "auto-learned"
3308
+ ],
3309
+ "created_at": "1785138695Z",
3310
+ "last_accessed": "1785138695Z",
3311
+ "access_count": 0,
3312
+ "token_estimate": 20,
3313
+ "source": "manual",
3314
+ "session_id": null
3315
+ },
3316
+ {
3317
+ "id": 219,
3318
+ "memory_type": "semantic",
3319
+ "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.",
3320
+ "tags": [
3321
+ "project-idiom",
3322
+ "auto-learned"
3323
+ ],
3324
+ "created_at": "1785138696Z",
3325
+ "last_accessed": "1785138696Z",
3326
+ "access_count": 0,
3327
+ "token_estimate": 54,
3328
+ "source": "manual",
3329
+ "session_id": null
3330
+ },
3331
+ {
3332
+ "id": 220,
3333
+ "memory_type": "procedural",
3334
+ "content": "Run `npm run build:rust` to build the project",
3335
+ "tags": [
3336
+ "build-script",
3337
+ "build",
3338
+ "auto-learned"
3339
+ ],
3340
+ "created_at": "1785138696Z",
3341
+ "last_accessed": "1785138696Z",
3342
+ "access_count": 0,
3343
+ "token_estimate": 12,
3344
+ "source": "manual",
3345
+ "session_id": null
3346
+ },
3347
+ {
3348
+ "id": 221,
3349
+ "memory_type": "procedural",
3350
+ "content": "Run `npm run validate-payload && jest --coverage` to test the project",
3351
+ "tags": [
3352
+ "build-script",
3353
+ "test",
3354
+ "auto-learned"
3355
+ ],
3356
+ "created_at": "1785138696Z",
3357
+ "last_accessed": "1785138696Z",
3358
+ "access_count": 0,
3359
+ "token_estimate": 18,
3360
+ "source": "manual",
3361
+ "session_id": null
2298
3362
  }
2299
3363
  ],
2300
- "next_id": 152
3364
+ "next_id": 222
2301
3365
  }