tribunal-kit 6.0.0 → 7.0.0

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 (353) hide show
  1. package/.agent/.manifest.json +78 -0
  2. package/.agent/ARCHITECTURE.md +19 -241
  3. package/.agent/agents/accessibility-reviewer.md +23 -16
  4. package/.agent/agents/ai-code-reviewer.md +25 -21
  5. package/.agent/agents/anti-pattern-reviewer.md +12 -7
  6. package/.agent/agents/api-architect.md +1 -0
  7. package/.agent/agents/backend-specialist.md +23 -22
  8. package/.agent/agents/cloud-engineer.md +1 -0
  9. package/.agent/agents/code-archaeologist.md +1 -0
  10. package/.agent/agents/complexity-reviewer.md +10 -7
  11. package/.agent/agents/database-architect.md +3 -2
  12. package/.agent/agents/db-latency-auditor.md +6 -2
  13. package/.agent/agents/debugger.md +3 -2
  14. package/.agent/agents/dependency-reviewer.md +1 -0
  15. package/.agent/agents/devops-engineer.md +9 -8
  16. package/.agent/agents/documentation-writer.md +6 -5
  17. package/.agent/agents/explorer-agent.md +1 -0
  18. package/.agent/agents/frontend-reviewer.md +21 -17
  19. package/.agent/agents/frontend-specialist.md +23 -20
  20. package/.agent/agents/game-developer.md +1 -0
  21. package/.agent/agents/interaction-reviewer.md +10 -5
  22. package/.agent/agents/logic-reviewer.md +3 -0
  23. package/.agent/agents/minimalist-reviewer.md +6 -0
  24. package/.agent/agents/mobile-developer.md +7 -6
  25. package/.agent/agents/mobile-reviewer.md +14 -13
  26. package/.agent/agents/orchestrator.md +3 -0
  27. package/.agent/agents/penetration-tester.md +1 -0
  28. package/.agent/agents/performance-optimizer.md +6 -5
  29. package/.agent/agents/performance-reviewer.md +6 -6
  30. package/.agent/agents/pipeline-reviewer.md +144 -0
  31. package/.agent/agents/precedence-reviewer.md +1 -0
  32. package/.agent/agents/product-manager.md +1 -0
  33. package/.agent/agents/product-owner.md +1 -0
  34. package/.agent/agents/product-reviewer.md +12 -7
  35. package/.agent/agents/project-planner.md +3 -0
  36. package/.agent/agents/qa-automation-engineer.md +50 -43
  37. package/.agent/agents/resilience-reviewer.md +1 -0
  38. package/.agent/agents/schema-reviewer.md +1 -0
  39. package/.agent/agents/security-auditor.md +24 -24
  40. package/.agent/agents/seo-specialist.md +33 -23
  41. package/.agent/agents/sql-reviewer.md +5 -4
  42. package/.agent/agents/supervisor-agent.md +12 -2
  43. package/.agent/agents/swarm-worker-contracts.md +13 -13
  44. package/.agent/agents/swarm-worker-registry.md +51 -51
  45. package/.agent/agents/system-architect.md +1 -0
  46. package/.agent/agents/test-coverage-reviewer.md +25 -22
  47. package/.agent/agents/test-engineer.md +12 -11
  48. package/.agent/agents/throughput-optimizer.md +45 -40
  49. package/.agent/agents/type-safety-reviewer.md +5 -4
  50. package/.agent/agents/ui-ux-auditor.md +6 -4
  51. package/.agent/agents/ui-visual-auditor.md +3 -0
  52. package/.agent/agents/ux-reviewer.md +11 -6
  53. package/.agent/agents/visual-reviewer.md +11 -6
  54. package/.agent/agents/vitals-reviewer.md +5 -4
  55. package/.agent/history/memory/.memory.idx +3716 -1
  56. package/.agent/history/memory/MEMORY.md +246 -1
  57. package/.agent/mcp_config.json +1 -6
  58. package/.agent/routing_index.json +2034 -263
  59. package/.agent/rules/GEMINI.md +12 -10
  60. package/.agent/rules/GEMINI_PLANNER.md +19 -21
  61. package/.agent/scripts/_colors.js +52 -54
  62. package/.agent/scripts/_utils.js +52 -53
  63. package/.agent/scripts/auto_preview.js +39 -43
  64. package/.agent/scripts/bundle_analyzer.js +47 -60
  65. package/.agent/scripts/case_law_manager.js +200 -294
  66. package/.agent/scripts/checklist.js +73 -94
  67. package/.agent/scripts/cicd_validator.js +305 -0
  68. package/.agent/scripts/compile_router.py +4 -111
  69. package/.agent/scripts/context_broker.js +317 -412
  70. package/.agent/scripts/contract_engine.js +402 -0
  71. package/.agent/scripts/dependency_analyzer.js +112 -124
  72. package/.agent/scripts/graph_builder.js +75 -103
  73. package/.agent/scripts/graph_visualizer.js +10 -12
  74. package/.agent/scripts/graph_zoom.js +38 -55
  75. package/.agent/scripts/guardrail_engine.js +195 -145
  76. package/.agent/scripts/impact_classifier.js +55 -30
  77. package/.agent/scripts/inner_loop_validator.js +108 -159
  78. package/.agent/scripts/integrity_manifest.js +59 -67
  79. package/.agent/scripts/lint_runner.js +65 -75
  80. package/.agent/scripts/marathon_harness.js +131 -208
  81. package/.agent/scripts/migrate_skills_frontmatter.py +4 -63
  82. package/.agent/scripts/minify_context.js +29 -33
  83. package/.agent/scripts/minimal_change_engine.js +95 -87
  84. package/.agent/scripts/mutation_runner.js +46 -62
  85. package/.agent/scripts/pipeline_engine.js +320 -209
  86. package/.agent/scripts/prompt_compiler.js +118 -93
  87. package/.agent/scripts/schema_validator.js +73 -121
  88. package/.agent/scripts/security_scan.js +88 -117
  89. package/.agent/scripts/session_manager.js +52 -69
  90. package/.agent/scripts/signal_detector.js +24 -22
  91. package/.agent/scripts/skill_evolution.js +184 -245
  92. package/.agent/scripts/skill_integrator.js +35 -48
  93. package/.agent/scripts/socratic_gate_policy.js +15 -12
  94. package/.agent/scripts/strengthen_skills.js +29 -33
  95. package/.agent/scripts/swarm_dispatcher.js +120 -151
  96. package/.agent/scripts/test_runner.js +54 -56
  97. package/.agent/scripts/token_budget_broker.js +9 -7
  98. package/.agent/scripts/trace_engine.js +126 -0
  99. package/.agent/scripts/verify_all.js +76 -93
  100. package/.agent/scripts/visual_audit.js +16 -21
  101. package/.agent/skill_topic_map.json +237 -0
  102. package/.agent/skills/12-principles-of-animation/SKILL.md +7 -0
  103. package/.agent/skills/60fps-animation/SKILL.md +7 -0
  104. package/.agent/skills/accessible-animation/SKILL.md +5 -1
  105. package/.agent/skills/adapt/SKILL.md +7 -1
  106. package/.agent/skills/advanced-rag-pipelines/SKILL.md +1 -0
  107. package/.agent/skills/agent-organizer/SKILL.md +1 -0
  108. package/.agent/skills/agentic-patterns/SKILL.md +33 -25
  109. package/.agent/skills/agentic-workflows-2026/SKILL.md +80 -0
  110. package/.agent/skills/ai-app-hardening/SKILL.md +59 -0
  111. package/.agent/skills/ai-prompt-injection-defense/SKILL.md +7 -6
  112. package/.agent/skills/animation-on-scroll/SKILL.md +24 -15
  113. package/.agent/skills/animation-systems/SKILL.md +11 -10
  114. package/.agent/skills/antfu-conventions/SKILL.md +7 -2
  115. package/.agent/skills/api-patterns/SKILL.md +14 -10
  116. package/.agent/skills/api-security-auditor/SKILL.md +15 -14
  117. package/.agent/skills/app-builder/SKILL.md +1 -0
  118. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +2 -2
  119. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +1 -1
  120. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +12 -12
  121. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +3 -3
  122. package/.agent/skills/apple-design/SKILL.md +8 -7
  123. package/.agent/skills/architecture/SKILL.md +3 -2
  124. package/.agent/skills/audit-and-fix/SKILL.md +8 -5
  125. package/.agent/skills/authentication-best-practices/SKILL.md +9 -8
  126. package/.agent/skills/backend-security-expert/SKILL.md +1 -0
  127. package/.agent/skills/baseline-ui/SKILL.md +8 -7
  128. package/.agent/skills/bash-linux/SKILL.md +1 -0
  129. package/.agent/skills/behavioral-modes/SKILL.md +1 -0
  130. package/.agent/skills/better-colors/SKILL.md +11 -7
  131. package/.agent/skills/better-typography/SKILL.md +30 -16
  132. package/.agent/skills/better-ui/SKILL.md +17 -10
  133. package/.agent/skills/bolder/SKILL.md +6 -0
  134. package/.agent/skills/brainstorming/SKILL.md +6 -4
  135. package/.agent/skills/browser-native-ai/SKILL.md +5 -4
  136. package/.agent/skills/build-primitive/SKILL.md +5 -0
  137. package/.agent/skills/building-native-ui/SKILL.md +1 -0
  138. package/.agent/skills/cicd-pro/SKILL.md +2 -1
  139. package/.agent/skills/clarify/SKILL.md +19 -14
  140. package/.agent/skills/clean-code/SKILL.md +16 -15
  141. package/.agent/skills/cloud-architect/SKILL.md +1 -0
  142. package/.agent/skills/cobejs/SKILL.md +7 -9
  143. package/.agent/skills/code-review-checklist/SKILL.md +1 -0
  144. package/.agent/skills/codebase-design/SKILL.md +7 -2
  145. package/.agent/skills/colorize/SKILL.md +8 -3
  146. package/.agent/skills/compact-landing/SKILL.md +8 -3
  147. package/.agent/skills/company-logos/SKILL.md +6 -0
  148. package/.agent/skills/config-validator/SKILL.md +10 -9
  149. package/.agent/skills/containerization-pro/SKILL.md +6 -5
  150. package/.agent/skills/context-engineering-pro/SKILL.md +70 -0
  151. package/.agent/skills/create-design-md/SKILL.md +13 -5
  152. package/.agent/skills/critique/SKILL.md +10 -8
  153. package/.agent/skills/csharp-developer/SKILL.md +1 -0
  154. package/.agent/skills/data-validation-schemas/SKILL.md +28 -23
  155. package/.agent/skills/database-design/SKILL.md +2 -1
  156. package/.agent/skills/delight/SKILL.md +6 -0
  157. package/.agent/skills/deployment-procedures/SKILL.md +2 -1
  158. package/.agent/skills/design-lab/SKILL.md +5 -0
  159. package/.agent/skills/devops-engineer/SKILL.md +3 -2
  160. package/.agent/skills/devops-incident-responder/SKILL.md +2 -1
  161. package/.agent/skills/diagnosing-bugs/SKILL.md +12 -2
  162. package/.agent/skills/distill/SKILL.md +7 -2
  163. package/.agent/skills/documentation-templates/SKILL.md +3 -2
  164. package/.agent/skills/domain-modeling/SKILL.md +12 -4
  165. package/.agent/skills/duckdb-analytical-sql/SKILL.md +59 -0
  166. package/.agent/skills/edge-ai-mobile/SKILL.md +50 -0
  167. package/.agent/skills/edge-computing/SKILL.md +9 -8
  168. package/.agent/skills/emil-design-eng/SKILL.md +43 -27
  169. package/.agent/skills/error-resilience/SKILL.md +34 -16
  170. package/.agent/skills/expo-router-v4/SKILL.md +81 -0
  171. package/.agent/skills/extract-design-system/SKILL.md +12 -11
  172. package/.agent/skills/fabel-protocol/SKILL.md +24 -17
  173. package/.agent/skills/fixing-accessibility/SKILL.md +23 -16
  174. package/.agent/skills/fixing-metadata/SKILL.md +24 -13
  175. package/.agent/skills/fixing-motion-performance/SKILL.md +7 -5
  176. package/.agent/skills/framer-motion-expert/SKILL.md +29 -15
  177. package/.agent/skills/frontend-design/SKILL.md +21 -13
  178. package/.agent/skills/frontend-security-expert/SKILL.md +1 -0
  179. package/.agent/skills/game-design-expert/SKILL.md +1 -0
  180. package/.agent/skills/game-engineering-expert/SKILL.md +1 -0
  181. package/.agent/skills/generative-ui-expert/SKILL.md +3 -2
  182. package/.agent/skills/geo-fundamentals/SKILL.md +2 -1
  183. package/.agent/skills/git-pro/SKILL.md +10 -9
  184. package/.agent/skills/github-operations/SKILL.md +2 -1
  185. package/.agent/skills/gpt-taste/SKILL.md +7 -0
  186. package/.agent/skills/gsap-core/SKILL.md +26 -22
  187. package/.agent/skills/gsap-frameworks/SKILL.md +6 -5
  188. package/.agent/skills/gsap-performance/SKILL.md +4 -3
  189. package/.agent/skills/gsap-plugins/SKILL.md +34 -33
  190. package/.agent/skills/gsap-react/SKILL.md +9 -8
  191. package/.agent/skills/gsap-scrolltrigger/SKILL.md +34 -33
  192. package/.agent/skills/gsap-timeline/SKILL.md +18 -15
  193. package/.agent/skills/gsap-utils/SKILL.md +25 -24
  194. package/.agent/skills/harden/SKILL.md +9 -3
  195. package/.agent/skills/harness-protocol/SKILL.md +1 -0
  196. package/.agent/skills/i18n-localization/SKILL.md +10 -9
  197. package/.agent/skills/impeccable/SKILL.md +5 -0
  198. package/.agent/skills/improve-codebase-architecture/SKILL.md +10 -5
  199. package/.agent/skills/improve-ui/SKILL.md +12 -5
  200. package/.agent/skills/intelligent-routing/SKILL.md +7 -6
  201. package/.agent/skills/knowledge-graph/SKILL.md +1 -0
  202. package/.agent/skills/landing-page/SKILL.md +1 -0
  203. package/.agent/skills/lint-and-validate/SKILL.md +9 -4
  204. package/.agent/skills/llm-engineering/SKILL.md +55 -54
  205. package/.agent/skills/local-first/SKILL.md +20 -19
  206. package/.agent/skills/local-first-architecture/SKILL.md +6 -1
  207. package/.agent/skills/lottie-animation/SKILL.md +7 -3
  208. package/.agent/skills/marquee-loop/SKILL.md +1 -0
  209. package/.agent/skills/masked-reveal/SKILL.md +17 -4
  210. package/.agent/skills/mcp-builder/SKILL.md +13 -10
  211. package/.agent/skills/micro-interaction/SKILL.md +20 -5
  212. package/.agent/skills/mobile-design/SKILL.md +26 -15
  213. package/.agent/skills/monorepo-management/SKILL.md +3 -2
  214. package/.agent/skills/morphing-icons/SKILL.md +16 -6
  215. package/.agent/skills/motion-engineering/SKILL.md +19 -15
  216. package/.agent/skills/nextjs-react-expert/SKILL.md +26 -21
  217. package/.agent/skills/nodejs-best-practices/SKILL.md +89 -76
  218. package/.agent/skills/observability/SKILL.md +45 -44
  219. package/.agent/skills/opentelemetry-observability/SKILL.md +59 -0
  220. package/.agent/skills/page-transition-animation/SKILL.md +6 -3
  221. package/.agent/skills/parallel-agents/SKILL.md +7 -2
  222. package/.agent/skills/performance-profiling/SKILL.md +24 -13
  223. package/.agent/skills/plan-writing/SKILL.md +1 -0
  224. package/.agent/skills/platform-engineer/SKILL.md +3 -2
  225. package/.agent/skills/platform-engineering-opentofu/SKILL.md +68 -0
  226. package/.agent/skills/playwright-ai-e2e/SKILL.md +60 -0
  227. package/.agent/skills/playwright-best-practices/SKILL.md +29 -28
  228. package/.agent/skills/polish/SKILL.md +13 -12
  229. package/.agent/skills/powershell-windows/SKILL.md +1 -0
  230. package/.agent/skills/pricing-page/SKILL.md +8 -3
  231. package/.agent/skills/product-aware-heuristics/SKILL.md +122 -72
  232. package/.agent/skills/progressive-blur/SKILL.md +9 -4
  233. package/.agent/skills/project-idioms/SKILL.md +1 -0
  234. package/.agent/skills/property-based-testing/SKILL.md +58 -0
  235. package/.agent/skills/python-patterns/SKILL.md +1 -0
  236. package/.agent/skills/python-pro/SKILL.md +1 -0
  237. package/.agent/skills/quieter/SKILL.md +6 -0
  238. package/.agent/skills/react-doctor/SKILL.md +6 -0
  239. package/.agent/skills/react-specialist/SKILL.md +32 -28
  240. package/.agent/skills/readme-builder/SKILL.md +1 -0
  241. package/.agent/skills/realtime-patterns/SKILL.md +34 -33
  242. package/.agent/skills/red-team-tactics/SKILL.md +1 -0
  243. package/.agent/skills/redesign-skill/SKILL.md +6 -0
  244. package/.agent/skills/review-animations/SKILL.md +5 -2
  245. package/.agent/skills/review-animations/STANDARDS.md +37 -23
  246. package/.agent/skills/rust-pro/SKILL.md +1 -0
  247. package/.agent/skills/seo-fundamentals/SKILL.md +4 -3
  248. package/.agent/skills/server-management/SKILL.md +1 -0
  249. package/.agent/skills/shadcn-ui-expert/SKILL.md +28 -22
  250. package/.agent/skills/shape/SKILL.md +9 -2
  251. package/.agent/skills/skill-creator/SKILL.md +1 -0
  252. package/.agent/skills/soft-skill/SKILL.md +6 -0
  253. package/.agent/skills/sounds-on-the-web/SKILL.md +1 -0
  254. package/.agent/skills/sql-pro/SKILL.md +1 -0
  255. package/.agent/skills/supabase-postgres-best-practices/SKILL.md +1 -0
  256. package/.agent/skills/svg-animation/SKILL.md +16 -7
  257. package/.agent/skills/swiftui-expert/SKILL.md +1 -0
  258. package/.agent/skills/swiss-design/SKILL.md +5 -0
  259. package/.agent/skills/system-design-pro/SKILL.md +1 -0
  260. package/.agent/skills/systematic-debugging/SKILL.md +1 -0
  261. package/.agent/skills/tailwind-patterns/SKILL.md +25 -11
  262. package/.agent/skills/taste-skill/SKILL.md +6 -0
  263. package/.agent/skills/tdd-workflow/SKILL.md +5 -0
  264. package/.agent/skills/test-result-analyzer/SKILL.md +1 -0
  265. package/.agent/skills/testing-patterns/SKILL.md +123 -115
  266. package/.agent/skills/thermo-nuclear-code-quality-review/SKILL.md +5 -0
  267. package/.agent/skills/thinking-protocol/SKILL.md +3 -0
  268. package/.agent/skills/to-spring-or-not-to-spring/SKILL.md +9 -8
  269. package/.agent/skills/transitions-dev/SKILL.md +19 -6
  270. package/.agent/skills/trend-researcher/SKILL.md +1 -0
  271. package/.agent/skills/typescript-advanced/SKILL.md +23 -18
  272. package/.agent/skills/typeset/SKILL.md +10 -1
  273. package/.agent/skills/ui-reasoning-engine/SKILL.md +67 -48
  274. package/.agent/skills/ui-skill-packs/SKILL.md +6 -1
  275. package/.agent/skills/ui-skills-root/SKILL.md +39 -38
  276. package/.agent/skills/ui-ux-pro-max/SKILL.md +34 -26
  277. package/.agent/skills/ui-ux-researcher/SKILL.md +1 -0
  278. package/.agent/skills/vector-search-pgvector/SKILL.md +78 -0
  279. package/.agent/skills/vue-expert/SKILL.md +22 -19
  280. package/.agent/skills/vulnerability-scanner/SKILL.md +22 -21
  281. package/.agent/skills/web-accessibility-auditor/SKILL.md +2 -1
  282. package/.agent/skills/web-design-guidelines/SKILL.md +16 -10
  283. package/.agent/skills/web-quality-audit/SKILL.md +5 -0
  284. package/.agent/skills/webapp-testing/SKILL.md +14 -13
  285. package/.agent/skills/webgpu-performance/SKILL.md +1 -0
  286. package/.agent/skills/whimsy-injector/SKILL.md +9 -5
  287. package/.agent/skills/workflow-optimizer/SKILL.md +1 -0
  288. package/.agent/skills/zero-trust-passkeys/SKILL.md +90 -0
  289. package/.agent/templates/DESIGN.md +119 -110
  290. package/.agent/templates/design-tokens.json +9 -6
  291. package/.agent/workflows/acf.md +1 -0
  292. package/.agent/workflows/api-tester.md +1 -0
  293. package/.agent/workflows/audit.md +1 -0
  294. package/.agent/workflows/brainstorm.md +1 -0
  295. package/.agent/workflows/changelog.md +1 -0
  296. package/.agent/workflows/contract.md +60 -0
  297. package/.agent/workflows/create.md +1 -0
  298. package/.agent/workflows/debug.md +1 -0
  299. package/.agent/workflows/deploy.md +1 -0
  300. package/.agent/workflows/enhance.md +1 -0
  301. package/.agent/workflows/fix-ci.md +89 -0
  302. package/.agent/workflows/fix.md +1 -0
  303. package/.agent/workflows/generate.md +1 -0
  304. package/.agent/workflows/marathon.md +1 -0
  305. package/.agent/workflows/migrate.md +1 -0
  306. package/.agent/workflows/minimal.md +9 -7
  307. package/.agent/workflows/orchestrate.md +1 -0
  308. package/.agent/workflows/performance-benchmarker.md +1 -0
  309. package/.agent/workflows/pipeline.md +26 -21
  310. package/.agent/workflows/plan.md +1 -0
  311. package/.agent/workflows/preview.md +1 -0
  312. package/.agent/workflows/refactor.md +3 -2
  313. package/.agent/workflows/review-ai.md +4 -3
  314. package/.agent/workflows/review.md +1 -0
  315. package/.agent/workflows/session.md +1 -0
  316. package/.agent/workflows/status.md +1 -0
  317. package/.agent/workflows/strengthen-skills.md +1 -0
  318. package/.agent/workflows/super-prompt.md +1 -0
  319. package/.agent/workflows/swarm.md +15 -3
  320. package/.agent/workflows/test.md +8 -7
  321. package/.agent/workflows/tribunal-backend.md +3 -2
  322. package/.agent/workflows/tribunal-cicd.md +104 -0
  323. package/.agent/workflows/tribunal-database.md +1 -0
  324. package/.agent/workflows/tribunal-frontend.md +8 -6
  325. package/.agent/workflows/tribunal-full.md +15 -14
  326. package/.agent/workflows/tribunal-mobile.md +6 -5
  327. package/.agent/workflows/tribunal-performance.md +1 -0
  328. package/.agent/workflows/tribunal-speed.md +1 -0
  329. package/.agent/workflows/tribunal-ui.md +29 -21
  330. package/.agent/workflows/ui-ux-pro-max.md +19 -15
  331. package/CONTRIBUTING.md +3 -3
  332. package/README.md +160 -88
  333. package/SECURITY.md +11 -11
  334. package/bin/mcp-server.js +512 -233
  335. package/bin/tribunal-kit.js +29 -30
  336. package/bin/wrapper.js +45 -48
  337. package/dist/cli.js +26 -0
  338. package/dist/commands/case.js +2 -0
  339. package/dist/commands/contract.js +440 -0
  340. package/dist/commands/memory.js +3 -2
  341. package/dist/commands/native.js +36 -0
  342. package/dist/commands/status.js +6 -0
  343. package/dist/esm/index.mjs +32 -0
  344. package/dist/index.d.ts +58 -3
  345. package/package.json +20 -16
  346. package/scripts/benchmark.js +62 -86
  347. package/scripts/changelog.js +67 -73
  348. package/scripts/fix-vbc.js +13 -15
  349. package/scripts/fix-vbc.ps1 +2 -118
  350. package/scripts/stress_benchmark.js +358 -0
  351. package/scripts/sync-version.js +71 -41
  352. package/scripts/validate-payload.js +23 -30
  353. package/scripts/visual_audit.js +23 -13
@@ -3875,7 +3875,3722 @@
3875
3875
  "token_estimate": 21,
3876
3876
  "source": "manual",
3877
3877
  "session_id": null
3878
+ },
3879
+ {
3880
+ "id": 256,
3881
+ "memory_type": "semantic",
3882
+ "content": ".agent/scripts/skill_evolution.js",
3883
+ "tags": [
3884
+ "project-idiom",
3885
+ "auto-learned"
3886
+ ],
3887
+ "created_at": "1785913103Z",
3888
+ "last_accessed": "1785913103Z",
3889
+ "access_count": 0,
3890
+ "token_estimate": 9,
3891
+ "source": "manual",
3892
+ "session_id": null
3893
+ },
3894
+ {
3895
+ "id": 257,
3896
+ "memory_type": "semantic",
3897
+ "content": ".agent/scripts/verify_all.js",
3898
+ "tags": [
3899
+ "project-idiom",
3900
+ "auto-learned"
3901
+ ],
3902
+ "created_at": "1785913103Z",
3903
+ "last_accessed": "1785913103Z",
3904
+ "access_count": 0,
3905
+ "token_estimate": 7,
3906
+ "source": "manual",
3907
+ "session_id": null
3908
+ },
3909
+ {
3910
+ "id": 258,
3911
+ "memory_type": "semantic",
3912
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
3913
+ "tags": [
3914
+ "project-idiom",
3915
+ "auto-learned"
3916
+ ],
3917
+ "created_at": "1785913103Z",
3918
+ "last_accessed": "1785913103Z",
3919
+ "access_count": 0,
3920
+ "token_estimate": 32,
3921
+ "source": "manual",
3922
+ "session_id": null
3923
+ },
3924
+ {
3925
+ "id": 259,
3926
+ "memory_type": "semantic",
3927
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
3928
+ "tags": [
3929
+ "project-idiom",
3930
+ "auto-learned"
3931
+ ],
3932
+ "created_at": "1785913103Z",
3933
+ "last_accessed": "1785913103Z",
3934
+ "access_count": 0,
3935
+ "token_estimate": 34,
3936
+ "source": "manual",
3937
+ "session_id": null
3938
+ },
3939
+ {
3940
+ "id": 260,
3941
+ "memory_type": "semantic",
3942
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
3943
+ "tags": [
3944
+ "project-idiom",
3945
+ "auto-learned"
3946
+ ],
3947
+ "created_at": "1785913103Z",
3948
+ "last_accessed": "1785913103Z",
3949
+ "access_count": 0,
3950
+ "token_estimate": 20,
3951
+ "source": "manual",
3952
+ "session_id": null
3953
+ },
3954
+ {
3955
+ "id": 261,
3956
+ "memory_type": "semantic",
3957
+ "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.",
3958
+ "tags": [
3959
+ "project-idiom",
3960
+ "auto-learned"
3961
+ ],
3962
+ "created_at": "1785913103Z",
3963
+ "last_accessed": "1785913103Z",
3964
+ "access_count": 0,
3965
+ "token_estimate": 54,
3966
+ "source": "manual",
3967
+ "session_id": null
3968
+ },
3969
+ {
3970
+ "id": 262,
3971
+ "memory_type": "semantic",
3972
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
3973
+ "tags": [
3974
+ "project-idiom",
3975
+ "auto-learned"
3976
+ ],
3977
+ "created_at": "1785913103Z",
3978
+ "last_accessed": "1785913103Z",
3979
+ "access_count": 0,
3980
+ "token_estimate": 17,
3981
+ "source": "manual",
3982
+ "session_id": null
3983
+ },
3984
+ {
3985
+ "id": 263,
3986
+ "memory_type": "semantic",
3987
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
3988
+ "tags": [
3989
+ "project-idiom",
3990
+ "auto-learned"
3991
+ ],
3992
+ "created_at": "1785913104Z",
3993
+ "last_accessed": "1785913104Z",
3994
+ "access_count": 0,
3995
+ "token_estimate": 19,
3996
+ "source": "manual",
3997
+ "session_id": null
3998
+ },
3999
+ {
4000
+ "id": 264,
4001
+ "memory_type": "semantic",
4002
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4003
+ "tags": [
4004
+ "project-idiom",
4005
+ "auto-learned"
4006
+ ],
4007
+ "created_at": "1785913104Z",
4008
+ "last_accessed": "1785913104Z",
4009
+ "access_count": 0,
4010
+ "token_estimate": 20,
4011
+ "source": "manual",
4012
+ "session_id": null
4013
+ },
4014
+ {
4015
+ "id": 265,
4016
+ "memory_type": "semantic",
4017
+ "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.",
4018
+ "tags": [
4019
+ "project-idiom",
4020
+ "auto-learned"
4021
+ ],
4022
+ "created_at": "1785913104Z",
4023
+ "last_accessed": "1785913104Z",
4024
+ "access_count": 0,
4025
+ "token_estimate": 54,
4026
+ "source": "manual",
4027
+ "session_id": null
4028
+ },
4029
+ {
4030
+ "id": 266,
4031
+ "memory_type": "procedural",
4032
+ "content": "Run `npm run build:rust` to build the project",
4033
+ "tags": [
4034
+ "build-script",
4035
+ "build",
4036
+ "auto-learned"
4037
+ ],
4038
+ "created_at": "1785913104Z",
4039
+ "last_accessed": "1785913104Z",
4040
+ "access_count": 0,
4041
+ "token_estimate": 12,
4042
+ "source": "manual",
4043
+ "session_id": null
4044
+ },
4045
+ {
4046
+ "id": 267,
4047
+ "memory_type": "procedural",
4048
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
4049
+ "tags": [
4050
+ "build-script",
4051
+ "test",
4052
+ "auto-learned"
4053
+ ],
4054
+ "created_at": "1785913104Z",
4055
+ "last_accessed": "1785913104Z",
4056
+ "access_count": 0,
4057
+ "token_estimate": 21,
4058
+ "source": "manual",
4059
+ "session_id": null
4060
+ },
4061
+ {
4062
+ "id": 268,
4063
+ "memory_type": "semantic",
4064
+ "content": ".agent/scripts/skill_evolution.js",
4065
+ "tags": [
4066
+ "project-idiom",
4067
+ "auto-learned"
4068
+ ],
4069
+ "created_at": "1785913108Z",
4070
+ "last_accessed": "1785913108Z",
4071
+ "access_count": 0,
4072
+ "token_estimate": 9,
4073
+ "source": "manual",
4074
+ "session_id": null
4075
+ },
4076
+ {
4077
+ "id": 269,
4078
+ "memory_type": "semantic",
4079
+ "content": ".agent/scripts/verify_all.js",
4080
+ "tags": [
4081
+ "project-idiom",
4082
+ "auto-learned"
4083
+ ],
4084
+ "created_at": "1785913108Z",
4085
+ "last_accessed": "1785913108Z",
4086
+ "access_count": 0,
4087
+ "token_estimate": 7,
4088
+ "source": "manual",
4089
+ "session_id": null
4090
+ },
4091
+ {
4092
+ "id": 270,
4093
+ "memory_type": "semantic",
4094
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
4095
+ "tags": [
4096
+ "project-idiom",
4097
+ "auto-learned"
4098
+ ],
4099
+ "created_at": "1785913108Z",
4100
+ "last_accessed": "1785913108Z",
4101
+ "access_count": 0,
4102
+ "token_estimate": 32,
4103
+ "source": "manual",
4104
+ "session_id": null
4105
+ },
4106
+ {
4107
+ "id": 271,
4108
+ "memory_type": "semantic",
4109
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
4110
+ "tags": [
4111
+ "project-idiom",
4112
+ "auto-learned"
4113
+ ],
4114
+ "created_at": "1785913108Z",
4115
+ "last_accessed": "1785913108Z",
4116
+ "access_count": 0,
4117
+ "token_estimate": 34,
4118
+ "source": "manual",
4119
+ "session_id": null
4120
+ },
4121
+ {
4122
+ "id": 272,
4123
+ "memory_type": "semantic",
4124
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4125
+ "tags": [
4126
+ "project-idiom",
4127
+ "auto-learned"
4128
+ ],
4129
+ "created_at": "1785913108Z",
4130
+ "last_accessed": "1785913108Z",
4131
+ "access_count": 0,
4132
+ "token_estimate": 20,
4133
+ "source": "manual",
4134
+ "session_id": null
4135
+ },
4136
+ {
4137
+ "id": 273,
4138
+ "memory_type": "semantic",
4139
+ "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.",
4140
+ "tags": [
4141
+ "project-idiom",
4142
+ "auto-learned"
4143
+ ],
4144
+ "created_at": "1785913108Z",
4145
+ "last_accessed": "1785913108Z",
4146
+ "access_count": 0,
4147
+ "token_estimate": 54,
4148
+ "source": "manual",
4149
+ "session_id": null
4150
+ },
4151
+ {
4152
+ "id": 274,
4153
+ "memory_type": "semantic",
4154
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
4155
+ "tags": [
4156
+ "project-idiom",
4157
+ "auto-learned"
4158
+ ],
4159
+ "created_at": "1785913108Z",
4160
+ "last_accessed": "1785913108Z",
4161
+ "access_count": 0,
4162
+ "token_estimate": 17,
4163
+ "source": "manual",
4164
+ "session_id": null
4165
+ },
4166
+ {
4167
+ "id": 275,
4168
+ "memory_type": "semantic",
4169
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
4170
+ "tags": [
4171
+ "project-idiom",
4172
+ "auto-learned"
4173
+ ],
4174
+ "created_at": "1785913108Z",
4175
+ "last_accessed": "1785913108Z",
4176
+ "access_count": 0,
4177
+ "token_estimate": 19,
4178
+ "source": "manual",
4179
+ "session_id": null
4180
+ },
4181
+ {
4182
+ "id": 276,
4183
+ "memory_type": "semantic",
4184
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4185
+ "tags": [
4186
+ "project-idiom",
4187
+ "auto-learned"
4188
+ ],
4189
+ "created_at": "1785913108Z",
4190
+ "last_accessed": "1785913108Z",
4191
+ "access_count": 0,
4192
+ "token_estimate": 20,
4193
+ "source": "manual",
4194
+ "session_id": null
4195
+ },
4196
+ {
4197
+ "id": 277,
4198
+ "memory_type": "semantic",
4199
+ "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.",
4200
+ "tags": [
4201
+ "project-idiom",
4202
+ "auto-learned"
4203
+ ],
4204
+ "created_at": "1785913108Z",
4205
+ "last_accessed": "1785913108Z",
4206
+ "access_count": 0,
4207
+ "token_estimate": 54,
4208
+ "source": "manual",
4209
+ "session_id": null
4210
+ },
4211
+ {
4212
+ "id": 278,
4213
+ "memory_type": "procedural",
4214
+ "content": "Run `npm run build:rust` to build the project",
4215
+ "tags": [
4216
+ "build-script",
4217
+ "build",
4218
+ "auto-learned"
4219
+ ],
4220
+ "created_at": "1785913108Z",
4221
+ "last_accessed": "1785913108Z",
4222
+ "access_count": 0,
4223
+ "token_estimate": 12,
4224
+ "source": "manual",
4225
+ "session_id": null
4226
+ },
4227
+ {
4228
+ "id": 279,
4229
+ "memory_type": "procedural",
4230
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
4231
+ "tags": [
4232
+ "build-script",
4233
+ "test",
4234
+ "auto-learned"
4235
+ ],
4236
+ "created_at": "1785913108Z",
4237
+ "last_accessed": "1785913108Z",
4238
+ "access_count": 0,
4239
+ "token_estimate": 21,
4240
+ "source": "manual",
4241
+ "session_id": null
4242
+ },
4243
+ {
4244
+ "id": 280,
4245
+ "memory_type": "semantic",
4246
+ "content": ".agent/scripts/skill_evolution.js",
4247
+ "tags": [
4248
+ "project-idiom",
4249
+ "auto-learned"
4250
+ ],
4251
+ "created_at": "1785913487Z",
4252
+ "last_accessed": "1785913487Z",
4253
+ "access_count": 0,
4254
+ "token_estimate": 9,
4255
+ "source": "manual",
4256
+ "session_id": null
4257
+ },
4258
+ {
4259
+ "id": 281,
4260
+ "memory_type": "semantic",
4261
+ "content": ".agent/scripts/verify_all.js",
4262
+ "tags": [
4263
+ "project-idiom",
4264
+ "auto-learned"
4265
+ ],
4266
+ "created_at": "1785913487Z",
4267
+ "last_accessed": "1785913487Z",
4268
+ "access_count": 0,
4269
+ "token_estimate": 7,
4270
+ "source": "manual",
4271
+ "session_id": null
4272
+ },
4273
+ {
4274
+ "id": 282,
4275
+ "memory_type": "semantic",
4276
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
4277
+ "tags": [
4278
+ "project-idiom",
4279
+ "auto-learned"
4280
+ ],
4281
+ "created_at": "1785913487Z",
4282
+ "last_accessed": "1785913487Z",
4283
+ "access_count": 0,
4284
+ "token_estimate": 32,
4285
+ "source": "manual",
4286
+ "session_id": null
4287
+ },
4288
+ {
4289
+ "id": 283,
4290
+ "memory_type": "semantic",
4291
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
4292
+ "tags": [
4293
+ "project-idiom",
4294
+ "auto-learned"
4295
+ ],
4296
+ "created_at": "1785913487Z",
4297
+ "last_accessed": "1785913487Z",
4298
+ "access_count": 0,
4299
+ "token_estimate": 34,
4300
+ "source": "manual",
4301
+ "session_id": null
4302
+ },
4303
+ {
4304
+ "id": 284,
4305
+ "memory_type": "semantic",
4306
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4307
+ "tags": [
4308
+ "project-idiom",
4309
+ "auto-learned"
4310
+ ],
4311
+ "created_at": "1785913487Z",
4312
+ "last_accessed": "1785913487Z",
4313
+ "access_count": 0,
4314
+ "token_estimate": 20,
4315
+ "source": "manual",
4316
+ "session_id": null
4317
+ },
4318
+ {
4319
+ "id": 285,
4320
+ "memory_type": "semantic",
4321
+ "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.",
4322
+ "tags": [
4323
+ "project-idiom",
4324
+ "auto-learned"
4325
+ ],
4326
+ "created_at": "1785913488Z",
4327
+ "last_accessed": "1785913488Z",
4328
+ "access_count": 0,
4329
+ "token_estimate": 54,
4330
+ "source": "manual",
4331
+ "session_id": null
4332
+ },
4333
+ {
4334
+ "id": 286,
4335
+ "memory_type": "semantic",
4336
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
4337
+ "tags": [
4338
+ "project-idiom",
4339
+ "auto-learned"
4340
+ ],
4341
+ "created_at": "1785913488Z",
4342
+ "last_accessed": "1785913488Z",
4343
+ "access_count": 0,
4344
+ "token_estimate": 17,
4345
+ "source": "manual",
4346
+ "session_id": null
4347
+ },
4348
+ {
4349
+ "id": 287,
4350
+ "memory_type": "semantic",
4351
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
4352
+ "tags": [
4353
+ "project-idiom",
4354
+ "auto-learned"
4355
+ ],
4356
+ "created_at": "1785913488Z",
4357
+ "last_accessed": "1785913488Z",
4358
+ "access_count": 0,
4359
+ "token_estimate": 19,
4360
+ "source": "manual",
4361
+ "session_id": null
4362
+ },
4363
+ {
4364
+ "id": 288,
4365
+ "memory_type": "semantic",
4366
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4367
+ "tags": [
4368
+ "project-idiom",
4369
+ "auto-learned"
4370
+ ],
4371
+ "created_at": "1785913488Z",
4372
+ "last_accessed": "1785913488Z",
4373
+ "access_count": 0,
4374
+ "token_estimate": 20,
4375
+ "source": "manual",
4376
+ "session_id": null
4377
+ },
4378
+ {
4379
+ "id": 289,
4380
+ "memory_type": "semantic",
4381
+ "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.",
4382
+ "tags": [
4383
+ "project-idiom",
4384
+ "auto-learned"
4385
+ ],
4386
+ "created_at": "1785913488Z",
4387
+ "last_accessed": "1785913488Z",
4388
+ "access_count": 0,
4389
+ "token_estimate": 54,
4390
+ "source": "manual",
4391
+ "session_id": null
4392
+ },
4393
+ {
4394
+ "id": 290,
4395
+ "memory_type": "procedural",
4396
+ "content": "Run `npm run build:rust` to build the project",
4397
+ "tags": [
4398
+ "build-script",
4399
+ "build",
4400
+ "auto-learned"
4401
+ ],
4402
+ "created_at": "1785913488Z",
4403
+ "last_accessed": "1785913488Z",
4404
+ "access_count": 0,
4405
+ "token_estimate": 12,
4406
+ "source": "manual",
4407
+ "session_id": null
4408
+ },
4409
+ {
4410
+ "id": 291,
4411
+ "memory_type": "procedural",
4412
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
4413
+ "tags": [
4414
+ "build-script",
4415
+ "test",
4416
+ "auto-learned"
4417
+ ],
4418
+ "created_at": "1785913488Z",
4419
+ "last_accessed": "1785913488Z",
4420
+ "access_count": 0,
4421
+ "token_estimate": 21,
4422
+ "source": "manual",
4423
+ "session_id": null
4424
+ },
4425
+ {
4426
+ "id": 292,
4427
+ "memory_type": "semantic",
4428
+ "content": ".agent/scripts/skill_evolution.js",
4429
+ "tags": [
4430
+ "project-idiom",
4431
+ "auto-learned"
4432
+ ],
4433
+ "created_at": "1785913493Z",
4434
+ "last_accessed": "1785913493Z",
4435
+ "access_count": 0,
4436
+ "token_estimate": 9,
4437
+ "source": "manual",
4438
+ "session_id": null
4439
+ },
4440
+ {
4441
+ "id": 293,
4442
+ "memory_type": "semantic",
4443
+ "content": ".agent/scripts/verify_all.js",
4444
+ "tags": [
4445
+ "project-idiom",
4446
+ "auto-learned"
4447
+ ],
4448
+ "created_at": "1785913493Z",
4449
+ "last_accessed": "1785913493Z",
4450
+ "access_count": 0,
4451
+ "token_estimate": 7,
4452
+ "source": "manual",
4453
+ "session_id": null
4454
+ },
4455
+ {
4456
+ "id": 294,
4457
+ "memory_type": "semantic",
4458
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
4459
+ "tags": [
4460
+ "project-idiom",
4461
+ "auto-learned"
4462
+ ],
4463
+ "created_at": "1785913493Z",
4464
+ "last_accessed": "1785913493Z",
4465
+ "access_count": 0,
4466
+ "token_estimate": 32,
4467
+ "source": "manual",
4468
+ "session_id": null
4469
+ },
4470
+ {
4471
+ "id": 295,
4472
+ "memory_type": "semantic",
4473
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
4474
+ "tags": [
4475
+ "project-idiom",
4476
+ "auto-learned"
4477
+ ],
4478
+ "created_at": "1785913493Z",
4479
+ "last_accessed": "1785913493Z",
4480
+ "access_count": 0,
4481
+ "token_estimate": 34,
4482
+ "source": "manual",
4483
+ "session_id": null
4484
+ },
4485
+ {
4486
+ "id": 296,
4487
+ "memory_type": "semantic",
4488
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4489
+ "tags": [
4490
+ "project-idiom",
4491
+ "auto-learned"
4492
+ ],
4493
+ "created_at": "1785913493Z",
4494
+ "last_accessed": "1785913493Z",
4495
+ "access_count": 0,
4496
+ "token_estimate": 20,
4497
+ "source": "manual",
4498
+ "session_id": null
4499
+ },
4500
+ {
4501
+ "id": 297,
4502
+ "memory_type": "semantic",
4503
+ "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.",
4504
+ "tags": [
4505
+ "project-idiom",
4506
+ "auto-learned"
4507
+ ],
4508
+ "created_at": "1785913493Z",
4509
+ "last_accessed": "1785913493Z",
4510
+ "access_count": 0,
4511
+ "token_estimate": 54,
4512
+ "source": "manual",
4513
+ "session_id": null
4514
+ },
4515
+ {
4516
+ "id": 298,
4517
+ "memory_type": "semantic",
4518
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
4519
+ "tags": [
4520
+ "project-idiom",
4521
+ "auto-learned"
4522
+ ],
4523
+ "created_at": "1785913493Z",
4524
+ "last_accessed": "1785913493Z",
4525
+ "access_count": 0,
4526
+ "token_estimate": 17,
4527
+ "source": "manual",
4528
+ "session_id": null
4529
+ },
4530
+ {
4531
+ "id": 299,
4532
+ "memory_type": "semantic",
4533
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
4534
+ "tags": [
4535
+ "project-idiom",
4536
+ "auto-learned"
4537
+ ],
4538
+ "created_at": "1785913493Z",
4539
+ "last_accessed": "1785913493Z",
4540
+ "access_count": 0,
4541
+ "token_estimate": 19,
4542
+ "source": "manual",
4543
+ "session_id": null
4544
+ },
4545
+ {
4546
+ "id": 300,
4547
+ "memory_type": "semantic",
4548
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4549
+ "tags": [
4550
+ "project-idiom",
4551
+ "auto-learned"
4552
+ ],
4553
+ "created_at": "1785913493Z",
4554
+ "last_accessed": "1785913493Z",
4555
+ "access_count": 0,
4556
+ "token_estimate": 20,
4557
+ "source": "manual",
4558
+ "session_id": null
4559
+ },
4560
+ {
4561
+ "id": 301,
4562
+ "memory_type": "semantic",
4563
+ "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.",
4564
+ "tags": [
4565
+ "project-idiom",
4566
+ "auto-learned"
4567
+ ],
4568
+ "created_at": "1785913493Z",
4569
+ "last_accessed": "1785913493Z",
4570
+ "access_count": 0,
4571
+ "token_estimate": 54,
4572
+ "source": "manual",
4573
+ "session_id": null
4574
+ },
4575
+ {
4576
+ "id": 302,
4577
+ "memory_type": "procedural",
4578
+ "content": "Run `npm run build:rust` to build the project",
4579
+ "tags": [
4580
+ "build-script",
4581
+ "build",
4582
+ "auto-learned"
4583
+ ],
4584
+ "created_at": "1785913493Z",
4585
+ "last_accessed": "1785913493Z",
4586
+ "access_count": 0,
4587
+ "token_estimate": 12,
4588
+ "source": "manual",
4589
+ "session_id": null
4590
+ },
4591
+ {
4592
+ "id": 303,
4593
+ "memory_type": "procedural",
4594
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
4595
+ "tags": [
4596
+ "build-script",
4597
+ "test",
4598
+ "auto-learned"
4599
+ ],
4600
+ "created_at": "1785913493Z",
4601
+ "last_accessed": "1785913493Z",
4602
+ "access_count": 0,
4603
+ "token_estimate": 21,
4604
+ "source": "manual",
4605
+ "session_id": null
4606
+ },
4607
+ {
4608
+ "id": 304,
4609
+ "memory_type": "semantic",
4610
+ "content": ".agent/scripts/skill_evolution.js",
4611
+ "tags": [
4612
+ "project-idiom",
4613
+ "auto-learned"
4614
+ ],
4615
+ "created_at": "1785914253Z",
4616
+ "last_accessed": "1785914253Z",
4617
+ "access_count": 0,
4618
+ "token_estimate": 9,
4619
+ "source": "manual",
4620
+ "session_id": null
4621
+ },
4622
+ {
4623
+ "id": 305,
4624
+ "memory_type": "semantic",
4625
+ "content": ".agent/scripts/verify_all.js",
4626
+ "tags": [
4627
+ "project-idiom",
4628
+ "auto-learned"
4629
+ ],
4630
+ "created_at": "1785914253Z",
4631
+ "last_accessed": "1785914253Z",
4632
+ "access_count": 0,
4633
+ "token_estimate": 7,
4634
+ "source": "manual",
4635
+ "session_id": null
4636
+ },
4637
+ {
4638
+ "id": 306,
4639
+ "memory_type": "semantic",
4640
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
4641
+ "tags": [
4642
+ "project-idiom",
4643
+ "auto-learned"
4644
+ ],
4645
+ "created_at": "1785914253Z",
4646
+ "last_accessed": "1785914253Z",
4647
+ "access_count": 0,
4648
+ "token_estimate": 32,
4649
+ "source": "manual",
4650
+ "session_id": null
4651
+ },
4652
+ {
4653
+ "id": 307,
4654
+ "memory_type": "semantic",
4655
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
4656
+ "tags": [
4657
+ "project-idiom",
4658
+ "auto-learned"
4659
+ ],
4660
+ "created_at": "1785914253Z",
4661
+ "last_accessed": "1785914253Z",
4662
+ "access_count": 0,
4663
+ "token_estimate": 34,
4664
+ "source": "manual",
4665
+ "session_id": null
4666
+ },
4667
+ {
4668
+ "id": 308,
4669
+ "memory_type": "semantic",
4670
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4671
+ "tags": [
4672
+ "project-idiom",
4673
+ "auto-learned"
4674
+ ],
4675
+ "created_at": "1785914253Z",
4676
+ "last_accessed": "1785914253Z",
4677
+ "access_count": 0,
4678
+ "token_estimate": 20,
4679
+ "source": "manual",
4680
+ "session_id": null
4681
+ },
4682
+ {
4683
+ "id": 309,
4684
+ "memory_type": "semantic",
4685
+ "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.",
4686
+ "tags": [
4687
+ "project-idiom",
4688
+ "auto-learned"
4689
+ ],
4690
+ "created_at": "1785914253Z",
4691
+ "last_accessed": "1785914253Z",
4692
+ "access_count": 0,
4693
+ "token_estimate": 54,
4694
+ "source": "manual",
4695
+ "session_id": null
4696
+ },
4697
+ {
4698
+ "id": 310,
4699
+ "memory_type": "semantic",
4700
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
4701
+ "tags": [
4702
+ "project-idiom",
4703
+ "auto-learned"
4704
+ ],
4705
+ "created_at": "1785914253Z",
4706
+ "last_accessed": "1785914253Z",
4707
+ "access_count": 0,
4708
+ "token_estimate": 17,
4709
+ "source": "manual",
4710
+ "session_id": null
4711
+ },
4712
+ {
4713
+ "id": 311,
4714
+ "memory_type": "semantic",
4715
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
4716
+ "tags": [
4717
+ "project-idiom",
4718
+ "auto-learned"
4719
+ ],
4720
+ "created_at": "1785914253Z",
4721
+ "last_accessed": "1785914253Z",
4722
+ "access_count": 0,
4723
+ "token_estimate": 19,
4724
+ "source": "manual",
4725
+ "session_id": null
4726
+ },
4727
+ {
4728
+ "id": 312,
4729
+ "memory_type": "semantic",
4730
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4731
+ "tags": [
4732
+ "project-idiom",
4733
+ "auto-learned"
4734
+ ],
4735
+ "created_at": "1785914253Z",
4736
+ "last_accessed": "1785914253Z",
4737
+ "access_count": 0,
4738
+ "token_estimate": 20,
4739
+ "source": "manual",
4740
+ "session_id": null
4741
+ },
4742
+ {
4743
+ "id": 313,
4744
+ "memory_type": "semantic",
4745
+ "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.",
4746
+ "tags": [
4747
+ "project-idiom",
4748
+ "auto-learned"
4749
+ ],
4750
+ "created_at": "1785914253Z",
4751
+ "last_accessed": "1785914253Z",
4752
+ "access_count": 0,
4753
+ "token_estimate": 54,
4754
+ "source": "manual",
4755
+ "session_id": null
4756
+ },
4757
+ {
4758
+ "id": 314,
4759
+ "memory_type": "procedural",
4760
+ "content": "Run `npm run build:rust` to build the project",
4761
+ "tags": [
4762
+ "build-script",
4763
+ "build",
4764
+ "auto-learned"
4765
+ ],
4766
+ "created_at": "1785914253Z",
4767
+ "last_accessed": "1785914253Z",
4768
+ "access_count": 0,
4769
+ "token_estimate": 12,
4770
+ "source": "manual",
4771
+ "session_id": null
4772
+ },
4773
+ {
4774
+ "id": 315,
4775
+ "memory_type": "procedural",
4776
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
4777
+ "tags": [
4778
+ "build-script",
4779
+ "test",
4780
+ "auto-learned"
4781
+ ],
4782
+ "created_at": "1785914253Z",
4783
+ "last_accessed": "1785914253Z",
4784
+ "access_count": 0,
4785
+ "token_estimate": 21,
4786
+ "source": "manual",
4787
+ "session_id": null
4788
+ },
4789
+ {
4790
+ "id": 316,
4791
+ "memory_type": "semantic",
4792
+ "content": ".agent/scripts/skill_evolution.js",
4793
+ "tags": [
4794
+ "project-idiom",
4795
+ "auto-learned"
4796
+ ],
4797
+ "created_at": "1785914415Z",
4798
+ "last_accessed": "1785914415Z",
4799
+ "access_count": 0,
4800
+ "token_estimate": 9,
4801
+ "source": "manual",
4802
+ "session_id": null
4803
+ },
4804
+ {
4805
+ "id": 317,
4806
+ "memory_type": "semantic",
4807
+ "content": ".agent/scripts/verify_all.js",
4808
+ "tags": [
4809
+ "project-idiom",
4810
+ "auto-learned"
4811
+ ],
4812
+ "created_at": "1785914415Z",
4813
+ "last_accessed": "1785914415Z",
4814
+ "access_count": 0,
4815
+ "token_estimate": 7,
4816
+ "source": "manual",
4817
+ "session_id": null
4818
+ },
4819
+ {
4820
+ "id": 318,
4821
+ "memory_type": "semantic",
4822
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
4823
+ "tags": [
4824
+ "project-idiom",
4825
+ "auto-learned"
4826
+ ],
4827
+ "created_at": "1785914415Z",
4828
+ "last_accessed": "1785914415Z",
4829
+ "access_count": 0,
4830
+ "token_estimate": 32,
4831
+ "source": "manual",
4832
+ "session_id": null
4833
+ },
4834
+ {
4835
+ "id": 319,
4836
+ "memory_type": "semantic",
4837
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
4838
+ "tags": [
4839
+ "project-idiom",
4840
+ "auto-learned"
4841
+ ],
4842
+ "created_at": "1785914415Z",
4843
+ "last_accessed": "1785914415Z",
4844
+ "access_count": 0,
4845
+ "token_estimate": 34,
4846
+ "source": "manual",
4847
+ "session_id": null
4848
+ },
4849
+ {
4850
+ "id": 320,
4851
+ "memory_type": "semantic",
4852
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4853
+ "tags": [
4854
+ "project-idiom",
4855
+ "auto-learned"
4856
+ ],
4857
+ "created_at": "1785914415Z",
4858
+ "last_accessed": "1785914415Z",
4859
+ "access_count": 0,
4860
+ "token_estimate": 20,
4861
+ "source": "manual",
4862
+ "session_id": null
4863
+ },
4864
+ {
4865
+ "id": 321,
4866
+ "memory_type": "semantic",
4867
+ "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.",
4868
+ "tags": [
4869
+ "project-idiom",
4870
+ "auto-learned"
4871
+ ],
4872
+ "created_at": "1785914415Z",
4873
+ "last_accessed": "1785914415Z",
4874
+ "access_count": 0,
4875
+ "token_estimate": 54,
4876
+ "source": "manual",
4877
+ "session_id": null
4878
+ },
4879
+ {
4880
+ "id": 322,
4881
+ "memory_type": "semantic",
4882
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
4883
+ "tags": [
4884
+ "project-idiom",
4885
+ "auto-learned"
4886
+ ],
4887
+ "created_at": "1785914415Z",
4888
+ "last_accessed": "1785914415Z",
4889
+ "access_count": 0,
4890
+ "token_estimate": 17,
4891
+ "source": "manual",
4892
+ "session_id": null
4893
+ },
4894
+ {
4895
+ "id": 323,
4896
+ "memory_type": "semantic",
4897
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
4898
+ "tags": [
4899
+ "project-idiom",
4900
+ "auto-learned"
4901
+ ],
4902
+ "created_at": "1785914415Z",
4903
+ "last_accessed": "1785914415Z",
4904
+ "access_count": 0,
4905
+ "token_estimate": 19,
4906
+ "source": "manual",
4907
+ "session_id": null
4908
+ },
4909
+ {
4910
+ "id": 324,
4911
+ "memory_type": "semantic",
4912
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
4913
+ "tags": [
4914
+ "project-idiom",
4915
+ "auto-learned"
4916
+ ],
4917
+ "created_at": "1785914415Z",
4918
+ "last_accessed": "1785914415Z",
4919
+ "access_count": 0,
4920
+ "token_estimate": 20,
4921
+ "source": "manual",
4922
+ "session_id": null
4923
+ },
4924
+ {
4925
+ "id": 325,
4926
+ "memory_type": "semantic",
4927
+ "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.",
4928
+ "tags": [
4929
+ "project-idiom",
4930
+ "auto-learned"
4931
+ ],
4932
+ "created_at": "1785914415Z",
4933
+ "last_accessed": "1785914415Z",
4934
+ "access_count": 0,
4935
+ "token_estimate": 54,
4936
+ "source": "manual",
4937
+ "session_id": null
4938
+ },
4939
+ {
4940
+ "id": 326,
4941
+ "memory_type": "procedural",
4942
+ "content": "Run `npm run build:rust` to build the project",
4943
+ "tags": [
4944
+ "build-script",
4945
+ "build",
4946
+ "auto-learned"
4947
+ ],
4948
+ "created_at": "1785914415Z",
4949
+ "last_accessed": "1785914415Z",
4950
+ "access_count": 0,
4951
+ "token_estimate": 12,
4952
+ "source": "manual",
4953
+ "session_id": null
4954
+ },
4955
+ {
4956
+ "id": 327,
4957
+ "memory_type": "procedural",
4958
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
4959
+ "tags": [
4960
+ "build-script",
4961
+ "test",
4962
+ "auto-learned"
4963
+ ],
4964
+ "created_at": "1785914415Z",
4965
+ "last_accessed": "1785914415Z",
4966
+ "access_count": 0,
4967
+ "token_estimate": 21,
4968
+ "source": "manual",
4969
+ "session_id": null
4970
+ },
4971
+ {
4972
+ "id": 328,
4973
+ "memory_type": "semantic",
4974
+ "content": ".agent/scripts/skill_evolution.js",
4975
+ "tags": [
4976
+ "project-idiom",
4977
+ "auto-learned"
4978
+ ],
4979
+ "created_at": "1786101727Z",
4980
+ "last_accessed": "1786101727Z",
4981
+ "access_count": 0,
4982
+ "token_estimate": 9,
4983
+ "source": "manual",
4984
+ "session_id": null
4985
+ },
4986
+ {
4987
+ "id": 329,
4988
+ "memory_type": "semantic",
4989
+ "content": ".agent/scripts/verify_all.js",
4990
+ "tags": [
4991
+ "project-idiom",
4992
+ "auto-learned"
4993
+ ],
4994
+ "created_at": "1786101727Z",
4995
+ "last_accessed": "1786101727Z",
4996
+ "access_count": 0,
4997
+ "token_estimate": 7,
4998
+ "source": "manual",
4999
+ "session_id": null
5000
+ },
5001
+ {
5002
+ "id": 330,
5003
+ "memory_type": "semantic",
5004
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
5005
+ "tags": [
5006
+ "project-idiom",
5007
+ "auto-learned"
5008
+ ],
5009
+ "created_at": "1786101727Z",
5010
+ "last_accessed": "1786101727Z",
5011
+ "access_count": 0,
5012
+ "token_estimate": 32,
5013
+ "source": "manual",
5014
+ "session_id": null
5015
+ },
5016
+ {
5017
+ "id": 331,
5018
+ "memory_type": "semantic",
5019
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
5020
+ "tags": [
5021
+ "project-idiom",
5022
+ "auto-learned"
5023
+ ],
5024
+ "created_at": "1786101727Z",
5025
+ "last_accessed": "1786101727Z",
5026
+ "access_count": 0,
5027
+ "token_estimate": 34,
5028
+ "source": "manual",
5029
+ "session_id": null
5030
+ },
5031
+ {
5032
+ "id": 332,
5033
+ "memory_type": "semantic",
5034
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5035
+ "tags": [
5036
+ "project-idiom",
5037
+ "auto-learned"
5038
+ ],
5039
+ "created_at": "1786101727Z",
5040
+ "last_accessed": "1786101727Z",
5041
+ "access_count": 0,
5042
+ "token_estimate": 20,
5043
+ "source": "manual",
5044
+ "session_id": null
5045
+ },
5046
+ {
5047
+ "id": 333,
5048
+ "memory_type": "semantic",
5049
+ "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.",
5050
+ "tags": [
5051
+ "project-idiom",
5052
+ "auto-learned"
5053
+ ],
5054
+ "created_at": "1786101727Z",
5055
+ "last_accessed": "1786101727Z",
5056
+ "access_count": 0,
5057
+ "token_estimate": 54,
5058
+ "source": "manual",
5059
+ "session_id": null
5060
+ },
5061
+ {
5062
+ "id": 334,
5063
+ "memory_type": "semantic",
5064
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
5065
+ "tags": [
5066
+ "project-idiom",
5067
+ "auto-learned"
5068
+ ],
5069
+ "created_at": "1786101727Z",
5070
+ "last_accessed": "1786101727Z",
5071
+ "access_count": 0,
5072
+ "token_estimate": 17,
5073
+ "source": "manual",
5074
+ "session_id": null
5075
+ },
5076
+ {
5077
+ "id": 335,
5078
+ "memory_type": "semantic",
5079
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
5080
+ "tags": [
5081
+ "project-idiom",
5082
+ "auto-learned"
5083
+ ],
5084
+ "created_at": "1786101727Z",
5085
+ "last_accessed": "1786101727Z",
5086
+ "access_count": 0,
5087
+ "token_estimate": 19,
5088
+ "source": "manual",
5089
+ "session_id": null
5090
+ },
5091
+ {
5092
+ "id": 336,
5093
+ "memory_type": "semantic",
5094
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5095
+ "tags": [
5096
+ "project-idiom",
5097
+ "auto-learned"
5098
+ ],
5099
+ "created_at": "1786101727Z",
5100
+ "last_accessed": "1786101727Z",
5101
+ "access_count": 0,
5102
+ "token_estimate": 20,
5103
+ "source": "manual",
5104
+ "session_id": null
5105
+ },
5106
+ {
5107
+ "id": 337,
5108
+ "memory_type": "semantic",
5109
+ "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.",
5110
+ "tags": [
5111
+ "project-idiom",
5112
+ "auto-learned"
5113
+ ],
5114
+ "created_at": "1786101727Z",
5115
+ "last_accessed": "1786101727Z",
5116
+ "access_count": 0,
5117
+ "token_estimate": 54,
5118
+ "source": "manual",
5119
+ "session_id": null
5120
+ },
5121
+ {
5122
+ "id": 338,
5123
+ "memory_type": "procedural",
5124
+ "content": "Run `npm run build:rust` to build the project",
5125
+ "tags": [
5126
+ "build-script",
5127
+ "build",
5128
+ "auto-learned"
5129
+ ],
5130
+ "created_at": "1786101727Z",
5131
+ "last_accessed": "1786101727Z",
5132
+ "access_count": 0,
5133
+ "token_estimate": 12,
5134
+ "source": "manual",
5135
+ "session_id": null
5136
+ },
5137
+ {
5138
+ "id": 339,
5139
+ "memory_type": "procedural",
5140
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
5141
+ "tags": [
5142
+ "build-script",
5143
+ "test",
5144
+ "auto-learned"
5145
+ ],
5146
+ "created_at": "1786101727Z",
5147
+ "last_accessed": "1786101727Z",
5148
+ "access_count": 0,
5149
+ "token_estimate": 21,
5150
+ "source": "manual",
5151
+ "session_id": null
5152
+ },
5153
+ {
5154
+ "id": 340,
5155
+ "memory_type": "semantic",
5156
+ "content": ".agent/scripts/skill_evolution.js",
5157
+ "tags": [
5158
+ "project-idiom",
5159
+ "auto-learned"
5160
+ ],
5161
+ "created_at": "1786101799Z",
5162
+ "last_accessed": "1786101799Z",
5163
+ "access_count": 0,
5164
+ "token_estimate": 9,
5165
+ "source": "manual",
5166
+ "session_id": null
5167
+ },
5168
+ {
5169
+ "id": 341,
5170
+ "memory_type": "semantic",
5171
+ "content": ".agent/scripts/verify_all.js",
5172
+ "tags": [
5173
+ "project-idiom",
5174
+ "auto-learned"
5175
+ ],
5176
+ "created_at": "1786101799Z",
5177
+ "last_accessed": "1786101799Z",
5178
+ "access_count": 0,
5179
+ "token_estimate": 7,
5180
+ "source": "manual",
5181
+ "session_id": null
5182
+ },
5183
+ {
5184
+ "id": 342,
5185
+ "memory_type": "semantic",
5186
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
5187
+ "tags": [
5188
+ "project-idiom",
5189
+ "auto-learned"
5190
+ ],
5191
+ "created_at": "1786101799Z",
5192
+ "last_accessed": "1786101799Z",
5193
+ "access_count": 0,
5194
+ "token_estimate": 32,
5195
+ "source": "manual",
5196
+ "session_id": null
5197
+ },
5198
+ {
5199
+ "id": 343,
5200
+ "memory_type": "semantic",
5201
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
5202
+ "tags": [
5203
+ "project-idiom",
5204
+ "auto-learned"
5205
+ ],
5206
+ "created_at": "1786101799Z",
5207
+ "last_accessed": "1786101799Z",
5208
+ "access_count": 0,
5209
+ "token_estimate": 34,
5210
+ "source": "manual",
5211
+ "session_id": null
5212
+ },
5213
+ {
5214
+ "id": 344,
5215
+ "memory_type": "semantic",
5216
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5217
+ "tags": [
5218
+ "project-idiom",
5219
+ "auto-learned"
5220
+ ],
5221
+ "created_at": "1786101799Z",
5222
+ "last_accessed": "1786101799Z",
5223
+ "access_count": 0,
5224
+ "token_estimate": 20,
5225
+ "source": "manual",
5226
+ "session_id": null
5227
+ },
5228
+ {
5229
+ "id": 345,
5230
+ "memory_type": "semantic",
5231
+ "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.",
5232
+ "tags": [
5233
+ "project-idiom",
5234
+ "auto-learned"
5235
+ ],
5236
+ "created_at": "1786101799Z",
5237
+ "last_accessed": "1786101799Z",
5238
+ "access_count": 0,
5239
+ "token_estimate": 54,
5240
+ "source": "manual",
5241
+ "session_id": null
5242
+ },
5243
+ {
5244
+ "id": 346,
5245
+ "memory_type": "semantic",
5246
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
5247
+ "tags": [
5248
+ "project-idiom",
5249
+ "auto-learned"
5250
+ ],
5251
+ "created_at": "1786101799Z",
5252
+ "last_accessed": "1786101799Z",
5253
+ "access_count": 0,
5254
+ "token_estimate": 17,
5255
+ "source": "manual",
5256
+ "session_id": null
5257
+ },
5258
+ {
5259
+ "id": 347,
5260
+ "memory_type": "semantic",
5261
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
5262
+ "tags": [
5263
+ "project-idiom",
5264
+ "auto-learned"
5265
+ ],
5266
+ "created_at": "1786101799Z",
5267
+ "last_accessed": "1786101799Z",
5268
+ "access_count": 0,
5269
+ "token_estimate": 19,
5270
+ "source": "manual",
5271
+ "session_id": null
5272
+ },
5273
+ {
5274
+ "id": 348,
5275
+ "memory_type": "semantic",
5276
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5277
+ "tags": [
5278
+ "project-idiom",
5279
+ "auto-learned"
5280
+ ],
5281
+ "created_at": "1786101799Z",
5282
+ "last_accessed": "1786101799Z",
5283
+ "access_count": 0,
5284
+ "token_estimate": 20,
5285
+ "source": "manual",
5286
+ "session_id": null
5287
+ },
5288
+ {
5289
+ "id": 349,
5290
+ "memory_type": "semantic",
5291
+ "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.",
5292
+ "tags": [
5293
+ "project-idiom",
5294
+ "auto-learned"
5295
+ ],
5296
+ "created_at": "1786101799Z",
5297
+ "last_accessed": "1786101799Z",
5298
+ "access_count": 0,
5299
+ "token_estimate": 54,
5300
+ "source": "manual",
5301
+ "session_id": null
5302
+ },
5303
+ {
5304
+ "id": 350,
5305
+ "memory_type": "procedural",
5306
+ "content": "Run `npm run build:rust` to build the project",
5307
+ "tags": [
5308
+ "build-script",
5309
+ "build",
5310
+ "auto-learned"
5311
+ ],
5312
+ "created_at": "1786101799Z",
5313
+ "last_accessed": "1786101799Z",
5314
+ "access_count": 0,
5315
+ "token_estimate": 12,
5316
+ "source": "manual",
5317
+ "session_id": null
5318
+ },
5319
+ {
5320
+ "id": 351,
5321
+ "memory_type": "procedural",
5322
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
5323
+ "tags": [
5324
+ "build-script",
5325
+ "test",
5326
+ "auto-learned"
5327
+ ],
5328
+ "created_at": "1786101799Z",
5329
+ "last_accessed": "1786101799Z",
5330
+ "access_count": 0,
5331
+ "token_estimate": 21,
5332
+ "source": "manual",
5333
+ "session_id": null
5334
+ },
5335
+ {
5336
+ "id": 352,
5337
+ "memory_type": "semantic",
5338
+ "content": ".agent/scripts/skill_evolution.js",
5339
+ "tags": [
5340
+ "project-idiom",
5341
+ "auto-learned"
5342
+ ],
5343
+ "created_at": "1786101825Z",
5344
+ "last_accessed": "1786101825Z",
5345
+ "access_count": 0,
5346
+ "token_estimate": 9,
5347
+ "source": "manual",
5348
+ "session_id": null
5349
+ },
5350
+ {
5351
+ "id": 353,
5352
+ "memory_type": "semantic",
5353
+ "content": ".agent/scripts/verify_all.js",
5354
+ "tags": [
5355
+ "project-idiom",
5356
+ "auto-learned"
5357
+ ],
5358
+ "created_at": "1786101825Z",
5359
+ "last_accessed": "1786101825Z",
5360
+ "access_count": 0,
5361
+ "token_estimate": 7,
5362
+ "source": "manual",
5363
+ "session_id": null
5364
+ },
5365
+ {
5366
+ "id": 354,
5367
+ "memory_type": "semantic",
5368
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
5369
+ "tags": [
5370
+ "project-idiom",
5371
+ "auto-learned"
5372
+ ],
5373
+ "created_at": "1786101825Z",
5374
+ "last_accessed": "1786101825Z",
5375
+ "access_count": 0,
5376
+ "token_estimate": 32,
5377
+ "source": "manual",
5378
+ "session_id": null
5379
+ },
5380
+ {
5381
+ "id": 355,
5382
+ "memory_type": "semantic",
5383
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
5384
+ "tags": [
5385
+ "project-idiom",
5386
+ "auto-learned"
5387
+ ],
5388
+ "created_at": "1786101825Z",
5389
+ "last_accessed": "1786101825Z",
5390
+ "access_count": 0,
5391
+ "token_estimate": 34,
5392
+ "source": "manual",
5393
+ "session_id": null
5394
+ },
5395
+ {
5396
+ "id": 356,
5397
+ "memory_type": "semantic",
5398
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5399
+ "tags": [
5400
+ "project-idiom",
5401
+ "auto-learned"
5402
+ ],
5403
+ "created_at": "1786101825Z",
5404
+ "last_accessed": "1786101825Z",
5405
+ "access_count": 0,
5406
+ "token_estimate": 20,
5407
+ "source": "manual",
5408
+ "session_id": null
5409
+ },
5410
+ {
5411
+ "id": 357,
5412
+ "memory_type": "semantic",
5413
+ "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.",
5414
+ "tags": [
5415
+ "project-idiom",
5416
+ "auto-learned"
5417
+ ],
5418
+ "created_at": "1786101825Z",
5419
+ "last_accessed": "1786101825Z",
5420
+ "access_count": 0,
5421
+ "token_estimate": 54,
5422
+ "source": "manual",
5423
+ "session_id": null
5424
+ },
5425
+ {
5426
+ "id": 358,
5427
+ "memory_type": "semantic",
5428
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
5429
+ "tags": [
5430
+ "project-idiom",
5431
+ "auto-learned"
5432
+ ],
5433
+ "created_at": "1786101825Z",
5434
+ "last_accessed": "1786101825Z",
5435
+ "access_count": 0,
5436
+ "token_estimate": 17,
5437
+ "source": "manual",
5438
+ "session_id": null
5439
+ },
5440
+ {
5441
+ "id": 359,
5442
+ "memory_type": "semantic",
5443
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
5444
+ "tags": [
5445
+ "project-idiom",
5446
+ "auto-learned"
5447
+ ],
5448
+ "created_at": "1786101825Z",
5449
+ "last_accessed": "1786101825Z",
5450
+ "access_count": 0,
5451
+ "token_estimate": 19,
5452
+ "source": "manual",
5453
+ "session_id": null
5454
+ },
5455
+ {
5456
+ "id": 360,
5457
+ "memory_type": "semantic",
5458
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5459
+ "tags": [
5460
+ "project-idiom",
5461
+ "auto-learned"
5462
+ ],
5463
+ "created_at": "1786101825Z",
5464
+ "last_accessed": "1786101825Z",
5465
+ "access_count": 0,
5466
+ "token_estimate": 20,
5467
+ "source": "manual",
5468
+ "session_id": null
5469
+ },
5470
+ {
5471
+ "id": 361,
5472
+ "memory_type": "semantic",
5473
+ "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.",
5474
+ "tags": [
5475
+ "project-idiom",
5476
+ "auto-learned"
5477
+ ],
5478
+ "created_at": "1786101825Z",
5479
+ "last_accessed": "1786101825Z",
5480
+ "access_count": 0,
5481
+ "token_estimate": 54,
5482
+ "source": "manual",
5483
+ "session_id": null
5484
+ },
5485
+ {
5486
+ "id": 362,
5487
+ "memory_type": "procedural",
5488
+ "content": "Run `npm run build:rust` to build the project",
5489
+ "tags": [
5490
+ "build-script",
5491
+ "build",
5492
+ "auto-learned"
5493
+ ],
5494
+ "created_at": "1786101825Z",
5495
+ "last_accessed": "1786101825Z",
5496
+ "access_count": 0,
5497
+ "token_estimate": 12,
5498
+ "source": "manual",
5499
+ "session_id": null
5500
+ },
5501
+ {
5502
+ "id": 363,
5503
+ "memory_type": "procedural",
5504
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
5505
+ "tags": [
5506
+ "build-script",
5507
+ "test",
5508
+ "auto-learned"
5509
+ ],
5510
+ "created_at": "1786101826Z",
5511
+ "last_accessed": "1786101826Z",
5512
+ "access_count": 0,
5513
+ "token_estimate": 21,
5514
+ "source": "manual",
5515
+ "session_id": null
5516
+ },
5517
+ {
5518
+ "id": 364,
5519
+ "memory_type": "semantic",
5520
+ "content": ".agent/scripts/skill_evolution.js",
5521
+ "tags": [
5522
+ "project-idiom",
5523
+ "auto-learned"
5524
+ ],
5525
+ "created_at": "1786101950Z",
5526
+ "last_accessed": "1786101950Z",
5527
+ "access_count": 0,
5528
+ "token_estimate": 9,
5529
+ "source": "manual",
5530
+ "session_id": null
5531
+ },
5532
+ {
5533
+ "id": 365,
5534
+ "memory_type": "semantic",
5535
+ "content": ".agent/scripts/verify_all.js",
5536
+ "tags": [
5537
+ "project-idiom",
5538
+ "auto-learned"
5539
+ ],
5540
+ "created_at": "1786101950Z",
5541
+ "last_accessed": "1786101950Z",
5542
+ "access_count": 0,
5543
+ "token_estimate": 7,
5544
+ "source": "manual",
5545
+ "session_id": null
5546
+ },
5547
+ {
5548
+ "id": 366,
5549
+ "memory_type": "semantic",
5550
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
5551
+ "tags": [
5552
+ "project-idiom",
5553
+ "auto-learned"
5554
+ ],
5555
+ "created_at": "1786101950Z",
5556
+ "last_accessed": "1786101950Z",
5557
+ "access_count": 0,
5558
+ "token_estimate": 32,
5559
+ "source": "manual",
5560
+ "session_id": null
5561
+ },
5562
+ {
5563
+ "id": 367,
5564
+ "memory_type": "semantic",
5565
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
5566
+ "tags": [
5567
+ "project-idiom",
5568
+ "auto-learned"
5569
+ ],
5570
+ "created_at": "1786101950Z",
5571
+ "last_accessed": "1786101950Z",
5572
+ "access_count": 0,
5573
+ "token_estimate": 34,
5574
+ "source": "manual",
5575
+ "session_id": null
5576
+ },
5577
+ {
5578
+ "id": 368,
5579
+ "memory_type": "semantic",
5580
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5581
+ "tags": [
5582
+ "project-idiom",
5583
+ "auto-learned"
5584
+ ],
5585
+ "created_at": "1786101950Z",
5586
+ "last_accessed": "1786101950Z",
5587
+ "access_count": 0,
5588
+ "token_estimate": 20,
5589
+ "source": "manual",
5590
+ "session_id": null
5591
+ },
5592
+ {
5593
+ "id": 369,
5594
+ "memory_type": "semantic",
5595
+ "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.",
5596
+ "tags": [
5597
+ "project-idiom",
5598
+ "auto-learned"
5599
+ ],
5600
+ "created_at": "1786101950Z",
5601
+ "last_accessed": "1786101950Z",
5602
+ "access_count": 0,
5603
+ "token_estimate": 54,
5604
+ "source": "manual",
5605
+ "session_id": null
5606
+ },
5607
+ {
5608
+ "id": 370,
5609
+ "memory_type": "semantic",
5610
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
5611
+ "tags": [
5612
+ "project-idiom",
5613
+ "auto-learned"
5614
+ ],
5615
+ "created_at": "1786101950Z",
5616
+ "last_accessed": "1786101950Z",
5617
+ "access_count": 0,
5618
+ "token_estimate": 17,
5619
+ "source": "manual",
5620
+ "session_id": null
5621
+ },
5622
+ {
5623
+ "id": 371,
5624
+ "memory_type": "semantic",
5625
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
5626
+ "tags": [
5627
+ "project-idiom",
5628
+ "auto-learned"
5629
+ ],
5630
+ "created_at": "1786101950Z",
5631
+ "last_accessed": "1786101950Z",
5632
+ "access_count": 0,
5633
+ "token_estimate": 19,
5634
+ "source": "manual",
5635
+ "session_id": null
5636
+ },
5637
+ {
5638
+ "id": 372,
5639
+ "memory_type": "semantic",
5640
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5641
+ "tags": [
5642
+ "project-idiom",
5643
+ "auto-learned"
5644
+ ],
5645
+ "created_at": "1786101950Z",
5646
+ "last_accessed": "1786101950Z",
5647
+ "access_count": 0,
5648
+ "token_estimate": 20,
5649
+ "source": "manual",
5650
+ "session_id": null
5651
+ },
5652
+ {
5653
+ "id": 373,
5654
+ "memory_type": "semantic",
5655
+ "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.",
5656
+ "tags": [
5657
+ "project-idiom",
5658
+ "auto-learned"
5659
+ ],
5660
+ "created_at": "1786101950Z",
5661
+ "last_accessed": "1786101950Z",
5662
+ "access_count": 0,
5663
+ "token_estimate": 54,
5664
+ "source": "manual",
5665
+ "session_id": null
5666
+ },
5667
+ {
5668
+ "id": 374,
5669
+ "memory_type": "procedural",
5670
+ "content": "Run `npm run build:rust` to build the project",
5671
+ "tags": [
5672
+ "build-script",
5673
+ "build",
5674
+ "auto-learned"
5675
+ ],
5676
+ "created_at": "1786101950Z",
5677
+ "last_accessed": "1786101950Z",
5678
+ "access_count": 0,
5679
+ "token_estimate": 12,
5680
+ "source": "manual",
5681
+ "session_id": null
5682
+ },
5683
+ {
5684
+ "id": 375,
5685
+ "memory_type": "procedural",
5686
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
5687
+ "tags": [
5688
+ "build-script",
5689
+ "test",
5690
+ "auto-learned"
5691
+ ],
5692
+ "created_at": "1786101950Z",
5693
+ "last_accessed": "1786101950Z",
5694
+ "access_count": 0,
5695
+ "token_estimate": 21,
5696
+ "source": "manual",
5697
+ "session_id": null
5698
+ },
5699
+ {
5700
+ "id": 376,
5701
+ "memory_type": "semantic",
5702
+ "content": ".agent/scripts/skill_evolution.js",
5703
+ "tags": [
5704
+ "project-idiom",
5705
+ "auto-learned"
5706
+ ],
5707
+ "created_at": "1786102236Z",
5708
+ "last_accessed": "1786102236Z",
5709
+ "access_count": 0,
5710
+ "token_estimate": 9,
5711
+ "source": "manual",
5712
+ "session_id": null
5713
+ },
5714
+ {
5715
+ "id": 377,
5716
+ "memory_type": "semantic",
5717
+ "content": ".agent/scripts/verify_all.js",
5718
+ "tags": [
5719
+ "project-idiom",
5720
+ "auto-learned"
5721
+ ],
5722
+ "created_at": "1786102236Z",
5723
+ "last_accessed": "1786102236Z",
5724
+ "access_count": 0,
5725
+ "token_estimate": 7,
5726
+ "source": "manual",
5727
+ "session_id": null
5728
+ },
5729
+ {
5730
+ "id": 378,
5731
+ "memory_type": "semantic",
5732
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
5733
+ "tags": [
5734
+ "project-idiom",
5735
+ "auto-learned"
5736
+ ],
5737
+ "created_at": "1786102236Z",
5738
+ "last_accessed": "1786102236Z",
5739
+ "access_count": 0,
5740
+ "token_estimate": 32,
5741
+ "source": "manual",
5742
+ "session_id": null
5743
+ },
5744
+ {
5745
+ "id": 379,
5746
+ "memory_type": "semantic",
5747
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
5748
+ "tags": [
5749
+ "project-idiom",
5750
+ "auto-learned"
5751
+ ],
5752
+ "created_at": "1786102236Z",
5753
+ "last_accessed": "1786102236Z",
5754
+ "access_count": 0,
5755
+ "token_estimate": 34,
5756
+ "source": "manual",
5757
+ "session_id": null
5758
+ },
5759
+ {
5760
+ "id": 380,
5761
+ "memory_type": "semantic",
5762
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5763
+ "tags": [
5764
+ "project-idiom",
5765
+ "auto-learned"
5766
+ ],
5767
+ "created_at": "1786102236Z",
5768
+ "last_accessed": "1786102236Z",
5769
+ "access_count": 0,
5770
+ "token_estimate": 20,
5771
+ "source": "manual",
5772
+ "session_id": null
5773
+ },
5774
+ {
5775
+ "id": 381,
5776
+ "memory_type": "semantic",
5777
+ "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.",
5778
+ "tags": [
5779
+ "project-idiom",
5780
+ "auto-learned"
5781
+ ],
5782
+ "created_at": "1786102236Z",
5783
+ "last_accessed": "1786102236Z",
5784
+ "access_count": 0,
5785
+ "token_estimate": 54,
5786
+ "source": "manual",
5787
+ "session_id": null
5788
+ },
5789
+ {
5790
+ "id": 382,
5791
+ "memory_type": "semantic",
5792
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
5793
+ "tags": [
5794
+ "project-idiom",
5795
+ "auto-learned"
5796
+ ],
5797
+ "created_at": "1786102236Z",
5798
+ "last_accessed": "1786102236Z",
5799
+ "access_count": 0,
5800
+ "token_estimate": 17,
5801
+ "source": "manual",
5802
+ "session_id": null
5803
+ },
5804
+ {
5805
+ "id": 383,
5806
+ "memory_type": "semantic",
5807
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
5808
+ "tags": [
5809
+ "project-idiom",
5810
+ "auto-learned"
5811
+ ],
5812
+ "created_at": "1786102236Z",
5813
+ "last_accessed": "1786102236Z",
5814
+ "access_count": 0,
5815
+ "token_estimate": 19,
5816
+ "source": "manual",
5817
+ "session_id": null
5818
+ },
5819
+ {
5820
+ "id": 384,
5821
+ "memory_type": "semantic",
5822
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5823
+ "tags": [
5824
+ "project-idiom",
5825
+ "auto-learned"
5826
+ ],
5827
+ "created_at": "1786102236Z",
5828
+ "last_accessed": "1786102236Z",
5829
+ "access_count": 0,
5830
+ "token_estimate": 20,
5831
+ "source": "manual",
5832
+ "session_id": null
5833
+ },
5834
+ {
5835
+ "id": 385,
5836
+ "memory_type": "semantic",
5837
+ "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.",
5838
+ "tags": [
5839
+ "project-idiom",
5840
+ "auto-learned"
5841
+ ],
5842
+ "created_at": "1786102236Z",
5843
+ "last_accessed": "1786102236Z",
5844
+ "access_count": 0,
5845
+ "token_estimate": 54,
5846
+ "source": "manual",
5847
+ "session_id": null
5848
+ },
5849
+ {
5850
+ "id": 386,
5851
+ "memory_type": "procedural",
5852
+ "content": "Run `npm run build:rust` to build the project",
5853
+ "tags": [
5854
+ "build-script",
5855
+ "build",
5856
+ "auto-learned"
5857
+ ],
5858
+ "created_at": "1786102236Z",
5859
+ "last_accessed": "1786102236Z",
5860
+ "access_count": 0,
5861
+ "token_estimate": 12,
5862
+ "source": "manual",
5863
+ "session_id": null
5864
+ },
5865
+ {
5866
+ "id": 387,
5867
+ "memory_type": "procedural",
5868
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
5869
+ "tags": [
5870
+ "build-script",
5871
+ "test",
5872
+ "auto-learned"
5873
+ ],
5874
+ "created_at": "1786102236Z",
5875
+ "last_accessed": "1786102236Z",
5876
+ "access_count": 0,
5877
+ "token_estimate": 21,
5878
+ "source": "manual",
5879
+ "session_id": null
5880
+ },
5881
+ {
5882
+ "id": 388,
5883
+ "memory_type": "semantic",
5884
+ "content": ".agent/scripts/skill_evolution.js",
5885
+ "tags": [
5886
+ "project-idiom",
5887
+ "auto-learned"
5888
+ ],
5889
+ "created_at": "1786102579Z",
5890
+ "last_accessed": "1786102579Z",
5891
+ "access_count": 0,
5892
+ "token_estimate": 9,
5893
+ "source": "manual",
5894
+ "session_id": null
5895
+ },
5896
+ {
5897
+ "id": 389,
5898
+ "memory_type": "semantic",
5899
+ "content": ".agent/scripts/verify_all.js",
5900
+ "tags": [
5901
+ "project-idiom",
5902
+ "auto-learned"
5903
+ ],
5904
+ "created_at": "1786102579Z",
5905
+ "last_accessed": "1786102579Z",
5906
+ "access_count": 0,
5907
+ "token_estimate": 7,
5908
+ "source": "manual",
5909
+ "session_id": null
5910
+ },
5911
+ {
5912
+ "id": 390,
5913
+ "memory_type": "semantic",
5914
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
5915
+ "tags": [
5916
+ "project-idiom",
5917
+ "auto-learned"
5918
+ ],
5919
+ "created_at": "1786102579Z",
5920
+ "last_accessed": "1786102579Z",
5921
+ "access_count": 0,
5922
+ "token_estimate": 32,
5923
+ "source": "manual",
5924
+ "session_id": null
5925
+ },
5926
+ {
5927
+ "id": 391,
5928
+ "memory_type": "semantic",
5929
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
5930
+ "tags": [
5931
+ "project-idiom",
5932
+ "auto-learned"
5933
+ ],
5934
+ "created_at": "1786102579Z",
5935
+ "last_accessed": "1786102579Z",
5936
+ "access_count": 0,
5937
+ "token_estimate": 34,
5938
+ "source": "manual",
5939
+ "session_id": null
5940
+ },
5941
+ {
5942
+ "id": 392,
5943
+ "memory_type": "semantic",
5944
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
5945
+ "tags": [
5946
+ "project-idiom",
5947
+ "auto-learned"
5948
+ ],
5949
+ "created_at": "1786102579Z",
5950
+ "last_accessed": "1786102579Z",
5951
+ "access_count": 0,
5952
+ "token_estimate": 20,
5953
+ "source": "manual",
5954
+ "session_id": null
5955
+ },
5956
+ {
5957
+ "id": 393,
5958
+ "memory_type": "semantic",
5959
+ "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.",
5960
+ "tags": [
5961
+ "project-idiom",
5962
+ "auto-learned"
5963
+ ],
5964
+ "created_at": "1786102579Z",
5965
+ "last_accessed": "1786102579Z",
5966
+ "access_count": 0,
5967
+ "token_estimate": 54,
5968
+ "source": "manual",
5969
+ "session_id": null
5970
+ },
5971
+ {
5972
+ "id": 394,
5973
+ "memory_type": "semantic",
5974
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
5975
+ "tags": [
5976
+ "project-idiom",
5977
+ "auto-learned"
5978
+ ],
5979
+ "created_at": "1786102579Z",
5980
+ "last_accessed": "1786102579Z",
5981
+ "access_count": 0,
5982
+ "token_estimate": 17,
5983
+ "source": "manual",
5984
+ "session_id": null
5985
+ },
5986
+ {
5987
+ "id": 395,
5988
+ "memory_type": "semantic",
5989
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
5990
+ "tags": [
5991
+ "project-idiom",
5992
+ "auto-learned"
5993
+ ],
5994
+ "created_at": "1786102579Z",
5995
+ "last_accessed": "1786102579Z",
5996
+ "access_count": 0,
5997
+ "token_estimate": 19,
5998
+ "source": "manual",
5999
+ "session_id": null
6000
+ },
6001
+ {
6002
+ "id": 396,
6003
+ "memory_type": "semantic",
6004
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6005
+ "tags": [
6006
+ "project-idiom",
6007
+ "auto-learned"
6008
+ ],
6009
+ "created_at": "1786102579Z",
6010
+ "last_accessed": "1786102579Z",
6011
+ "access_count": 0,
6012
+ "token_estimate": 20,
6013
+ "source": "manual",
6014
+ "session_id": null
6015
+ },
6016
+ {
6017
+ "id": 397,
6018
+ "memory_type": "semantic",
6019
+ "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.",
6020
+ "tags": [
6021
+ "project-idiom",
6022
+ "auto-learned"
6023
+ ],
6024
+ "created_at": "1786102579Z",
6025
+ "last_accessed": "1786102579Z",
6026
+ "access_count": 0,
6027
+ "token_estimate": 54,
6028
+ "source": "manual",
6029
+ "session_id": null
6030
+ },
6031
+ {
6032
+ "id": 398,
6033
+ "memory_type": "procedural",
6034
+ "content": "Run `npm run build:rust` to build the project",
6035
+ "tags": [
6036
+ "build-script",
6037
+ "build",
6038
+ "auto-learned"
6039
+ ],
6040
+ "created_at": "1786102579Z",
6041
+ "last_accessed": "1786102579Z",
6042
+ "access_count": 0,
6043
+ "token_estimate": 12,
6044
+ "source": "manual",
6045
+ "session_id": null
6046
+ },
6047
+ {
6048
+ "id": 399,
6049
+ "memory_type": "procedural",
6050
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
6051
+ "tags": [
6052
+ "build-script",
6053
+ "test",
6054
+ "auto-learned"
6055
+ ],
6056
+ "created_at": "1786102579Z",
6057
+ "last_accessed": "1786102579Z",
6058
+ "access_count": 0,
6059
+ "token_estimate": 21,
6060
+ "source": "manual",
6061
+ "session_id": null
6062
+ },
6063
+ {
6064
+ "id": 400,
6065
+ "memory_type": "semantic",
6066
+ "content": ".agent/scripts/skill_evolution.js",
6067
+ "tags": [
6068
+ "project-idiom",
6069
+ "auto-learned"
6070
+ ],
6071
+ "created_at": "1786103000Z",
6072
+ "last_accessed": "1786103000Z",
6073
+ "access_count": 0,
6074
+ "token_estimate": 9,
6075
+ "source": "manual",
6076
+ "session_id": null
6077
+ },
6078
+ {
6079
+ "id": 401,
6080
+ "memory_type": "semantic",
6081
+ "content": ".agent/scripts/verify_all.js",
6082
+ "tags": [
6083
+ "project-idiom",
6084
+ "auto-learned"
6085
+ ],
6086
+ "created_at": "1786103000Z",
6087
+ "last_accessed": "1786103000Z",
6088
+ "access_count": 0,
6089
+ "token_estimate": 7,
6090
+ "source": "manual",
6091
+ "session_id": null
6092
+ },
6093
+ {
6094
+ "id": 402,
6095
+ "memory_type": "semantic",
6096
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
6097
+ "tags": [
6098
+ "project-idiom",
6099
+ "auto-learned"
6100
+ ],
6101
+ "created_at": "1786103000Z",
6102
+ "last_accessed": "1786103000Z",
6103
+ "access_count": 0,
6104
+ "token_estimate": 32,
6105
+ "source": "manual",
6106
+ "session_id": null
6107
+ },
6108
+ {
6109
+ "id": 403,
6110
+ "memory_type": "semantic",
6111
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
6112
+ "tags": [
6113
+ "project-idiom",
6114
+ "auto-learned"
6115
+ ],
6116
+ "created_at": "1786103000Z",
6117
+ "last_accessed": "1786103000Z",
6118
+ "access_count": 0,
6119
+ "token_estimate": 34,
6120
+ "source": "manual",
6121
+ "session_id": null
6122
+ },
6123
+ {
6124
+ "id": 404,
6125
+ "memory_type": "semantic",
6126
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6127
+ "tags": [
6128
+ "project-idiom",
6129
+ "auto-learned"
6130
+ ],
6131
+ "created_at": "1786103000Z",
6132
+ "last_accessed": "1786103000Z",
6133
+ "access_count": 0,
6134
+ "token_estimate": 20,
6135
+ "source": "manual",
6136
+ "session_id": null
6137
+ },
6138
+ {
6139
+ "id": 405,
6140
+ "memory_type": "semantic",
6141
+ "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.",
6142
+ "tags": [
6143
+ "project-idiom",
6144
+ "auto-learned"
6145
+ ],
6146
+ "created_at": "1786103000Z",
6147
+ "last_accessed": "1786103000Z",
6148
+ "access_count": 0,
6149
+ "token_estimate": 54,
6150
+ "source": "manual",
6151
+ "session_id": null
6152
+ },
6153
+ {
6154
+ "id": 406,
6155
+ "memory_type": "semantic",
6156
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
6157
+ "tags": [
6158
+ "project-idiom",
6159
+ "auto-learned"
6160
+ ],
6161
+ "created_at": "1786103000Z",
6162
+ "last_accessed": "1786103000Z",
6163
+ "access_count": 0,
6164
+ "token_estimate": 17,
6165
+ "source": "manual",
6166
+ "session_id": null
6167
+ },
6168
+ {
6169
+ "id": 407,
6170
+ "memory_type": "semantic",
6171
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
6172
+ "tags": [
6173
+ "project-idiom",
6174
+ "auto-learned"
6175
+ ],
6176
+ "created_at": "1786103000Z",
6177
+ "last_accessed": "1786103000Z",
6178
+ "access_count": 0,
6179
+ "token_estimate": 19,
6180
+ "source": "manual",
6181
+ "session_id": null
6182
+ },
6183
+ {
6184
+ "id": 408,
6185
+ "memory_type": "semantic",
6186
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6187
+ "tags": [
6188
+ "project-idiom",
6189
+ "auto-learned"
6190
+ ],
6191
+ "created_at": "1786103000Z",
6192
+ "last_accessed": "1786103000Z",
6193
+ "access_count": 0,
6194
+ "token_estimate": 20,
6195
+ "source": "manual",
6196
+ "session_id": null
6197
+ },
6198
+ {
6199
+ "id": 409,
6200
+ "memory_type": "semantic",
6201
+ "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.",
6202
+ "tags": [
6203
+ "project-idiom",
6204
+ "auto-learned"
6205
+ ],
6206
+ "created_at": "1786103000Z",
6207
+ "last_accessed": "1786103000Z",
6208
+ "access_count": 0,
6209
+ "token_estimate": 54,
6210
+ "source": "manual",
6211
+ "session_id": null
6212
+ },
6213
+ {
6214
+ "id": 410,
6215
+ "memory_type": "procedural",
6216
+ "content": "Run `npm run build:rust` to build the project",
6217
+ "tags": [
6218
+ "build-script",
6219
+ "build",
6220
+ "auto-learned"
6221
+ ],
6222
+ "created_at": "1786103000Z",
6223
+ "last_accessed": "1786103000Z",
6224
+ "access_count": 0,
6225
+ "token_estimate": 12,
6226
+ "source": "manual",
6227
+ "session_id": null
6228
+ },
6229
+ {
6230
+ "id": 411,
6231
+ "memory_type": "procedural",
6232
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
6233
+ "tags": [
6234
+ "build-script",
6235
+ "test",
6236
+ "auto-learned"
6237
+ ],
6238
+ "created_at": "1786103000Z",
6239
+ "last_accessed": "1786103000Z",
6240
+ "access_count": 0,
6241
+ "token_estimate": 21,
6242
+ "source": "manual",
6243
+ "session_id": null
6244
+ },
6245
+ {
6246
+ "id": 412,
6247
+ "memory_type": "semantic",
6248
+ "content": ".agent/scripts/skill_evolution.js",
6249
+ "tags": [
6250
+ "project-idiom",
6251
+ "auto-learned"
6252
+ ],
6253
+ "created_at": "1786103674Z",
6254
+ "last_accessed": "1786103674Z",
6255
+ "access_count": 0,
6256
+ "token_estimate": 9,
6257
+ "source": "manual",
6258
+ "session_id": null
6259
+ },
6260
+ {
6261
+ "id": 413,
6262
+ "memory_type": "semantic",
6263
+ "content": ".agent/scripts/verify_all.js",
6264
+ "tags": [
6265
+ "project-idiom",
6266
+ "auto-learned"
6267
+ ],
6268
+ "created_at": "1786103674Z",
6269
+ "last_accessed": "1786103674Z",
6270
+ "access_count": 0,
6271
+ "token_estimate": 7,
6272
+ "source": "manual",
6273
+ "session_id": null
6274
+ },
6275
+ {
6276
+ "id": 414,
6277
+ "memory_type": "semantic",
6278
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
6279
+ "tags": [
6280
+ "project-idiom",
6281
+ "auto-learned"
6282
+ ],
6283
+ "created_at": "1786103674Z",
6284
+ "last_accessed": "1786103674Z",
6285
+ "access_count": 0,
6286
+ "token_estimate": 32,
6287
+ "source": "manual",
6288
+ "session_id": null
6289
+ },
6290
+ {
6291
+ "id": 415,
6292
+ "memory_type": "semantic",
6293
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
6294
+ "tags": [
6295
+ "project-idiom",
6296
+ "auto-learned"
6297
+ ],
6298
+ "created_at": "1786103675Z",
6299
+ "last_accessed": "1786103675Z",
6300
+ "access_count": 0,
6301
+ "token_estimate": 34,
6302
+ "source": "manual",
6303
+ "session_id": null
6304
+ },
6305
+ {
6306
+ "id": 416,
6307
+ "memory_type": "semantic",
6308
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6309
+ "tags": [
6310
+ "project-idiom",
6311
+ "auto-learned"
6312
+ ],
6313
+ "created_at": "1786103675Z",
6314
+ "last_accessed": "1786103675Z",
6315
+ "access_count": 0,
6316
+ "token_estimate": 20,
6317
+ "source": "manual",
6318
+ "session_id": null
6319
+ },
6320
+ {
6321
+ "id": 417,
6322
+ "memory_type": "semantic",
6323
+ "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.",
6324
+ "tags": [
6325
+ "project-idiom",
6326
+ "auto-learned"
6327
+ ],
6328
+ "created_at": "1786103675Z",
6329
+ "last_accessed": "1786103675Z",
6330
+ "access_count": 0,
6331
+ "token_estimate": 54,
6332
+ "source": "manual",
6333
+ "session_id": null
6334
+ },
6335
+ {
6336
+ "id": 418,
6337
+ "memory_type": "semantic",
6338
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
6339
+ "tags": [
6340
+ "project-idiom",
6341
+ "auto-learned"
6342
+ ],
6343
+ "created_at": "1786103675Z",
6344
+ "last_accessed": "1786103675Z",
6345
+ "access_count": 0,
6346
+ "token_estimate": 17,
6347
+ "source": "manual",
6348
+ "session_id": null
6349
+ },
6350
+ {
6351
+ "id": 419,
6352
+ "memory_type": "semantic",
6353
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
6354
+ "tags": [
6355
+ "project-idiom",
6356
+ "auto-learned"
6357
+ ],
6358
+ "created_at": "1786103675Z",
6359
+ "last_accessed": "1786103675Z",
6360
+ "access_count": 0,
6361
+ "token_estimate": 19,
6362
+ "source": "manual",
6363
+ "session_id": null
6364
+ },
6365
+ {
6366
+ "id": 420,
6367
+ "memory_type": "semantic",
6368
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6369
+ "tags": [
6370
+ "project-idiom",
6371
+ "auto-learned"
6372
+ ],
6373
+ "created_at": "1786103675Z",
6374
+ "last_accessed": "1786103675Z",
6375
+ "access_count": 0,
6376
+ "token_estimate": 20,
6377
+ "source": "manual",
6378
+ "session_id": null
6379
+ },
6380
+ {
6381
+ "id": 421,
6382
+ "memory_type": "semantic",
6383
+ "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.",
6384
+ "tags": [
6385
+ "project-idiom",
6386
+ "auto-learned"
6387
+ ],
6388
+ "created_at": "1786103675Z",
6389
+ "last_accessed": "1786103675Z",
6390
+ "access_count": 0,
6391
+ "token_estimate": 54,
6392
+ "source": "manual",
6393
+ "session_id": null
6394
+ },
6395
+ {
6396
+ "id": 422,
6397
+ "memory_type": "procedural",
6398
+ "content": "Run `npm run build:rust` to build the project",
6399
+ "tags": [
6400
+ "build-script",
6401
+ "build",
6402
+ "auto-learned"
6403
+ ],
6404
+ "created_at": "1786103675Z",
6405
+ "last_accessed": "1786103675Z",
6406
+ "access_count": 0,
6407
+ "token_estimate": 12,
6408
+ "source": "manual",
6409
+ "session_id": null
6410
+ },
6411
+ {
6412
+ "id": 423,
6413
+ "memory_type": "procedural",
6414
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
6415
+ "tags": [
6416
+ "build-script",
6417
+ "test",
6418
+ "auto-learned"
6419
+ ],
6420
+ "created_at": "1786103675Z",
6421
+ "last_accessed": "1786103675Z",
6422
+ "access_count": 0,
6423
+ "token_estimate": 21,
6424
+ "source": "manual",
6425
+ "session_id": null
6426
+ },
6427
+ {
6428
+ "id": 424,
6429
+ "memory_type": "semantic",
6430
+ "content": ".agent/scripts/skill_evolution.js",
6431
+ "tags": [
6432
+ "project-idiom",
6433
+ "auto-learned"
6434
+ ],
6435
+ "created_at": "1786103753Z",
6436
+ "last_accessed": "1786103753Z",
6437
+ "access_count": 0,
6438
+ "token_estimate": 9,
6439
+ "source": "manual",
6440
+ "session_id": null
6441
+ },
6442
+ {
6443
+ "id": 425,
6444
+ "memory_type": "semantic",
6445
+ "content": ".agent/scripts/verify_all.js",
6446
+ "tags": [
6447
+ "project-idiom",
6448
+ "auto-learned"
6449
+ ],
6450
+ "created_at": "1786103753Z",
6451
+ "last_accessed": "1786103753Z",
6452
+ "access_count": 0,
6453
+ "token_estimate": 7,
6454
+ "source": "manual",
6455
+ "session_id": null
6456
+ },
6457
+ {
6458
+ "id": 426,
6459
+ "memory_type": "semantic",
6460
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
6461
+ "tags": [
6462
+ "project-idiom",
6463
+ "auto-learned"
6464
+ ],
6465
+ "created_at": "1786103753Z",
6466
+ "last_accessed": "1786103753Z",
6467
+ "access_count": 0,
6468
+ "token_estimate": 32,
6469
+ "source": "manual",
6470
+ "session_id": null
6471
+ },
6472
+ {
6473
+ "id": 427,
6474
+ "memory_type": "semantic",
6475
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
6476
+ "tags": [
6477
+ "project-idiom",
6478
+ "auto-learned"
6479
+ ],
6480
+ "created_at": "1786103753Z",
6481
+ "last_accessed": "1786103753Z",
6482
+ "access_count": 0,
6483
+ "token_estimate": 34,
6484
+ "source": "manual",
6485
+ "session_id": null
6486
+ },
6487
+ {
6488
+ "id": 428,
6489
+ "memory_type": "semantic",
6490
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6491
+ "tags": [
6492
+ "project-idiom",
6493
+ "auto-learned"
6494
+ ],
6495
+ "created_at": "1786103753Z",
6496
+ "last_accessed": "1786103753Z",
6497
+ "access_count": 0,
6498
+ "token_estimate": 20,
6499
+ "source": "manual",
6500
+ "session_id": null
6501
+ },
6502
+ {
6503
+ "id": 429,
6504
+ "memory_type": "semantic",
6505
+ "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.",
6506
+ "tags": [
6507
+ "project-idiom",
6508
+ "auto-learned"
6509
+ ],
6510
+ "created_at": "1786103753Z",
6511
+ "last_accessed": "1786103753Z",
6512
+ "access_count": 0,
6513
+ "token_estimate": 54,
6514
+ "source": "manual",
6515
+ "session_id": null
6516
+ },
6517
+ {
6518
+ "id": 430,
6519
+ "memory_type": "semantic",
6520
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
6521
+ "tags": [
6522
+ "project-idiom",
6523
+ "auto-learned"
6524
+ ],
6525
+ "created_at": "1786103753Z",
6526
+ "last_accessed": "1786103753Z",
6527
+ "access_count": 0,
6528
+ "token_estimate": 17,
6529
+ "source": "manual",
6530
+ "session_id": null
6531
+ },
6532
+ {
6533
+ "id": 431,
6534
+ "memory_type": "semantic",
6535
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
6536
+ "tags": [
6537
+ "project-idiom",
6538
+ "auto-learned"
6539
+ ],
6540
+ "created_at": "1786103753Z",
6541
+ "last_accessed": "1786103753Z",
6542
+ "access_count": 0,
6543
+ "token_estimate": 19,
6544
+ "source": "manual",
6545
+ "session_id": null
6546
+ },
6547
+ {
6548
+ "id": 432,
6549
+ "memory_type": "semantic",
6550
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6551
+ "tags": [
6552
+ "project-idiom",
6553
+ "auto-learned"
6554
+ ],
6555
+ "created_at": "1786103753Z",
6556
+ "last_accessed": "1786103753Z",
6557
+ "access_count": 0,
6558
+ "token_estimate": 20,
6559
+ "source": "manual",
6560
+ "session_id": null
6561
+ },
6562
+ {
6563
+ "id": 433,
6564
+ "memory_type": "semantic",
6565
+ "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.",
6566
+ "tags": [
6567
+ "project-idiom",
6568
+ "auto-learned"
6569
+ ],
6570
+ "created_at": "1786103753Z",
6571
+ "last_accessed": "1786103753Z",
6572
+ "access_count": 0,
6573
+ "token_estimate": 54,
6574
+ "source": "manual",
6575
+ "session_id": null
6576
+ },
6577
+ {
6578
+ "id": 434,
6579
+ "memory_type": "procedural",
6580
+ "content": "Run `npm run build:rust` to build the project",
6581
+ "tags": [
6582
+ "build-script",
6583
+ "build",
6584
+ "auto-learned"
6585
+ ],
6586
+ "created_at": "1786103753Z",
6587
+ "last_accessed": "1786103753Z",
6588
+ "access_count": 0,
6589
+ "token_estimate": 12,
6590
+ "source": "manual",
6591
+ "session_id": null
6592
+ },
6593
+ {
6594
+ "id": 435,
6595
+ "memory_type": "procedural",
6596
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
6597
+ "tags": [
6598
+ "build-script",
6599
+ "test",
6600
+ "auto-learned"
6601
+ ],
6602
+ "created_at": "1786103753Z",
6603
+ "last_accessed": "1786103753Z",
6604
+ "access_count": 0,
6605
+ "token_estimate": 21,
6606
+ "source": "manual",
6607
+ "session_id": null
6608
+ },
6609
+ {
6610
+ "id": 436,
6611
+ "memory_type": "semantic",
6612
+ "content": ".agent/scripts/skill_evolution.js",
6613
+ "tags": [
6614
+ "project-idiom",
6615
+ "auto-learned"
6616
+ ],
6617
+ "created_at": "1786275827Z",
6618
+ "last_accessed": "1786275827Z",
6619
+ "access_count": 0,
6620
+ "token_estimate": 9,
6621
+ "source": "manual",
6622
+ "session_id": null
6623
+ },
6624
+ {
6625
+ "id": 437,
6626
+ "memory_type": "semantic",
6627
+ "content": ".agent/scripts/verify_all.js",
6628
+ "tags": [
6629
+ "project-idiom",
6630
+ "auto-learned"
6631
+ ],
6632
+ "created_at": "1786275827Z",
6633
+ "last_accessed": "1786275827Z",
6634
+ "access_count": 0,
6635
+ "token_estimate": 7,
6636
+ "source": "manual",
6637
+ "session_id": null
6638
+ },
6639
+ {
6640
+ "id": 438,
6641
+ "memory_type": "semantic",
6642
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
6643
+ "tags": [
6644
+ "project-idiom",
6645
+ "auto-learned"
6646
+ ],
6647
+ "created_at": "1786275827Z",
6648
+ "last_accessed": "1786275827Z",
6649
+ "access_count": 0,
6650
+ "token_estimate": 32,
6651
+ "source": "manual",
6652
+ "session_id": null
6653
+ },
6654
+ {
6655
+ "id": 439,
6656
+ "memory_type": "semantic",
6657
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
6658
+ "tags": [
6659
+ "project-idiom",
6660
+ "auto-learned"
6661
+ ],
6662
+ "created_at": "1786275827Z",
6663
+ "last_accessed": "1786275827Z",
6664
+ "access_count": 0,
6665
+ "token_estimate": 34,
6666
+ "source": "manual",
6667
+ "session_id": null
6668
+ },
6669
+ {
6670
+ "id": 440,
6671
+ "memory_type": "semantic",
6672
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6673
+ "tags": [
6674
+ "project-idiom",
6675
+ "auto-learned"
6676
+ ],
6677
+ "created_at": "1786275827Z",
6678
+ "last_accessed": "1786275827Z",
6679
+ "access_count": 0,
6680
+ "token_estimate": 20,
6681
+ "source": "manual",
6682
+ "session_id": null
6683
+ },
6684
+ {
6685
+ "id": 441,
6686
+ "memory_type": "semantic",
6687
+ "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.",
6688
+ "tags": [
6689
+ "project-idiom",
6690
+ "auto-learned"
6691
+ ],
6692
+ "created_at": "1786275827Z",
6693
+ "last_accessed": "1786275827Z",
6694
+ "access_count": 0,
6695
+ "token_estimate": 54,
6696
+ "source": "manual",
6697
+ "session_id": null
6698
+ },
6699
+ {
6700
+ "id": 442,
6701
+ "memory_type": "semantic",
6702
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
6703
+ "tags": [
6704
+ "project-idiom",
6705
+ "auto-learned"
6706
+ ],
6707
+ "created_at": "1786275827Z",
6708
+ "last_accessed": "1786275827Z",
6709
+ "access_count": 0,
6710
+ "token_estimate": 17,
6711
+ "source": "manual",
6712
+ "session_id": null
6713
+ },
6714
+ {
6715
+ "id": 443,
6716
+ "memory_type": "semantic",
6717
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
6718
+ "tags": [
6719
+ "project-idiom",
6720
+ "auto-learned"
6721
+ ],
6722
+ "created_at": "1786275827Z",
6723
+ "last_accessed": "1786275827Z",
6724
+ "access_count": 0,
6725
+ "token_estimate": 19,
6726
+ "source": "manual",
6727
+ "session_id": null
6728
+ },
6729
+ {
6730
+ "id": 444,
6731
+ "memory_type": "semantic",
6732
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6733
+ "tags": [
6734
+ "project-idiom",
6735
+ "auto-learned"
6736
+ ],
6737
+ "created_at": "1786275827Z",
6738
+ "last_accessed": "1786275827Z",
6739
+ "access_count": 0,
6740
+ "token_estimate": 20,
6741
+ "source": "manual",
6742
+ "session_id": null
6743
+ },
6744
+ {
6745
+ "id": 445,
6746
+ "memory_type": "semantic",
6747
+ "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.",
6748
+ "tags": [
6749
+ "project-idiom",
6750
+ "auto-learned"
6751
+ ],
6752
+ "created_at": "1786275827Z",
6753
+ "last_accessed": "1786275827Z",
6754
+ "access_count": 0,
6755
+ "token_estimate": 54,
6756
+ "source": "manual",
6757
+ "session_id": null
6758
+ },
6759
+ {
6760
+ "id": 446,
6761
+ "memory_type": "procedural",
6762
+ "content": "Run `npm run build:rust` to build the project",
6763
+ "tags": [
6764
+ "build-script",
6765
+ "build",
6766
+ "auto-learned"
6767
+ ],
6768
+ "created_at": "1786275827Z",
6769
+ "last_accessed": "1786275827Z",
6770
+ "access_count": 0,
6771
+ "token_estimate": 12,
6772
+ "source": "manual",
6773
+ "session_id": null
6774
+ },
6775
+ {
6776
+ "id": 447,
6777
+ "memory_type": "procedural",
6778
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
6779
+ "tags": [
6780
+ "build-script",
6781
+ "test",
6782
+ "auto-learned"
6783
+ ],
6784
+ "created_at": "1786275827Z",
6785
+ "last_accessed": "1786275827Z",
6786
+ "access_count": 0,
6787
+ "token_estimate": 21,
6788
+ "source": "manual",
6789
+ "session_id": null
6790
+ },
6791
+ {
6792
+ "id": 448,
6793
+ "memory_type": "semantic",
6794
+ "content": ".agent/scripts/skill_evolution.js",
6795
+ "tags": [
6796
+ "project-idiom",
6797
+ "auto-learned"
6798
+ ],
6799
+ "created_at": "1786275973Z",
6800
+ "last_accessed": "1786275973Z",
6801
+ "access_count": 0,
6802
+ "token_estimate": 9,
6803
+ "source": "manual",
6804
+ "session_id": null
6805
+ },
6806
+ {
6807
+ "id": 449,
6808
+ "memory_type": "semantic",
6809
+ "content": ".agent/scripts/verify_all.js",
6810
+ "tags": [
6811
+ "project-idiom",
6812
+ "auto-learned"
6813
+ ],
6814
+ "created_at": "1786275973Z",
6815
+ "last_accessed": "1786275973Z",
6816
+ "access_count": 0,
6817
+ "token_estimate": 7,
6818
+ "source": "manual",
6819
+ "session_id": null
6820
+ },
6821
+ {
6822
+ "id": 450,
6823
+ "memory_type": "semantic",
6824
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
6825
+ "tags": [
6826
+ "project-idiom",
6827
+ "auto-learned"
6828
+ ],
6829
+ "created_at": "1786275973Z",
6830
+ "last_accessed": "1786275973Z",
6831
+ "access_count": 0,
6832
+ "token_estimate": 32,
6833
+ "source": "manual",
6834
+ "session_id": null
6835
+ },
6836
+ {
6837
+ "id": 451,
6838
+ "memory_type": "semantic",
6839
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
6840
+ "tags": [
6841
+ "project-idiom",
6842
+ "auto-learned"
6843
+ ],
6844
+ "created_at": "1786275973Z",
6845
+ "last_accessed": "1786275973Z",
6846
+ "access_count": 0,
6847
+ "token_estimate": 34,
6848
+ "source": "manual",
6849
+ "session_id": null
6850
+ },
6851
+ {
6852
+ "id": 452,
6853
+ "memory_type": "semantic",
6854
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6855
+ "tags": [
6856
+ "project-idiom",
6857
+ "auto-learned"
6858
+ ],
6859
+ "created_at": "1786275973Z",
6860
+ "last_accessed": "1786275973Z",
6861
+ "access_count": 0,
6862
+ "token_estimate": 20,
6863
+ "source": "manual",
6864
+ "session_id": null
6865
+ },
6866
+ {
6867
+ "id": 453,
6868
+ "memory_type": "semantic",
6869
+ "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.",
6870
+ "tags": [
6871
+ "project-idiom",
6872
+ "auto-learned"
6873
+ ],
6874
+ "created_at": "1786275973Z",
6875
+ "last_accessed": "1786275973Z",
6876
+ "access_count": 0,
6877
+ "token_estimate": 54,
6878
+ "source": "manual",
6879
+ "session_id": null
6880
+ },
6881
+ {
6882
+ "id": 454,
6883
+ "memory_type": "semantic",
6884
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
6885
+ "tags": [
6886
+ "project-idiom",
6887
+ "auto-learned"
6888
+ ],
6889
+ "created_at": "1786275973Z",
6890
+ "last_accessed": "1786275973Z",
6891
+ "access_count": 0,
6892
+ "token_estimate": 17,
6893
+ "source": "manual",
6894
+ "session_id": null
6895
+ },
6896
+ {
6897
+ "id": 455,
6898
+ "memory_type": "semantic",
6899
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
6900
+ "tags": [
6901
+ "project-idiom",
6902
+ "auto-learned"
6903
+ ],
6904
+ "created_at": "1786275973Z",
6905
+ "last_accessed": "1786275973Z",
6906
+ "access_count": 0,
6907
+ "token_estimate": 19,
6908
+ "source": "manual",
6909
+ "session_id": null
6910
+ },
6911
+ {
6912
+ "id": 456,
6913
+ "memory_type": "semantic",
6914
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
6915
+ "tags": [
6916
+ "project-idiom",
6917
+ "auto-learned"
6918
+ ],
6919
+ "created_at": "1786275973Z",
6920
+ "last_accessed": "1786275973Z",
6921
+ "access_count": 0,
6922
+ "token_estimate": 20,
6923
+ "source": "manual",
6924
+ "session_id": null
6925
+ },
6926
+ {
6927
+ "id": 457,
6928
+ "memory_type": "semantic",
6929
+ "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.",
6930
+ "tags": [
6931
+ "project-idiom",
6932
+ "auto-learned"
6933
+ ],
6934
+ "created_at": "1786275973Z",
6935
+ "last_accessed": "1786275973Z",
6936
+ "access_count": 0,
6937
+ "token_estimate": 54,
6938
+ "source": "manual",
6939
+ "session_id": null
6940
+ },
6941
+ {
6942
+ "id": 458,
6943
+ "memory_type": "procedural",
6944
+ "content": "Run `npm run build:rust` to build the project",
6945
+ "tags": [
6946
+ "build-script",
6947
+ "build",
6948
+ "auto-learned"
6949
+ ],
6950
+ "created_at": "1786275973Z",
6951
+ "last_accessed": "1786275973Z",
6952
+ "access_count": 0,
6953
+ "token_estimate": 12,
6954
+ "source": "manual",
6955
+ "session_id": null
6956
+ },
6957
+ {
6958
+ "id": 459,
6959
+ "memory_type": "procedural",
6960
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
6961
+ "tags": [
6962
+ "build-script",
6963
+ "test",
6964
+ "auto-learned"
6965
+ ],
6966
+ "created_at": "1786275973Z",
6967
+ "last_accessed": "1786275973Z",
6968
+ "access_count": 0,
6969
+ "token_estimate": 21,
6970
+ "source": "manual",
6971
+ "session_id": null
6972
+ },
6973
+ {
6974
+ "id": 460,
6975
+ "memory_type": "semantic",
6976
+ "content": ".agent/scripts/skill_evolution.js",
6977
+ "tags": [
6978
+ "project-idiom",
6979
+ "auto-learned"
6980
+ ],
6981
+ "created_at": "1786691306Z",
6982
+ "last_accessed": "1786691306Z",
6983
+ "access_count": 0,
6984
+ "token_estimate": 9,
6985
+ "source": "manual",
6986
+ "session_id": null
6987
+ },
6988
+ {
6989
+ "id": 461,
6990
+ "memory_type": "semantic",
6991
+ "content": ".agent/scripts/verify_all.js",
6992
+ "tags": [
6993
+ "project-idiom",
6994
+ "auto-learned"
6995
+ ],
6996
+ "created_at": "1786691306Z",
6997
+ "last_accessed": "1786691306Z",
6998
+ "access_count": 0,
6999
+ "token_estimate": 7,
7000
+ "source": "manual",
7001
+ "session_id": null
7002
+ },
7003
+ {
7004
+ "id": 462,
7005
+ "memory_type": "semantic",
7006
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
7007
+ "tags": [
7008
+ "project-idiom",
7009
+ "auto-learned"
7010
+ ],
7011
+ "created_at": "1786691306Z",
7012
+ "last_accessed": "1786691306Z",
7013
+ "access_count": 0,
7014
+ "token_estimate": 32,
7015
+ "source": "manual",
7016
+ "session_id": null
7017
+ },
7018
+ {
7019
+ "id": 463,
7020
+ "memory_type": "semantic",
7021
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
7022
+ "tags": [
7023
+ "project-idiom",
7024
+ "auto-learned"
7025
+ ],
7026
+ "created_at": "1786691306Z",
7027
+ "last_accessed": "1786691306Z",
7028
+ "access_count": 0,
7029
+ "token_estimate": 34,
7030
+ "source": "manual",
7031
+ "session_id": null
7032
+ },
7033
+ {
7034
+ "id": 464,
7035
+ "memory_type": "semantic",
7036
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
7037
+ "tags": [
7038
+ "project-idiom",
7039
+ "auto-learned"
7040
+ ],
7041
+ "created_at": "1786691306Z",
7042
+ "last_accessed": "1786691306Z",
7043
+ "access_count": 0,
7044
+ "token_estimate": 20,
7045
+ "source": "manual",
7046
+ "session_id": null
7047
+ },
7048
+ {
7049
+ "id": 465,
7050
+ "memory_type": "semantic",
7051
+ "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.",
7052
+ "tags": [
7053
+ "project-idiom",
7054
+ "auto-learned"
7055
+ ],
7056
+ "created_at": "1786691306Z",
7057
+ "last_accessed": "1786691306Z",
7058
+ "access_count": 0,
7059
+ "token_estimate": 54,
7060
+ "source": "manual",
7061
+ "session_id": null
7062
+ },
7063
+ {
7064
+ "id": 466,
7065
+ "memory_type": "semantic",
7066
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
7067
+ "tags": [
7068
+ "project-idiom",
7069
+ "auto-learned"
7070
+ ],
7071
+ "created_at": "1786691306Z",
7072
+ "last_accessed": "1786691306Z",
7073
+ "access_count": 0,
7074
+ "token_estimate": 17,
7075
+ "source": "manual",
7076
+ "session_id": null
7077
+ },
7078
+ {
7079
+ "id": 467,
7080
+ "memory_type": "semantic",
7081
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
7082
+ "tags": [
7083
+ "project-idiom",
7084
+ "auto-learned"
7085
+ ],
7086
+ "created_at": "1786691306Z",
7087
+ "last_accessed": "1786691306Z",
7088
+ "access_count": 0,
7089
+ "token_estimate": 19,
7090
+ "source": "manual",
7091
+ "session_id": null
7092
+ },
7093
+ {
7094
+ "id": 468,
7095
+ "memory_type": "semantic",
7096
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
7097
+ "tags": [
7098
+ "project-idiom",
7099
+ "auto-learned"
7100
+ ],
7101
+ "created_at": "1786691306Z",
7102
+ "last_accessed": "1786691306Z",
7103
+ "access_count": 0,
7104
+ "token_estimate": 20,
7105
+ "source": "manual",
7106
+ "session_id": null
7107
+ },
7108
+ {
7109
+ "id": 469,
7110
+ "memory_type": "semantic",
7111
+ "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.",
7112
+ "tags": [
7113
+ "project-idiom",
7114
+ "auto-learned"
7115
+ ],
7116
+ "created_at": "1786691306Z",
7117
+ "last_accessed": "1786691306Z",
7118
+ "access_count": 0,
7119
+ "token_estimate": 54,
7120
+ "source": "manual",
7121
+ "session_id": null
7122
+ },
7123
+ {
7124
+ "id": 470,
7125
+ "memory_type": "procedural",
7126
+ "content": "Run `npm run build:rust` to build the project",
7127
+ "tags": [
7128
+ "build-script",
7129
+ "build",
7130
+ "auto-learned"
7131
+ ],
7132
+ "created_at": "1786691306Z",
7133
+ "last_accessed": "1786691306Z",
7134
+ "access_count": 0,
7135
+ "token_estimate": 12,
7136
+ "source": "manual",
7137
+ "session_id": null
7138
+ },
7139
+ {
7140
+ "id": 471,
7141
+ "memory_type": "procedural",
7142
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
7143
+ "tags": [
7144
+ "build-script",
7145
+ "test",
7146
+ "auto-learned"
7147
+ ],
7148
+ "created_at": "1786691306Z",
7149
+ "last_accessed": "1786691306Z",
7150
+ "access_count": 0,
7151
+ "token_estimate": 21,
7152
+ "source": "manual",
7153
+ "session_id": null
7154
+ },
7155
+ {
7156
+ "id": 472,
7157
+ "memory_type": "semantic",
7158
+ "content": ".agent/scripts/skill_evolution.js",
7159
+ "tags": [
7160
+ "project-idiom",
7161
+ "auto-learned"
7162
+ ],
7163
+ "created_at": "1786691976Z",
7164
+ "last_accessed": "1786691976Z",
7165
+ "access_count": 0,
7166
+ "token_estimate": 9,
7167
+ "source": "manual",
7168
+ "session_id": null
7169
+ },
7170
+ {
7171
+ "id": 473,
7172
+ "memory_type": "semantic",
7173
+ "content": ".agent/scripts/verify_all.js",
7174
+ "tags": [
7175
+ "project-idiom",
7176
+ "auto-learned"
7177
+ ],
7178
+ "created_at": "1786691976Z",
7179
+ "last_accessed": "1786691976Z",
7180
+ "access_count": 0,
7181
+ "token_estimate": 7,
7182
+ "source": "manual",
7183
+ "session_id": null
7184
+ },
7185
+ {
7186
+ "id": 474,
7187
+ "memory_type": "semantic",
7188
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
7189
+ "tags": [
7190
+ "project-idiom",
7191
+ "auto-learned"
7192
+ ],
7193
+ "created_at": "1786691976Z",
7194
+ "last_accessed": "1786691976Z",
7195
+ "access_count": 0,
7196
+ "token_estimate": 32,
7197
+ "source": "manual",
7198
+ "session_id": null
7199
+ },
7200
+ {
7201
+ "id": 475,
7202
+ "memory_type": "semantic",
7203
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
7204
+ "tags": [
7205
+ "project-idiom",
7206
+ "auto-learned"
7207
+ ],
7208
+ "created_at": "1786691977Z",
7209
+ "last_accessed": "1786691977Z",
7210
+ "access_count": 0,
7211
+ "token_estimate": 34,
7212
+ "source": "manual",
7213
+ "session_id": null
7214
+ },
7215
+ {
7216
+ "id": 476,
7217
+ "memory_type": "semantic",
7218
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
7219
+ "tags": [
7220
+ "project-idiom",
7221
+ "auto-learned"
7222
+ ],
7223
+ "created_at": "1786691977Z",
7224
+ "last_accessed": "1786691977Z",
7225
+ "access_count": 0,
7226
+ "token_estimate": 20,
7227
+ "source": "manual",
7228
+ "session_id": null
7229
+ },
7230
+ {
7231
+ "id": 477,
7232
+ "memory_type": "semantic",
7233
+ "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.",
7234
+ "tags": [
7235
+ "project-idiom",
7236
+ "auto-learned"
7237
+ ],
7238
+ "created_at": "1786691977Z",
7239
+ "last_accessed": "1786691977Z",
7240
+ "access_count": 0,
7241
+ "token_estimate": 54,
7242
+ "source": "manual",
7243
+ "session_id": null
7244
+ },
7245
+ {
7246
+ "id": 478,
7247
+ "memory_type": "semantic",
7248
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
7249
+ "tags": [
7250
+ "project-idiom",
7251
+ "auto-learned"
7252
+ ],
7253
+ "created_at": "1786691977Z",
7254
+ "last_accessed": "1786691977Z",
7255
+ "access_count": 0,
7256
+ "token_estimate": 17,
7257
+ "source": "manual",
7258
+ "session_id": null
7259
+ },
7260
+ {
7261
+ "id": 479,
7262
+ "memory_type": "semantic",
7263
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
7264
+ "tags": [
7265
+ "project-idiom",
7266
+ "auto-learned"
7267
+ ],
7268
+ "created_at": "1786691977Z",
7269
+ "last_accessed": "1786691977Z",
7270
+ "access_count": 0,
7271
+ "token_estimate": 19,
7272
+ "source": "manual",
7273
+ "session_id": null
7274
+ },
7275
+ {
7276
+ "id": 480,
7277
+ "memory_type": "semantic",
7278
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
7279
+ "tags": [
7280
+ "project-idiom",
7281
+ "auto-learned"
7282
+ ],
7283
+ "created_at": "1786691977Z",
7284
+ "last_accessed": "1786691977Z",
7285
+ "access_count": 0,
7286
+ "token_estimate": 20,
7287
+ "source": "manual",
7288
+ "session_id": null
7289
+ },
7290
+ {
7291
+ "id": 481,
7292
+ "memory_type": "semantic",
7293
+ "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.",
7294
+ "tags": [
7295
+ "project-idiom",
7296
+ "auto-learned"
7297
+ ],
7298
+ "created_at": "1786691977Z",
7299
+ "last_accessed": "1786691977Z",
7300
+ "access_count": 0,
7301
+ "token_estimate": 54,
7302
+ "source": "manual",
7303
+ "session_id": null
7304
+ },
7305
+ {
7306
+ "id": 482,
7307
+ "memory_type": "procedural",
7308
+ "content": "Run `npm run build:rust` to build the project",
7309
+ "tags": [
7310
+ "build-script",
7311
+ "build",
7312
+ "auto-learned"
7313
+ ],
7314
+ "created_at": "1786691977Z",
7315
+ "last_accessed": "1786691977Z",
7316
+ "access_count": 0,
7317
+ "token_estimate": 12,
7318
+ "source": "manual",
7319
+ "session_id": null
7320
+ },
7321
+ {
7322
+ "id": 483,
7323
+ "memory_type": "procedural",
7324
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
7325
+ "tags": [
7326
+ "build-script",
7327
+ "test",
7328
+ "auto-learned"
7329
+ ],
7330
+ "created_at": "1786691977Z",
7331
+ "last_accessed": "1786691977Z",
7332
+ "access_count": 0,
7333
+ "token_estimate": 21,
7334
+ "source": "manual",
7335
+ "session_id": null
7336
+ },
7337
+ {
7338
+ "id": 484,
7339
+ "memory_type": "semantic",
7340
+ "content": ".agent/scripts/skill_evolution.js",
7341
+ "tags": [
7342
+ "project-idiom",
7343
+ "auto-learned"
7344
+ ],
7345
+ "created_at": "1786692149Z",
7346
+ "last_accessed": "1786692149Z",
7347
+ "access_count": 0,
7348
+ "token_estimate": 9,
7349
+ "source": "manual",
7350
+ "session_id": null
7351
+ },
7352
+ {
7353
+ "id": 485,
7354
+ "memory_type": "semantic",
7355
+ "content": ".agent/scripts/verify_all.js",
7356
+ "tags": [
7357
+ "project-idiom",
7358
+ "auto-learned"
7359
+ ],
7360
+ "created_at": "1786692149Z",
7361
+ "last_accessed": "1786692149Z",
7362
+ "access_count": 0,
7363
+ "token_estimate": 7,
7364
+ "source": "manual",
7365
+ "session_id": null
7366
+ },
7367
+ {
7368
+ "id": 486,
7369
+ "memory_type": "semantic",
7370
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
7371
+ "tags": [
7372
+ "project-idiom",
7373
+ "auto-learned"
7374
+ ],
7375
+ "created_at": "1786692149Z",
7376
+ "last_accessed": "1786692149Z",
7377
+ "access_count": 0,
7378
+ "token_estimate": 32,
7379
+ "source": "manual",
7380
+ "session_id": null
7381
+ },
7382
+ {
7383
+ "id": 487,
7384
+ "memory_type": "semantic",
7385
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
7386
+ "tags": [
7387
+ "project-idiom",
7388
+ "auto-learned"
7389
+ ],
7390
+ "created_at": "1786692149Z",
7391
+ "last_accessed": "1786692149Z",
7392
+ "access_count": 0,
7393
+ "token_estimate": 34,
7394
+ "source": "manual",
7395
+ "session_id": null
7396
+ },
7397
+ {
7398
+ "id": 488,
7399
+ "memory_type": "semantic",
7400
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
7401
+ "tags": [
7402
+ "project-idiom",
7403
+ "auto-learned"
7404
+ ],
7405
+ "created_at": "1786692149Z",
7406
+ "last_accessed": "1786692149Z",
7407
+ "access_count": 0,
7408
+ "token_estimate": 20,
7409
+ "source": "manual",
7410
+ "session_id": null
7411
+ },
7412
+ {
7413
+ "id": 489,
7414
+ "memory_type": "semantic",
7415
+ "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.",
7416
+ "tags": [
7417
+ "project-idiom",
7418
+ "auto-learned"
7419
+ ],
7420
+ "created_at": "1786692149Z",
7421
+ "last_accessed": "1786692149Z",
7422
+ "access_count": 0,
7423
+ "token_estimate": 54,
7424
+ "source": "manual",
7425
+ "session_id": null
7426
+ },
7427
+ {
7428
+ "id": 490,
7429
+ "memory_type": "semantic",
7430
+ "content": "[ ] Have I reviewed the user's specific constraints and requests?",
7431
+ "tags": [
7432
+ "project-idiom",
7433
+ "auto-learned"
7434
+ ],
7435
+ "created_at": "1786692149Z",
7436
+ "last_accessed": "1786692149Z",
7437
+ "access_count": 0,
7438
+ "token_estimate": 17,
7439
+ "source": "manual",
7440
+ "session_id": null
7441
+ },
7442
+ {
7443
+ "id": 491,
7444
+ "memory_type": "semantic",
7445
+ "content": "[ ] Have I checked the environment for relevant existing implementations?",
7446
+ "tags": [
7447
+ "project-idiom",
7448
+ "auto-learned"
7449
+ ],
7450
+ "created_at": "1786692149Z",
7451
+ "last_accessed": "1786692149Z",
7452
+ "access_count": 0,
7453
+ "token_estimate": 19,
7454
+ "source": "manual",
7455
+ "session_id": null
7456
+ },
7457
+ {
7458
+ "id": 492,
7459
+ "memory_type": "semantic",
7460
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
7461
+ "tags": [
7462
+ "project-idiom",
7463
+ "auto-learned"
7464
+ ],
7465
+ "created_at": "1786692149Z",
7466
+ "last_accessed": "1786692149Z",
7467
+ "access_count": 0,
7468
+ "token_estimate": 20,
7469
+ "source": "manual",
7470
+ "session_id": null
7471
+ },
7472
+ {
7473
+ "id": 493,
7474
+ "memory_type": "semantic",
7475
+ "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.",
7476
+ "tags": [
7477
+ "project-idiom",
7478
+ "auto-learned"
7479
+ ],
7480
+ "created_at": "1786692149Z",
7481
+ "last_accessed": "1786692149Z",
7482
+ "access_count": 0,
7483
+ "token_estimate": 54,
7484
+ "source": "manual",
7485
+ "session_id": null
7486
+ },
7487
+ {
7488
+ "id": 494,
7489
+ "memory_type": "procedural",
7490
+ "content": "Run `npm run build:rust` to build the project",
7491
+ "tags": [
7492
+ "build-script",
7493
+ "build",
7494
+ "auto-learned"
7495
+ ],
7496
+ "created_at": "1786692149Z",
7497
+ "last_accessed": "1786692149Z",
7498
+ "access_count": 0,
7499
+ "token_estimate": 12,
7500
+ "source": "manual",
7501
+ "session_id": null
7502
+ },
7503
+ {
7504
+ "id": 495,
7505
+ "memory_type": "procedural",
7506
+ "content": "Run `npm run validate-payload && jest --runInBand --coverage` to test the project",
7507
+ "tags": [
7508
+ "build-script",
7509
+ "test",
7510
+ "auto-learned"
7511
+ ],
7512
+ "created_at": "1786692149Z",
7513
+ "last_accessed": "1786692149Z",
7514
+ "access_count": 0,
7515
+ "token_estimate": 21,
7516
+ "source": "manual",
7517
+ "session_id": null
7518
+ },
7519
+ {
7520
+ "id": 496,
7521
+ "memory_type": "semantic",
7522
+ "content": ".agent/scripts/skill_evolution.js",
7523
+ "tags": [
7524
+ "project-idiom",
7525
+ "auto-learned"
7526
+ ],
7527
+ "created_at": "1786692241Z",
7528
+ "last_accessed": "1786692241Z",
7529
+ "access_count": 0,
7530
+ "token_estimate": 9,
7531
+ "source": "manual",
7532
+ "session_id": null
7533
+ },
7534
+ {
7535
+ "id": 497,
7536
+ "memory_type": "semantic",
7537
+ "content": ".agent/scripts/verify_all.js",
7538
+ "tags": [
7539
+ "project-idiom",
7540
+ "auto-learned"
7541
+ ],
7542
+ "created_at": "1786692241Z",
7543
+ "last_accessed": "1786692241Z",
7544
+ "access_count": 0,
7545
+ "token_estimate": 7,
7546
+ "source": "manual",
7547
+ "session_id": null
7548
+ },
7549
+ {
7550
+ "id": 498,
7551
+ "memory_type": "semantic",
7552
+ "content": "❌ Overriding project idioms without explicit justification -> ✅ Idioms represent team decisions; flag deviations with reasoning",
7553
+ "tags": [
7554
+ "project-idiom",
7555
+ "auto-learned"
7556
+ ],
7557
+ "created_at": "1786692241Z",
7558
+ "last_accessed": "1786692241Z",
7559
+ "access_count": 0,
7560
+ "token_estimate": 32,
7561
+ "source": "manual",
7562
+ "session_id": null
7563
+ },
7564
+ {
7565
+ "id": 499,
7566
+ "memory_type": "semantic",
7567
+ "content": "❌ Applying idioms from one project to a different project -> ✅ Idioms are project-specific; verify they apply to the current codebase",
7568
+ "tags": [
7569
+ "project-idiom",
7570
+ "auto-learned"
7571
+ ],
7572
+ "created_at": "1786692241Z",
7573
+ "last_accessed": "1786692241Z",
7574
+ "access_count": 0,
7575
+ "token_estimate": 34,
7576
+ "source": "manual",
7577
+ "session_id": null
7578
+ },
7579
+ {
7580
+ "id": 500,
7581
+ "memory_type": "semantic",
7582
+ "content": "❌ **Forbidden:** Declaring a task complete because the output \"looks correct.\"",
7583
+ "tags": [
7584
+ "project-idiom",
7585
+ "auto-learned"
7586
+ ],
7587
+ "created_at": "1786692241Z",
7588
+ "last_accessed": "1786692241Z",
7589
+ "access_count": 0,
7590
+ "token_estimate": 20,
7591
+ "source": "manual",
7592
+ "session_id": null
3878
7593
  }
3879
7594
  ],
3880
- "next_id": 256
7595
+ "next_id": 501
3881
7596
  }