tribunal-kit 6.0.1 → 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 (349) hide show
  1. package/.agent/ARCHITECTURE.md +9 -6
  2. package/.agent/agents/accessibility-reviewer.md +23 -16
  3. package/.agent/agents/ai-code-reviewer.md +25 -21
  4. package/.agent/agents/anti-pattern-reviewer.md +12 -7
  5. package/.agent/agents/api-architect.md +1 -0
  6. package/.agent/agents/backend-specialist.md +23 -22
  7. package/.agent/agents/cloud-engineer.md +1 -0
  8. package/.agent/agents/code-archaeologist.md +1 -0
  9. package/.agent/agents/complexity-reviewer.md +10 -7
  10. package/.agent/agents/database-architect.md +3 -2
  11. package/.agent/agents/db-latency-auditor.md +6 -2
  12. package/.agent/agents/debugger.md +3 -2
  13. package/.agent/agents/dependency-reviewer.md +1 -0
  14. package/.agent/agents/devops-engineer.md +9 -8
  15. package/.agent/agents/documentation-writer.md +6 -5
  16. package/.agent/agents/explorer-agent.md +1 -0
  17. package/.agent/agents/frontend-reviewer.md +21 -17
  18. package/.agent/agents/frontend-specialist.md +23 -20
  19. package/.agent/agents/game-developer.md +1 -0
  20. package/.agent/agents/interaction-reviewer.md +10 -5
  21. package/.agent/agents/logic-reviewer.md +3 -0
  22. package/.agent/agents/minimalist-reviewer.md +6 -0
  23. package/.agent/agents/mobile-developer.md +7 -6
  24. package/.agent/agents/mobile-reviewer.md +14 -13
  25. package/.agent/agents/orchestrator.md +3 -0
  26. package/.agent/agents/penetration-tester.md +1 -0
  27. package/.agent/agents/performance-optimizer.md +6 -5
  28. package/.agent/agents/performance-reviewer.md +6 -6
  29. package/.agent/agents/pipeline-reviewer.md +144 -0
  30. package/.agent/agents/precedence-reviewer.md +1 -0
  31. package/.agent/agents/product-manager.md +1 -0
  32. package/.agent/agents/product-owner.md +1 -0
  33. package/.agent/agents/product-reviewer.md +12 -7
  34. package/.agent/agents/project-planner.md +3 -0
  35. package/.agent/agents/qa-automation-engineer.md +50 -43
  36. package/.agent/agents/resilience-reviewer.md +1 -0
  37. package/.agent/agents/schema-reviewer.md +1 -0
  38. package/.agent/agents/security-auditor.md +24 -24
  39. package/.agent/agents/seo-specialist.md +33 -23
  40. package/.agent/agents/sql-reviewer.md +5 -4
  41. package/.agent/agents/supervisor-agent.md +12 -2
  42. package/.agent/agents/swarm-worker-contracts.md +13 -13
  43. package/.agent/agents/swarm-worker-registry.md +51 -51
  44. package/.agent/agents/system-architect.md +1 -0
  45. package/.agent/agents/test-coverage-reviewer.md +25 -22
  46. package/.agent/agents/test-engineer.md +12 -11
  47. package/.agent/agents/throughput-optimizer.md +45 -40
  48. package/.agent/agents/type-safety-reviewer.md +5 -4
  49. package/.agent/agents/ui-ux-auditor.md +6 -4
  50. package/.agent/agents/ui-visual-auditor.md +3 -0
  51. package/.agent/agents/ux-reviewer.md +11 -6
  52. package/.agent/agents/visual-reviewer.md +11 -6
  53. package/.agent/agents/vitals-reviewer.md +5 -4
  54. package/.agent/history/memory/.memory.idx +1532 -1
  55. package/.agent/history/memory/MEMORY.md +102 -1
  56. package/.agent/mcp_config.json +1 -6
  57. package/.agent/routing_index.json +2033 -263
  58. package/.agent/rules/GEMINI.md +11 -9
  59. package/.agent/rules/GEMINI_PLANNER.md +19 -21
  60. package/.agent/scripts/_colors.js +52 -54
  61. package/.agent/scripts/_utils.js +52 -53
  62. package/.agent/scripts/auto_preview.js +39 -43
  63. package/.agent/scripts/bundle_analyzer.js +47 -60
  64. package/.agent/scripts/case_law_manager.js +200 -294
  65. package/.agent/scripts/checklist.js +73 -94
  66. package/.agent/scripts/cicd_validator.js +305 -0
  67. package/.agent/scripts/compile_router.py +4 -111
  68. package/.agent/scripts/context_broker.js +317 -412
  69. package/.agent/scripts/contract_engine.js +402 -0
  70. package/.agent/scripts/dependency_analyzer.js +112 -124
  71. package/.agent/scripts/graph_builder.js +75 -103
  72. package/.agent/scripts/graph_visualizer.js +10 -12
  73. package/.agent/scripts/graph_zoom.js +38 -55
  74. package/.agent/scripts/guardrail_engine.js +195 -145
  75. package/.agent/scripts/impact_classifier.js +55 -30
  76. package/.agent/scripts/inner_loop_validator.js +108 -159
  77. package/.agent/scripts/integrity_manifest.js +59 -67
  78. package/.agent/scripts/lint_runner.js +65 -75
  79. package/.agent/scripts/marathon_harness.js +131 -208
  80. package/.agent/scripts/migrate_skills_frontmatter.py +4 -63
  81. package/.agent/scripts/minify_context.js +29 -33
  82. package/.agent/scripts/minimal_change_engine.js +95 -87
  83. package/.agent/scripts/mutation_runner.js +46 -62
  84. package/.agent/scripts/pipeline_engine.js +320 -209
  85. package/.agent/scripts/prompt_compiler.js +118 -93
  86. package/.agent/scripts/schema_validator.js +73 -121
  87. package/.agent/scripts/security_scan.js +88 -117
  88. package/.agent/scripts/session_manager.js +52 -69
  89. package/.agent/scripts/signal_detector.js +24 -22
  90. package/.agent/scripts/skill_evolution.js +184 -245
  91. package/.agent/scripts/skill_integrator.js +35 -48
  92. package/.agent/scripts/socratic_gate_policy.js +15 -12
  93. package/.agent/scripts/strengthen_skills.js +29 -33
  94. package/.agent/scripts/swarm_dispatcher.js +120 -151
  95. package/.agent/scripts/test_runner.js +54 -56
  96. package/.agent/scripts/token_budget_broker.js +9 -7
  97. package/.agent/scripts/trace_engine.js +126 -0
  98. package/.agent/scripts/verify_all.js +76 -93
  99. package/.agent/scripts/visual_audit.js +16 -21
  100. package/.agent/skill_topic_map.json +22 -3
  101. package/.agent/skills/12-principles-of-animation/SKILL.md +7 -0
  102. package/.agent/skills/60fps-animation/SKILL.md +7 -0
  103. package/.agent/skills/accessible-animation/SKILL.md +5 -1
  104. package/.agent/skills/adapt/SKILL.md +7 -1
  105. package/.agent/skills/advanced-rag-pipelines/SKILL.md +1 -0
  106. package/.agent/skills/agent-organizer/SKILL.md +1 -0
  107. package/.agent/skills/agentic-patterns/SKILL.md +33 -25
  108. package/.agent/skills/agentic-workflows-2026/SKILL.md +6 -2
  109. package/.agent/skills/ai-app-hardening/SKILL.md +9 -8
  110. package/.agent/skills/ai-prompt-injection-defense/SKILL.md +7 -6
  111. package/.agent/skills/animation-on-scroll/SKILL.md +24 -15
  112. package/.agent/skills/animation-systems/SKILL.md +11 -10
  113. package/.agent/skills/antfu-conventions/SKILL.md +7 -2
  114. package/.agent/skills/api-patterns/SKILL.md +14 -10
  115. package/.agent/skills/api-security-auditor/SKILL.md +15 -14
  116. package/.agent/skills/app-builder/SKILL.md +1 -0
  117. package/.agent/skills/app-builder/templates/nextjs-fullstack/TEMPLATE.md +2 -2
  118. package/.agent/skills/app-builder/templates/nextjs-saas/TEMPLATE.md +1 -1
  119. package/.agent/skills/app-builder/templates/nextjs-static/TEMPLATE.md +12 -12
  120. package/.agent/skills/app-builder/templates/nuxt-app/TEMPLATE.md +3 -3
  121. package/.agent/skills/apple-design/SKILL.md +8 -7
  122. package/.agent/skills/architecture/SKILL.md +3 -2
  123. package/.agent/skills/audit-and-fix/SKILL.md +8 -5
  124. package/.agent/skills/authentication-best-practices/SKILL.md +9 -8
  125. package/.agent/skills/backend-security-expert/SKILL.md +1 -0
  126. package/.agent/skills/baseline-ui/SKILL.md +8 -7
  127. package/.agent/skills/bash-linux/SKILL.md +1 -0
  128. package/.agent/skills/behavioral-modes/SKILL.md +1 -0
  129. package/.agent/skills/better-colors/SKILL.md +11 -7
  130. package/.agent/skills/better-typography/SKILL.md +30 -16
  131. package/.agent/skills/better-ui/SKILL.md +17 -10
  132. package/.agent/skills/bolder/SKILL.md +6 -0
  133. package/.agent/skills/brainstorming/SKILL.md +6 -4
  134. package/.agent/skills/browser-native-ai/SKILL.md +5 -4
  135. package/.agent/skills/build-primitive/SKILL.md +5 -0
  136. package/.agent/skills/building-native-ui/SKILL.md +1 -0
  137. package/.agent/skills/cicd-pro/SKILL.md +2 -1
  138. package/.agent/skills/clarify/SKILL.md +19 -14
  139. package/.agent/skills/clean-code/SKILL.md +16 -15
  140. package/.agent/skills/cloud-architect/SKILL.md +1 -0
  141. package/.agent/skills/cobejs/SKILL.md +7 -9
  142. package/.agent/skills/code-review-checklist/SKILL.md +1 -0
  143. package/.agent/skills/codebase-design/SKILL.md +7 -2
  144. package/.agent/skills/colorize/SKILL.md +8 -3
  145. package/.agent/skills/compact-landing/SKILL.md +8 -3
  146. package/.agent/skills/company-logos/SKILL.md +6 -0
  147. package/.agent/skills/config-validator/SKILL.md +10 -9
  148. package/.agent/skills/containerization-pro/SKILL.md +6 -5
  149. package/.agent/skills/context-engineering-pro/SKILL.md +5 -4
  150. package/.agent/skills/create-design-md/SKILL.md +13 -5
  151. package/.agent/skills/critique/SKILL.md +10 -8
  152. package/.agent/skills/csharp-developer/SKILL.md +1 -0
  153. package/.agent/skills/data-validation-schemas/SKILL.md +28 -23
  154. package/.agent/skills/database-design/SKILL.md +2 -1
  155. package/.agent/skills/delight/SKILL.md +6 -0
  156. package/.agent/skills/deployment-procedures/SKILL.md +2 -1
  157. package/.agent/skills/design-lab/SKILL.md +5 -0
  158. package/.agent/skills/devops-engineer/SKILL.md +3 -2
  159. package/.agent/skills/devops-incident-responder/SKILL.md +2 -1
  160. package/.agent/skills/diagnosing-bugs/SKILL.md +12 -2
  161. package/.agent/skills/distill/SKILL.md +7 -2
  162. package/.agent/skills/documentation-templates/SKILL.md +3 -2
  163. package/.agent/skills/domain-modeling/SKILL.md +12 -4
  164. package/.agent/skills/duckdb-analytical-sql/SKILL.md +7 -3
  165. package/.agent/skills/edge-ai-mobile/SKILL.md +5 -1
  166. package/.agent/skills/edge-computing/SKILL.md +9 -8
  167. package/.agent/skills/emil-design-eng/SKILL.md +43 -27
  168. package/.agent/skills/error-resilience/SKILL.md +34 -16
  169. package/.agent/skills/expo-router-v4/SKILL.md +2 -1
  170. package/.agent/skills/extract-design-system/SKILL.md +12 -11
  171. package/.agent/skills/fabel-protocol/SKILL.md +24 -17
  172. package/.agent/skills/fixing-accessibility/SKILL.md +23 -16
  173. package/.agent/skills/fixing-metadata/SKILL.md +24 -13
  174. package/.agent/skills/fixing-motion-performance/SKILL.md +7 -5
  175. package/.agent/skills/framer-motion-expert/SKILL.md +29 -15
  176. package/.agent/skills/frontend-design/SKILL.md +21 -13
  177. package/.agent/skills/frontend-security-expert/SKILL.md +1 -0
  178. package/.agent/skills/game-design-expert/SKILL.md +1 -0
  179. package/.agent/skills/game-engineering-expert/SKILL.md +1 -0
  180. package/.agent/skills/generative-ui-expert/SKILL.md +3 -2
  181. package/.agent/skills/geo-fundamentals/SKILL.md +2 -1
  182. package/.agent/skills/git-pro/SKILL.md +10 -9
  183. package/.agent/skills/github-operations/SKILL.md +2 -1
  184. package/.agent/skills/gpt-taste/SKILL.md +7 -0
  185. package/.agent/skills/gsap-core/SKILL.md +26 -22
  186. package/.agent/skills/gsap-frameworks/SKILL.md +6 -5
  187. package/.agent/skills/gsap-performance/SKILL.md +4 -3
  188. package/.agent/skills/gsap-plugins/SKILL.md +34 -33
  189. package/.agent/skills/gsap-react/SKILL.md +9 -8
  190. package/.agent/skills/gsap-scrolltrigger/SKILL.md +34 -33
  191. package/.agent/skills/gsap-timeline/SKILL.md +18 -15
  192. package/.agent/skills/gsap-utils/SKILL.md +25 -24
  193. package/.agent/skills/harden/SKILL.md +9 -3
  194. package/.agent/skills/harness-protocol/SKILL.md +1 -0
  195. package/.agent/skills/i18n-localization/SKILL.md +10 -9
  196. package/.agent/skills/impeccable/SKILL.md +5 -0
  197. package/.agent/skills/improve-codebase-architecture/SKILL.md +10 -5
  198. package/.agent/skills/improve-ui/SKILL.md +12 -5
  199. package/.agent/skills/intelligent-routing/SKILL.md +7 -6
  200. package/.agent/skills/knowledge-graph/SKILL.md +1 -0
  201. package/.agent/skills/landing-page/SKILL.md +1 -0
  202. package/.agent/skills/lint-and-validate/SKILL.md +9 -4
  203. package/.agent/skills/llm-engineering/SKILL.md +55 -54
  204. package/.agent/skills/local-first/SKILL.md +20 -19
  205. package/.agent/skills/local-first-architecture/SKILL.md +6 -1
  206. package/.agent/skills/lottie-animation/SKILL.md +7 -3
  207. package/.agent/skills/marquee-loop/SKILL.md +1 -0
  208. package/.agent/skills/masked-reveal/SKILL.md +17 -4
  209. package/.agent/skills/mcp-builder/SKILL.md +13 -10
  210. package/.agent/skills/micro-interaction/SKILL.md +20 -5
  211. package/.agent/skills/mobile-design/SKILL.md +26 -15
  212. package/.agent/skills/monorepo-management/SKILL.md +3 -2
  213. package/.agent/skills/morphing-icons/SKILL.md +16 -6
  214. package/.agent/skills/motion-engineering/SKILL.md +19 -15
  215. package/.agent/skills/nextjs-react-expert/SKILL.md +26 -21
  216. package/.agent/skills/nodejs-best-practices/SKILL.md +89 -76
  217. package/.agent/skills/observability/SKILL.md +45 -44
  218. package/.agent/skills/opentelemetry-observability/SKILL.md +2 -1
  219. package/.agent/skills/page-transition-animation/SKILL.md +6 -3
  220. package/.agent/skills/parallel-agents/SKILL.md +7 -2
  221. package/.agent/skills/performance-profiling/SKILL.md +24 -13
  222. package/.agent/skills/plan-writing/SKILL.md +1 -0
  223. package/.agent/skills/platform-engineer/SKILL.md +3 -2
  224. package/.agent/skills/platform-engineering-opentofu/SKILL.md +1 -0
  225. package/.agent/skills/playwright-ai-e2e/SKILL.md +3 -2
  226. package/.agent/skills/playwright-best-practices/SKILL.md +29 -28
  227. package/.agent/skills/polish/SKILL.md +13 -12
  228. package/.agent/skills/powershell-windows/SKILL.md +1 -0
  229. package/.agent/skills/pricing-page/SKILL.md +8 -3
  230. package/.agent/skills/product-aware-heuristics/SKILL.md +122 -72
  231. package/.agent/skills/progressive-blur/SKILL.md +9 -4
  232. package/.agent/skills/project-idioms/SKILL.md +1 -0
  233. package/.agent/skills/property-based-testing/SKILL.md +10 -12
  234. package/.agent/skills/python-patterns/SKILL.md +1 -0
  235. package/.agent/skills/python-pro/SKILL.md +1 -0
  236. package/.agent/skills/quieter/SKILL.md +6 -0
  237. package/.agent/skills/react-doctor/SKILL.md +6 -0
  238. package/.agent/skills/react-specialist/SKILL.md +32 -28
  239. package/.agent/skills/readme-builder/SKILL.md +1 -0
  240. package/.agent/skills/realtime-patterns/SKILL.md +34 -33
  241. package/.agent/skills/red-team-tactics/SKILL.md +1 -0
  242. package/.agent/skills/redesign-skill/SKILL.md +6 -0
  243. package/.agent/skills/review-animations/SKILL.md +5 -2
  244. package/.agent/skills/review-animations/STANDARDS.md +37 -23
  245. package/.agent/skills/rust-pro/SKILL.md +1 -0
  246. package/.agent/skills/seo-fundamentals/SKILL.md +4 -3
  247. package/.agent/skills/server-management/SKILL.md +1 -0
  248. package/.agent/skills/shadcn-ui-expert/SKILL.md +28 -22
  249. package/.agent/skills/shape/SKILL.md +9 -2
  250. package/.agent/skills/skill-creator/SKILL.md +1 -0
  251. package/.agent/skills/soft-skill/SKILL.md +6 -0
  252. package/.agent/skills/sounds-on-the-web/SKILL.md +1 -0
  253. package/.agent/skills/sql-pro/SKILL.md +1 -0
  254. package/.agent/skills/supabase-postgres-best-practices/SKILL.md +1 -0
  255. package/.agent/skills/svg-animation/SKILL.md +16 -7
  256. package/.agent/skills/swiftui-expert/SKILL.md +1 -0
  257. package/.agent/skills/swiss-design/SKILL.md +5 -0
  258. package/.agent/skills/system-design-pro/SKILL.md +1 -0
  259. package/.agent/skills/systematic-debugging/SKILL.md +1 -0
  260. package/.agent/skills/tailwind-patterns/SKILL.md +25 -11
  261. package/.agent/skills/taste-skill/SKILL.md +6 -0
  262. package/.agent/skills/tdd-workflow/SKILL.md +5 -0
  263. package/.agent/skills/test-result-analyzer/SKILL.md +1 -0
  264. package/.agent/skills/testing-patterns/SKILL.md +123 -115
  265. package/.agent/skills/thermo-nuclear-code-quality-review/SKILL.md +5 -0
  266. package/.agent/skills/thinking-protocol/SKILL.md +3 -0
  267. package/.agent/skills/to-spring-or-not-to-spring/SKILL.md +9 -8
  268. package/.agent/skills/transitions-dev/SKILL.md +19 -6
  269. package/.agent/skills/trend-researcher/SKILL.md +1 -0
  270. package/.agent/skills/typescript-advanced/SKILL.md +23 -18
  271. package/.agent/skills/typeset/SKILL.md +10 -1
  272. package/.agent/skills/ui-reasoning-engine/SKILL.md +67 -48
  273. package/.agent/skills/ui-skill-packs/SKILL.md +6 -1
  274. package/.agent/skills/ui-skills-root/SKILL.md +39 -38
  275. package/.agent/skills/ui-ux-pro-max/SKILL.md +34 -26
  276. package/.agent/skills/ui-ux-researcher/SKILL.md +1 -0
  277. package/.agent/skills/vector-search-pgvector/SKILL.md +3 -2
  278. package/.agent/skills/vue-expert/SKILL.md +22 -19
  279. package/.agent/skills/vulnerability-scanner/SKILL.md +22 -21
  280. package/.agent/skills/web-accessibility-auditor/SKILL.md +2 -1
  281. package/.agent/skills/web-design-guidelines/SKILL.md +16 -10
  282. package/.agent/skills/web-quality-audit/SKILL.md +5 -0
  283. package/.agent/skills/webapp-testing/SKILL.md +14 -13
  284. package/.agent/skills/webgpu-performance/SKILL.md +1 -0
  285. package/.agent/skills/whimsy-injector/SKILL.md +9 -5
  286. package/.agent/skills/workflow-optimizer/SKILL.md +1 -0
  287. package/.agent/skills/zero-trust-passkeys/SKILL.md +11 -6
  288. package/.agent/templates/DESIGN.md +119 -110
  289. package/.agent/templates/design-tokens.json +9 -6
  290. package/.agent/workflows/acf.md +1 -0
  291. package/.agent/workflows/api-tester.md +1 -0
  292. package/.agent/workflows/audit.md +1 -0
  293. package/.agent/workflows/brainstorm.md +1 -0
  294. package/.agent/workflows/changelog.md +1 -0
  295. package/.agent/workflows/contract.md +60 -0
  296. package/.agent/workflows/create.md +1 -0
  297. package/.agent/workflows/debug.md +1 -0
  298. package/.agent/workflows/deploy.md +1 -0
  299. package/.agent/workflows/enhance.md +1 -0
  300. package/.agent/workflows/fix-ci.md +89 -0
  301. package/.agent/workflows/fix.md +1 -0
  302. package/.agent/workflows/generate.md +1 -0
  303. package/.agent/workflows/marathon.md +1 -0
  304. package/.agent/workflows/migrate.md +1 -0
  305. package/.agent/workflows/minimal.md +9 -7
  306. package/.agent/workflows/orchestrate.md +1 -0
  307. package/.agent/workflows/performance-benchmarker.md +1 -0
  308. package/.agent/workflows/pipeline.md +26 -21
  309. package/.agent/workflows/plan.md +1 -0
  310. package/.agent/workflows/preview.md +1 -0
  311. package/.agent/workflows/refactor.md +3 -2
  312. package/.agent/workflows/review-ai.md +4 -3
  313. package/.agent/workflows/review.md +1 -0
  314. package/.agent/workflows/session.md +1 -0
  315. package/.agent/workflows/status.md +1 -0
  316. package/.agent/workflows/strengthen-skills.md +1 -0
  317. package/.agent/workflows/super-prompt.md +1 -0
  318. package/.agent/workflows/swarm.md +15 -3
  319. package/.agent/workflows/test.md +8 -7
  320. package/.agent/workflows/tribunal-backend.md +3 -2
  321. package/.agent/workflows/tribunal-cicd.md +104 -0
  322. package/.agent/workflows/tribunal-database.md +1 -0
  323. package/.agent/workflows/tribunal-frontend.md +8 -6
  324. package/.agent/workflows/tribunal-full.md +2 -1
  325. package/.agent/workflows/tribunal-mobile.md +6 -5
  326. package/.agent/workflows/tribunal-performance.md +1 -0
  327. package/.agent/workflows/tribunal-speed.md +1 -0
  328. package/.agent/workflows/tribunal-ui.md +29 -21
  329. package/.agent/workflows/ui-ux-pro-max.md +19 -15
  330. package/CONTRIBUTING.md +3 -3
  331. package/README.md +94 -44
  332. package/SECURITY.md +10 -10
  333. package/bin/mcp-server.js +385 -252
  334. package/bin/tribunal-kit.js +29 -30
  335. package/bin/wrapper.js +40 -46
  336. package/dist/cli.js +6 -0
  337. package/dist/commands/case.js +2 -0
  338. package/dist/commands/contract.js +440 -0
  339. package/dist/commands/status.js +6 -0
  340. package/dist/index.d.ts +8 -1
  341. package/package.json +13 -12
  342. package/scripts/benchmark.js +62 -86
  343. package/scripts/changelog.js +67 -73
  344. package/scripts/fix-vbc.js +13 -15
  345. package/scripts/fix-vbc.ps1 +2 -118
  346. package/scripts/stress_benchmark.js +358 -0
  347. package/scripts/sync-version.js +71 -41
  348. package/scripts/validate-payload.js +23 -30
  349. package/scripts/visual_audit.js +23 -13
@@ -6059,7 +6059,1538 @@
6059
6059
  "token_estimate": 21,
6060
6060
  "source": "manual",
6061
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
6062
7593
  }
6063
7594
  ],
6064
- "next_id": 400
7595
+ "next_id": 501
6065
7596
  }