@timmeck/brain 1.9.0 → 2.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 (214) hide show
  1. package/README.md +19 -0
  2. package/brain.log +1164 -0
  3. package/{src/cli/commands/dashboard.ts → dashboard.html} +688 -807
  4. package/dist/api/server.d.ts +4 -18
  5. package/dist/api/server.js +4 -173
  6. package/dist/api/server.js.map +1 -1
  7. package/dist/brain.d.ts +1 -0
  8. package/dist/brain.js +6 -1
  9. package/dist/brain.js.map +1 -1
  10. package/dist/cli/colors.d.ts +4 -25
  11. package/dist/cli/colors.js +3 -89
  12. package/dist/cli/colors.js.map +1 -1
  13. package/dist/cli/commands/peers.d.ts +2 -0
  14. package/dist/cli/commands/peers.js +38 -0
  15. package/dist/cli/commands/peers.js.map +1 -0
  16. package/dist/db/connection.d.ts +1 -2
  17. package/dist/db/connection.js +1 -18
  18. package/dist/db/connection.js.map +1 -1
  19. package/dist/index.js +3 -1
  20. package/dist/index.js.map +1 -1
  21. package/dist/ipc/__tests__/protocol.test.d.ts +1 -0
  22. package/dist/ipc/__tests__/protocol.test.js +117 -0
  23. package/dist/ipc/__tests__/protocol.test.js.map +1 -0
  24. package/dist/ipc/client.d.ts +1 -16
  25. package/dist/ipc/client.js +1 -100
  26. package/dist/ipc/client.js.map +1 -1
  27. package/dist/ipc/protocol.d.ts +1 -8
  28. package/dist/ipc/protocol.js +1 -28
  29. package/dist/ipc/protocol.js.map +1 -1
  30. package/dist/ipc/router.js +8 -0
  31. package/dist/ipc/router.js.map +1 -1
  32. package/dist/ipc/server.d.ts +1 -22
  33. package/dist/ipc/server.js +1 -163
  34. package/dist/ipc/server.js.map +1 -1
  35. package/dist/mcp/http-server.d.ts +1 -7
  36. package/dist/mcp/http-server.js +6 -117
  37. package/dist/mcp/http-server.js.map +1 -1
  38. package/dist/mcp/server.js +5 -61
  39. package/dist/mcp/server.js.map +1 -1
  40. package/dist/signals/__tests__/fingerprint.test.d.ts +1 -0
  41. package/dist/signals/__tests__/fingerprint.test.js +118 -0
  42. package/dist/signals/__tests__/fingerprint.test.js.map +1 -0
  43. package/dist/types/ipc.types.d.ts +1 -11
  44. package/dist/utils/__tests__/hash.test.d.ts +1 -0
  45. package/dist/utils/__tests__/hash.test.js +32 -0
  46. package/dist/utils/__tests__/hash.test.js.map +1 -0
  47. package/dist/utils/__tests__/paths.test.d.ts +1 -0
  48. package/dist/utils/__tests__/paths.test.js +75 -0
  49. package/dist/utils/__tests__/paths.test.js.map +1 -0
  50. package/dist/utils/events.d.ts +4 -8
  51. package/dist/utils/events.js +2 -14
  52. package/dist/utils/events.js.map +1 -1
  53. package/dist/utils/hash.d.ts +1 -1
  54. package/dist/utils/hash.js +1 -4
  55. package/dist/utils/hash.js.map +1 -1
  56. package/dist/utils/logger.d.ts +3 -2
  57. package/dist/utils/logger.js +8 -35
  58. package/dist/utils/logger.js.map +1 -1
  59. package/dist/utils/paths.d.ts +2 -1
  60. package/dist/utils/paths.js +4 -13
  61. package/dist/utils/paths.js.map +1 -1
  62. package/package.json +2 -1
  63. package/BRAIN_PLAN.md +0 -3324
  64. package/reddit_post.md +0 -45
  65. package/src/api/server.ts +0 -395
  66. package/src/brain.ts +0 -313
  67. package/src/cli/colors.ts +0 -116
  68. package/src/cli/commands/config.ts +0 -169
  69. package/src/cli/commands/doctor.ts +0 -124
  70. package/src/cli/commands/explain.ts +0 -83
  71. package/src/cli/commands/export.ts +0 -31
  72. package/src/cli/commands/import.ts +0 -199
  73. package/src/cli/commands/insights.ts +0 -65
  74. package/src/cli/commands/learn.ts +0 -24
  75. package/src/cli/commands/modules.ts +0 -53
  76. package/src/cli/commands/network.ts +0 -67
  77. package/src/cli/commands/projects.ts +0 -42
  78. package/src/cli/commands/query.ts +0 -120
  79. package/src/cli/commands/start.ts +0 -105
  80. package/src/cli/commands/status.ts +0 -75
  81. package/src/cli/commands/stop.ts +0 -34
  82. package/src/cli/ipc-helper.ts +0 -22
  83. package/src/cli/update-check.ts +0 -63
  84. package/src/code/analyzer.ts +0 -117
  85. package/src/code/fingerprint.ts +0 -87
  86. package/src/code/matcher.ts +0 -129
  87. package/src/code/parsers/generic.ts +0 -29
  88. package/src/code/parsers/python.ts +0 -54
  89. package/src/code/parsers/typescript.ts +0 -65
  90. package/src/code/registry.ts +0 -60
  91. package/src/code/scorer.ts +0 -120
  92. package/src/config.ts +0 -135
  93. package/src/dashboard/server.ts +0 -142
  94. package/src/db/connection.ts +0 -22
  95. package/src/db/migrations/001_core_schema.ts +0 -120
  96. package/src/db/migrations/002_learning_schema.ts +0 -38
  97. package/src/db/migrations/003_code_schema.ts +0 -53
  98. package/src/db/migrations/004_synapses_schema.ts +0 -57
  99. package/src/db/migrations/005_fts_indexes.ts +0 -78
  100. package/src/db/migrations/006_synapses_phase3.ts +0 -17
  101. package/src/db/migrations/007_feedback.ts +0 -13
  102. package/src/db/migrations/008_git_integration.ts +0 -38
  103. package/src/db/migrations/009_embeddings.ts +0 -8
  104. package/src/db/migrations/index.ts +0 -70
  105. package/src/db/repositories/antipattern.repository.ts +0 -66
  106. package/src/db/repositories/code-module.repository.ts +0 -142
  107. package/src/db/repositories/error.repository.ts +0 -189
  108. package/src/db/repositories/insight.repository.ts +0 -99
  109. package/src/db/repositories/notification.repository.ts +0 -66
  110. package/src/db/repositories/project.repository.ts +0 -93
  111. package/src/db/repositories/rule.repository.ts +0 -108
  112. package/src/db/repositories/solution.repository.ts +0 -154
  113. package/src/db/repositories/synapse.repository.ts +0 -163
  114. package/src/db/repositories/terminal.repository.ts +0 -101
  115. package/src/embeddings/engine.ts +0 -238
  116. package/src/hooks/post-tool-use.ts +0 -92
  117. package/src/hooks/post-write.ts +0 -129
  118. package/src/index.ts +0 -63
  119. package/src/ipc/client.ts +0 -118
  120. package/src/ipc/protocol.ts +0 -35
  121. package/src/ipc/router.ts +0 -133
  122. package/src/ipc/server.ts +0 -176
  123. package/src/learning/confidence-scorer.ts +0 -80
  124. package/src/learning/decay.ts +0 -46
  125. package/src/learning/learning-engine.ts +0 -170
  126. package/src/learning/pattern-extractor.ts +0 -90
  127. package/src/learning/rule-generator.ts +0 -74
  128. package/src/main.rs:10:5 +0 -0
  129. package/src/matching/error-matcher.ts +0 -166
  130. package/src/matching/fingerprint.ts +0 -34
  131. package/src/matching/similarity.ts +0 -61
  132. package/src/matching/tfidf.ts +0 -74
  133. package/src/matching/tokenizer.ts +0 -41
  134. package/src/mcp/auto-detect.ts +0 -93
  135. package/src/mcp/http-server.ts +0 -140
  136. package/src/mcp/server.ts +0 -73
  137. package/src/mcp/tools.ts +0 -328
  138. package/src/parsing/error-parser.ts +0 -28
  139. package/src/parsing/parsers/compiler.ts +0 -93
  140. package/src/parsing/parsers/generic.ts +0 -28
  141. package/src/parsing/parsers/go.ts +0 -97
  142. package/src/parsing/parsers/node.ts +0 -69
  143. package/src/parsing/parsers/python.ts +0 -62
  144. package/src/parsing/parsers/rust.ts +0 -50
  145. package/src/parsing/parsers/shell.ts +0 -42
  146. package/src/parsing/types.ts +0 -47
  147. package/src/research/gap-analyzer.ts +0 -135
  148. package/src/research/insight-generator.ts +0 -123
  149. package/src/research/research-engine.ts +0 -116
  150. package/src/research/synergy-detector.ts +0 -126
  151. package/src/research/template-extractor.ts +0 -130
  152. package/src/research/trend-analyzer.ts +0 -127
  153. package/src/services/analytics.service.ts +0 -226
  154. package/src/services/code.service.ts +0 -271
  155. package/src/services/error.service.ts +0 -266
  156. package/src/services/git.service.ts +0 -132
  157. package/src/services/notification.service.ts +0 -41
  158. package/src/services/prevention.service.ts +0 -159
  159. package/src/services/research.service.ts +0 -98
  160. package/src/services/solution.service.ts +0 -174
  161. package/src/services/synapse.service.ts +0 -59
  162. package/src/services/terminal.service.ts +0 -81
  163. package/src/synapses/activation.ts +0 -80
  164. package/src/synapses/decay.ts +0 -38
  165. package/src/synapses/hebbian.ts +0 -69
  166. package/src/synapses/pathfinder.ts +0 -81
  167. package/src/synapses/synapse-manager.ts +0 -113
  168. package/src/types/code.types.ts +0 -52
  169. package/src/types/config.types.ts +0 -103
  170. package/src/types/error.types.ts +0 -67
  171. package/src/types/ipc.types.ts +0 -8
  172. package/src/types/mcp.types.ts +0 -53
  173. package/src/types/research.types.ts +0 -28
  174. package/src/types/solution.types.ts +0 -30
  175. package/src/types/synapse.types.ts +0 -50
  176. package/src/utils/events.ts +0 -45
  177. package/src/utils/hash.ts +0 -5
  178. package/src/utils/logger.ts +0 -48
  179. package/src/utils/paths.ts +0 -19
  180. package/tests/e2e/test_code_intelligence.py +0 -1015
  181. package/tests/e2e/test_error_memory.py +0 -451
  182. package/tests/e2e/test_full_integration.py +0 -534
  183. package/tests/fixtures/code-modules/modules.ts +0 -83
  184. package/tests/fixtures/errors/go.ts +0 -9
  185. package/tests/fixtures/errors/node.ts +0 -24
  186. package/tests/fixtures/errors/python.ts +0 -21
  187. package/tests/fixtures/errors/rust.ts +0 -25
  188. package/tests/fixtures/errors/shell.ts +0 -15
  189. package/tests/fixtures/solutions/solutions.ts +0 -27
  190. package/tests/helpers/setup-db.ts +0 -52
  191. package/tests/integration/code-flow.test.ts +0 -86
  192. package/tests/integration/error-flow.test.ts +0 -83
  193. package/tests/integration/ipc-flow.test.ts +0 -166
  194. package/tests/integration/learning-cycle.test.ts +0 -82
  195. package/tests/integration/synapse-flow.test.ts +0 -117
  196. package/tests/unit/code/analyzer.test.ts +0 -58
  197. package/tests/unit/code/fingerprint.test.ts +0 -51
  198. package/tests/unit/code/scorer.test.ts +0 -55
  199. package/tests/unit/learning/confidence-scorer.test.ts +0 -60
  200. package/tests/unit/learning/decay.test.ts +0 -45
  201. package/tests/unit/learning/pattern-extractor.test.ts +0 -50
  202. package/tests/unit/matching/error-matcher.test.ts +0 -69
  203. package/tests/unit/matching/fingerprint.test.ts +0 -47
  204. package/tests/unit/matching/similarity.test.ts +0 -65
  205. package/tests/unit/matching/tfidf.test.ts +0 -71
  206. package/tests/unit/matching/tokenizer.test.ts +0 -83
  207. package/tests/unit/parsing/parsers.test.ts +0 -113
  208. package/tests/unit/research/gap-analyzer.test.ts +0 -45
  209. package/tests/unit/research/trend-analyzer.test.ts +0 -45
  210. package/tests/unit/synapses/activation.test.ts +0 -80
  211. package/tests/unit/synapses/decay.test.ts +0 -27
  212. package/tests/unit/synapses/hebbian.test.ts +0 -96
  213. package/tests/unit/synapses/pathfinder.test.ts +0 -72
  214. package/tsconfig.json +0 -18
package/brain.log ADDED
@@ -0,0 +1,1164 @@
1
+ 2026-02-27T10:47:48.879Z [info] Running 9 migration(s) from version 0
2
+ 2026-02-27T10:47:48.881Z [info] Applying migration 001_core_schema
3
+ 2026-02-27T10:47:48.881Z [info] Applying migration 002_learning_schema
4
+ 2026-02-27T10:47:48.881Z [info] Applying migration 003_code_schema
5
+ 2026-02-27T10:47:48.882Z [info] Applying migration 004_synapses_schema
6
+ 2026-02-27T10:47:48.882Z [info] Applying migration 005_fts_indexes
7
+ 2026-02-27T10:47:48.883Z [info] Applying migration 006_synapses_phase3
8
+ 2026-02-27T10:47:48.883Z [info] Applying migration 007_feedback
9
+ 2026-02-27T10:47:48.885Z [info] Applying migration 008_git_integration
10
+ 2026-02-27T10:47:48.885Z [info] Applying migration 009_embeddings
11
+ 2026-02-27T10:47:48.886Z [info] Migrations complete. Now at version 9
12
+ 2026-02-27T10:47:48.878Z [info] Running 9 migration(s) from version 0
13
+ 2026-02-27T10:47:48.889Z [info] Running 9 migration(s) from version 0
14
+ 2026-02-27T10:47:48.889Z [info] Applying migration 001_core_schema
15
+ 2026-02-27T10:47:48.889Z [info] Applying migration 002_learning_schema
16
+ 2026-02-27T10:47:48.890Z [info] Applying migration 003_code_schema
17
+ 2026-02-27T10:47:48.890Z [info] Applying migration 004_synapses_schema
18
+ 2026-02-27T10:47:48.890Z [info] Applying migration 005_fts_indexes
19
+ 2026-02-27T10:47:48.891Z [info] Applying migration 006_synapses_phase3
20
+ 2026-02-27T10:47:48.891Z [info] Applying migration 007_feedback
21
+ 2026-02-27T10:47:48.892Z [info] Applying migration 008_git_integration
22
+ 2026-02-27T10:47:48.893Z [info] Applying migration 009_embeddings
23
+ 2026-02-27T10:47:48.893Z [info] Migrations complete. Now at version 9
24
+ 2026-02-27T10:47:48.896Z [info] Trend analysis complete: 0 insights
25
+ 2026-02-27T10:47:48.880Z [info] Applying migration 001_core_schema
26
+ 2026-02-27T10:47:48.881Z [info] Applying migration 002_learning_schema
27
+ 2026-02-27T10:47:48.881Z [info] Applying migration 003_code_schema
28
+ 2026-02-27T10:47:48.882Z [info] Applying migration 004_synapses_schema
29
+ 2026-02-27T10:47:48.882Z [info] Applying migration 005_fts_indexes
30
+ 2026-02-27T10:47:48.883Z [info] Applying migration 006_synapses_phase3
31
+ 2026-02-27T10:47:48.884Z [info] Applying migration 007_feedback
32
+ 2026-02-27T10:47:48.885Z [info] Applying migration 008_git_integration
33
+ 2026-02-27T10:47:48.886Z [info] Applying migration 009_embeddings
34
+ 2026-02-27T10:47:48.887Z [info] Migrations complete. Now at version 9
35
+ 2026-02-27T10:47:48.890Z [info] Running 9 migration(s) from version 0
36
+ 2026-02-27T10:47:48.890Z [info] Applying migration 001_core_schema
37
+ 2026-02-27T10:47:48.890Z [info] Applying migration 002_learning_schema
38
+ 2026-02-27T10:47:48.890Z [info] Applying migration 003_code_schema
39
+ 2026-02-27T10:47:48.891Z [info] Applying migration 004_synapses_schema
40
+ 2026-02-27T10:47:48.891Z [info] Applying migration 005_fts_indexes
41
+ 2026-02-27T10:47:48.891Z [info] Applying migration 006_synapses_phase3
42
+ 2026-02-27T10:47:48.892Z [info] Applying migration 007_feedback
43
+ 2026-02-27T10:47:48.893Z [info] Applying migration 008_git_integration
44
+ 2026-02-27T10:47:48.894Z [info] Applying migration 009_embeddings
45
+ 2026-02-27T10:47:48.894Z [info] Migrations complete. Now at version 9
46
+ 2026-02-27T10:47:48.896Z [info] Gap analysis complete: 1 insights
47
+ 2026-02-27T10:47:48.881Z [info] Running 9 migration(s) from version 0
48
+ 2026-02-27T10:47:48.883Z [info] Applying migration 001_core_schema
49
+ 2026-02-27T10:47:48.883Z [info] Applying migration 002_learning_schema
50
+ 2026-02-27T10:47:48.884Z [info] Applying migration 003_code_schema
51
+ 2026-02-27T10:47:48.884Z [info] Applying migration 004_synapses_schema
52
+ 2026-02-27T10:47:48.885Z [info] Applying migration 005_fts_indexes
53
+ 2026-02-27T10:47:48.886Z [info] Applying migration 006_synapses_phase3
54
+ 2026-02-27T10:47:48.887Z [info] Applying migration 007_feedback
55
+ 2026-02-27T10:47:48.888Z [info] Applying migration 008_git_integration
56
+ 2026-02-27T10:47:48.889Z [info] Applying migration 009_embeddings
57
+ 2026-02-27T10:47:48.890Z [info] Migrations complete. Now at version 9
58
+ 2026-02-27T10:47:48.895Z [info] Running 9 migration(s) from version 0
59
+ 2026-02-27T10:47:48.895Z [info] Applying migration 001_core_schema
60
+ 2026-02-27T10:47:48.895Z [info] Applying migration 002_learning_schema
61
+ 2026-02-27T10:47:48.895Z [info] Applying migration 003_code_schema
62
+ 2026-02-27T10:47:48.896Z [info] Applying migration 004_synapses_schema
63
+ 2026-02-27T10:47:48.896Z [info] Applying migration 005_fts_indexes
64
+ 2026-02-27T10:47:48.897Z [info] Applying migration 006_synapses_phase3
65
+ 2026-02-27T10:47:48.898Z [info] Applying migration 007_feedback
66
+ 2026-02-27T10:47:48.899Z [info] Applying migration 008_git_integration
67
+ 2026-02-27T10:47:48.900Z [info] Applying migration 009_embeddings
68
+ 2026-02-27T10:47:48.901Z [info] Migrations complete. Now at version 9
69
+ 2026-02-27T10:47:48.904Z [info] Running 9 migration(s) from version 0
70
+ 2026-02-27T10:47:48.904Z [info] Applying migration 001_core_schema
71
+ 2026-02-27T10:47:48.904Z [info] Applying migration 002_learning_schema
72
+ 2026-02-27T10:47:48.905Z [info] Applying migration 003_code_schema
73
+ 2026-02-27T10:47:48.905Z [info] Applying migration 004_synapses_schema
74
+ 2026-02-27T10:47:48.905Z [info] Applying migration 005_fts_indexes
75
+ 2026-02-27T10:47:48.906Z [info] Applying migration 006_synapses_phase3
76
+ 2026-02-27T10:47:48.907Z [info] Applying migration 007_feedback
77
+ 2026-02-27T10:47:48.908Z [info] Applying migration 008_git_integration
78
+ 2026-02-27T10:47:48.909Z [info] Applying migration 009_embeddings
79
+ 2026-02-27T10:47:48.910Z [info] Migrations complete. Now at version 9
80
+ 2026-02-27T10:47:48.913Z [info] Running 9 migration(s) from version 0
81
+ 2026-02-27T10:47:48.913Z [info] Applying migration 001_core_schema
82
+ 2026-02-27T10:47:48.914Z [info] Applying migration 002_learning_schema
83
+ 2026-02-27T10:47:48.914Z [info] Applying migration 003_code_schema
84
+ 2026-02-27T10:47:48.914Z [info] Applying migration 004_synapses_schema
85
+ 2026-02-27T10:47:48.914Z [info] Applying migration 005_fts_indexes
86
+ 2026-02-27T10:47:48.915Z [info] Applying migration 006_synapses_phase3
87
+ 2026-02-27T10:47:48.916Z [info] Applying migration 007_feedback
88
+ 2026-02-27T10:47:48.917Z [info] Applying migration 008_git_integration
89
+ 2026-02-27T10:47:48.918Z [info] Applying migration 009_embeddings
90
+ 2026-02-27T10:47:48.919Z [info] Migrations complete. Now at version 9
91
+ 2026-02-27T10:47:48.882Z [info] Running 9 migration(s) from version 0
92
+ 2026-02-27T10:47:48.883Z [info] Applying migration 001_core_schema
93
+ 2026-02-27T10:47:48.884Z [info] Applying migration 002_learning_schema
94
+ 2026-02-27T10:47:48.885Z [info] Applying migration 003_code_schema
95
+ 2026-02-27T10:47:48.885Z [info] Applying migration 004_synapses_schema
96
+ 2026-02-27T10:47:48.885Z [info] Applying migration 005_fts_indexes
97
+ 2026-02-27T10:47:48.886Z [info] Applying migration 006_synapses_phase3
98
+ 2026-02-27T10:47:48.887Z [info] Applying migration 007_feedback
99
+ 2026-02-27T10:47:48.889Z [info] Applying migration 008_git_integration
100
+ 2026-02-27T10:47:48.890Z [info] Applying migration 009_embeddings
101
+ 2026-02-27T10:47:48.891Z [info] Migrations complete. Now at version 9
102
+ 2026-02-27T10:47:48.895Z [info] Running 9 migration(s) from version 0
103
+ 2026-02-27T10:47:48.895Z [info] Applying migration 001_core_schema
104
+ 2026-02-27T10:47:48.896Z [info] Applying migration 002_learning_schema
105
+ 2026-02-27T10:47:48.896Z [info] Applying migration 003_code_schema
106
+ 2026-02-27T10:47:48.896Z [info] Applying migration 004_synapses_schema
107
+ 2026-02-27T10:47:48.897Z [info] Applying migration 005_fts_indexes
108
+ 2026-02-27T10:47:48.898Z [info] Applying migration 006_synapses_phase3
109
+ 2026-02-27T10:47:48.898Z [info] Applying migration 007_feedback
110
+ 2026-02-27T10:47:48.900Z [info] Applying migration 008_git_integration
111
+ 2026-02-27T10:47:48.901Z [info] Applying migration 009_embeddings
112
+ 2026-02-27T10:47:48.901Z [info] Migrations complete. Now at version 9
113
+ 2026-02-27T10:47:48.905Z [info] Running 9 migration(s) from version 0
114
+ 2026-02-27T10:47:48.905Z [info] Applying migration 001_core_schema
115
+ 2026-02-27T10:47:48.906Z [info] Applying migration 002_learning_schema
116
+ 2026-02-27T10:47:48.906Z [info] Applying migration 003_code_schema
117
+ 2026-02-27T10:47:48.906Z [info] Applying migration 004_synapses_schema
118
+ 2026-02-27T10:47:48.907Z [info] Applying migration 005_fts_indexes
119
+ 2026-02-27T10:47:48.908Z [info] Applying migration 006_synapses_phase3
120
+ 2026-02-27T10:47:48.908Z [info] Applying migration 007_feedback
121
+ 2026-02-27T10:47:48.910Z [info] Applying migration 008_git_integration
122
+ 2026-02-27T10:47:48.911Z [info] Applying migration 009_embeddings
123
+ 2026-02-27T10:47:48.912Z [info] Migrations complete. Now at version 9
124
+ 2026-02-27T10:47:48.915Z [info] Running 9 migration(s) from version 0
125
+ 2026-02-27T10:47:48.915Z [info] Applying migration 001_core_schema
126
+ 2026-02-27T10:47:48.916Z [info] Applying migration 002_learning_schema
127
+ 2026-02-27T10:47:48.916Z [info] Applying migration 003_code_schema
128
+ 2026-02-27T10:47:48.916Z [info] Applying migration 004_synapses_schema
129
+ 2026-02-27T10:47:48.916Z [info] Applying migration 005_fts_indexes
130
+ 2026-02-27T10:47:48.917Z [info] Applying migration 006_synapses_phase3
131
+ 2026-02-27T10:47:48.918Z [info] Applying migration 007_feedback
132
+ 2026-02-27T10:47:48.919Z [info] Applying migration 008_git_integration
133
+ 2026-02-27T10:47:48.920Z [info] Applying migration 009_embeddings
134
+ 2026-02-27T10:47:48.921Z [info] Migrations complete. Now at version 9
135
+ 2026-02-27T10:47:48.880Z [info] Running 9 migration(s) from version 0
136
+ 2026-02-27T10:47:48.882Z [info] Applying migration 001_core_schema
137
+ 2026-02-27T10:47:48.883Z [info] Applying migration 002_learning_schema
138
+ 2026-02-27T10:47:48.883Z [info] Applying migration 003_code_schema
139
+ 2026-02-27T10:47:48.884Z [info] Applying migration 004_synapses_schema
140
+ 2026-02-27T10:47:48.884Z [info] Applying migration 005_fts_indexes
141
+ 2026-02-27T10:47:48.885Z [info] Applying migration 006_synapses_phase3
142
+ 2026-02-27T10:47:48.886Z [info] Applying migration 007_feedback
143
+ 2026-02-27T10:47:48.888Z [info] Applying migration 008_git_integration
144
+ 2026-02-27T10:47:48.889Z [info] Applying migration 009_embeddings
145
+ 2026-02-27T10:47:48.890Z [info] Migrations complete. Now at version 9
146
+ 2026-02-27T10:47:48.894Z [info] Running 9 migration(s) from version 0
147
+ 2026-02-27T10:47:48.894Z [info] Applying migration 001_core_schema
148
+ 2026-02-27T10:47:48.895Z [info] Applying migration 002_learning_schema
149
+ 2026-02-27T10:47:48.895Z [info] Applying migration 003_code_schema
150
+ 2026-02-27T10:47:48.895Z [info] Applying migration 004_synapses_schema
151
+ 2026-02-27T10:47:48.896Z [info] Applying migration 005_fts_indexes
152
+ 2026-02-27T10:47:48.897Z [info] Applying migration 006_synapses_phase3
153
+ 2026-02-27T10:47:48.897Z [info] Applying migration 007_feedback
154
+ 2026-02-27T10:47:48.899Z [info] Applying migration 008_git_integration
155
+ 2026-02-27T10:47:48.900Z [info] Applying migration 009_embeddings
156
+ 2026-02-27T10:47:48.901Z [info] Migrations complete. Now at version 9
157
+ 2026-02-27T10:47:48.904Z [info] Running 9 migration(s) from version 0
158
+ 2026-02-27T10:47:48.904Z [info] Applying migration 001_core_schema
159
+ 2026-02-27T10:47:48.905Z [info] Applying migration 002_learning_schema
160
+ 2026-02-27T10:47:48.905Z [info] Applying migration 003_code_schema
161
+ 2026-02-27T10:47:48.905Z [info] Applying migration 004_synapses_schema
162
+ 2026-02-27T10:47:48.906Z [info] Applying migration 005_fts_indexes
163
+ 2026-02-27T10:47:48.906Z [info] Applying migration 006_synapses_phase3
164
+ 2026-02-27T10:47:48.907Z [info] Applying migration 007_feedback
165
+ 2026-02-27T10:47:48.909Z [info] Applying migration 008_git_integration
166
+ 2026-02-27T10:47:48.910Z [info] Applying migration 009_embeddings
167
+ 2026-02-27T10:47:48.910Z [info] Migrations complete. Now at version 9
168
+ 2026-02-27T10:47:48.915Z [info] Running 9 migration(s) from version 0
169
+ 2026-02-27T10:47:48.916Z [info] Applying migration 001_core_schema
170
+ 2026-02-27T10:47:48.916Z [info] Applying migration 002_learning_schema
171
+ 2026-02-27T10:47:48.917Z [info] Applying migration 003_code_schema
172
+ 2026-02-27T10:47:48.917Z [info] Applying migration 004_synapses_schema
173
+ 2026-02-27T10:47:48.917Z [info] Applying migration 005_fts_indexes
174
+ 2026-02-27T10:47:48.918Z [info] Applying migration 006_synapses_phase3
175
+ 2026-02-27T10:47:48.919Z [info] Applying migration 007_feedback
176
+ 2026-02-27T10:47:48.920Z [info] Applying migration 008_git_integration
177
+ 2026-02-27T10:47:48.921Z [info] Applying migration 009_embeddings
178
+ 2026-02-27T10:47:48.922Z [info] Migrations complete. Now at version 9
179
+ 2026-02-27T10:47:48.906Z [info] Running 9 migration(s) from version 0
180
+ 2026-02-27T10:47:48.908Z [info] Applying migration 001_core_schema
181
+ 2026-02-27T10:47:48.909Z [info] Applying migration 002_learning_schema
182
+ 2026-02-27T10:47:48.910Z [info] Applying migration 003_code_schema
183
+ 2026-02-27T10:47:48.910Z [info] Applying migration 004_synapses_schema
184
+ 2026-02-27T10:47:48.910Z [info] Applying migration 005_fts_indexes
185
+ 2026-02-27T10:47:48.911Z [info] Applying migration 006_synapses_phase3
186
+ 2026-02-27T10:47:48.912Z [info] Applying migration 007_feedback
187
+ 2026-02-27T10:47:48.914Z [info] Applying migration 008_git_integration
188
+ 2026-02-27T10:47:48.915Z [info] Applying migration 009_embeddings
189
+ 2026-02-27T10:47:48.916Z [info] Migrations complete. Now at version 9
190
+ 2026-02-27T10:47:48.919Z [info] Learning cycle starting
191
+ 2026-02-27T10:47:48.920Z [info] Running synapse decay cycle
192
+ 2026-02-27T10:47:48.921Z [info] Decay complete: 0 decayed, 0 pruned
193
+ 2026-02-27T10:47:48.921Z [info] Learning cycle complete: 1 patterns, 0 rules, 0 pruned, 0 antipatterns (2ms)
194
+ 2026-02-27T10:47:48.922Z [info] Running 9 migration(s) from version 0
195
+ 2026-02-27T10:47:48.922Z [info] Applying migration 001_core_schema
196
+ 2026-02-27T10:47:48.922Z [info] Applying migration 002_learning_schema
197
+ 2026-02-27T10:47:48.922Z [info] Applying migration 003_code_schema
198
+ 2026-02-27T10:47:48.923Z [info] Applying migration 004_synapses_schema
199
+ 2026-02-27T10:47:48.923Z [info] Applying migration 005_fts_indexes
200
+ 2026-02-27T10:47:48.924Z [info] Applying migration 006_synapses_phase3
201
+ 2026-02-27T10:47:48.924Z [info] Applying migration 007_feedback
202
+ 2026-02-27T10:47:48.926Z [info] Applying migration 008_git_integration
203
+ 2026-02-27T10:47:48.927Z [info] Applying migration 009_embeddings
204
+ 2026-02-27T10:47:48.928Z [info] Migrations complete. Now at version 9
205
+ 2026-02-27T10:47:48.931Z [info] Learning cycle starting
206
+ 2026-02-27T10:47:48.932Z [info] Running synapse decay cycle
207
+ 2026-02-27T10:47:48.932Z [info] Decay complete: 0 decayed, 0 pruned
208
+ 2026-02-27T10:47:48.932Z [info] Learning cycle complete: 1 patterns, 0 rules, 0 pruned, 0 antipatterns (1ms)
209
+ 2026-02-27T10:47:48.932Z [info] Running 9 migration(s) from version 0
210
+ 2026-02-27T10:47:48.932Z [info] Applying migration 001_core_schema
211
+ 2026-02-27T10:47:48.933Z [info] Applying migration 002_learning_schema
212
+ 2026-02-27T10:47:48.933Z [info] Applying migration 003_code_schema
213
+ 2026-02-27T10:47:48.933Z [info] Applying migration 004_synapses_schema
214
+ 2026-02-27T10:47:48.934Z [info] Applying migration 005_fts_indexes
215
+ 2026-02-27T10:47:48.935Z [info] Applying migration 006_synapses_phase3
216
+ 2026-02-27T10:47:48.935Z [info] Applying migration 007_feedback
217
+ 2026-02-27T10:47:48.937Z [info] Applying migration 008_git_integration
218
+ 2026-02-27T10:47:48.938Z [info] Applying migration 009_embeddings
219
+ 2026-02-27T10:47:48.938Z [info] Migrations complete. Now at version 9
220
+ 2026-02-27T10:47:48.941Z [info] Learning engine starting (interval: 900000ms)
221
+ 2026-02-27T10:47:48.941Z [info] Learning engine stopped
222
+ 2026-02-27T10:47:48.905Z [info] Running 9 migration(s) from version 0
223
+ 2026-02-27T10:47:48.907Z [info] Applying migration 001_core_schema
224
+ 2026-02-27T10:47:48.908Z [info] Applying migration 002_learning_schema
225
+ 2026-02-27T10:47:48.908Z [info] Applying migration 003_code_schema
226
+ 2026-02-27T10:47:48.909Z [info] Applying migration 004_synapses_schema
227
+ 2026-02-27T10:47:48.909Z [info] Applying migration 005_fts_indexes
228
+ 2026-02-27T10:47:48.910Z [info] Applying migration 006_synapses_phase3
229
+ 2026-02-27T10:47:48.911Z [info] Applying migration 007_feedback
230
+ 2026-02-27T10:47:48.913Z [info] Applying migration 008_git_integration
231
+ 2026-02-27T10:47:48.914Z [info] Applying migration 009_embeddings
232
+ 2026-02-27T10:47:48.915Z [info] Migrations complete. Now at version 9
233
+ 2026-02-27T10:47:48.919Z [info] Running 9 migration(s) from version 0
234
+ 2026-02-27T10:47:48.919Z [info] Applying migration 001_core_schema
235
+ 2026-02-27T10:47:48.920Z [info] Applying migration 002_learning_schema
236
+ 2026-02-27T10:47:48.920Z [info] Applying migration 003_code_schema
237
+ 2026-02-27T10:47:48.920Z [info] Applying migration 004_synapses_schema
238
+ 2026-02-27T10:47:48.921Z [info] Applying migration 005_fts_indexes
239
+ 2026-02-27T10:47:48.921Z [info] Applying migration 006_synapses_phase3
240
+ 2026-02-27T10:47:48.922Z [info] Applying migration 007_feedback
241
+ 2026-02-27T10:47:48.924Z [info] Applying migration 008_git_integration
242
+ 2026-02-27T10:47:48.924Z [info] Applying migration 009_embeddings
243
+ 2026-02-27T10:47:48.925Z [info] Migrations complete. Now at version 9
244
+ 2026-02-27T10:47:48.928Z [info] Running 9 migration(s) from version 0
245
+ 2026-02-27T10:47:48.928Z [info] Applying migration 001_core_schema
246
+ 2026-02-27T10:47:48.929Z [info] Applying migration 002_learning_schema
247
+ 2026-02-27T10:47:48.930Z [info] Applying migration 003_code_schema
248
+ 2026-02-27T10:47:48.930Z [info] Applying migration 004_synapses_schema
249
+ 2026-02-27T10:47:48.931Z [info] Applying migration 005_fts_indexes
250
+ 2026-02-27T10:47:48.931Z [info] Applying migration 006_synapses_phase3
251
+ 2026-02-27T10:47:48.932Z [info] Applying migration 007_feedback
252
+ 2026-02-27T10:47:48.934Z [info] Applying migration 008_git_integration
253
+ 2026-02-27T10:47:48.934Z [info] Applying migration 009_embeddings
254
+ 2026-02-27T10:47:48.935Z [info] Migrations complete. Now at version 9
255
+ 2026-02-27T10:47:48.938Z [info] Running 9 migration(s) from version 0
256
+ 2026-02-27T10:47:48.938Z [info] Applying migration 001_core_schema
257
+ 2026-02-27T10:47:48.939Z [info] Applying migration 002_learning_schema
258
+ 2026-02-27T10:47:48.939Z [info] Applying migration 003_code_schema
259
+ 2026-02-27T10:47:48.939Z [info] Applying migration 004_synapses_schema
260
+ 2026-02-27T10:47:48.940Z [info] Applying migration 005_fts_indexes
261
+ 2026-02-27T10:47:48.940Z [info] Applying migration 006_synapses_phase3
262
+ 2026-02-27T10:47:48.941Z [info] Applying migration 007_feedback
263
+ 2026-02-27T10:47:48.943Z [info] Applying migration 008_git_integration
264
+ 2026-02-27T10:47:48.943Z [info] Applying migration 009_embeddings
265
+ 2026-02-27T10:47:48.944Z [info] Migrations complete. Now at version 9
266
+ 2026-02-27T10:47:48.947Z [info] Running 9 migration(s) from version 0
267
+ 2026-02-27T10:47:48.947Z [info] Applying migration 001_core_schema
268
+ 2026-02-27T10:47:48.948Z [info] Applying migration 002_learning_schema
269
+ 2026-02-27T10:47:48.948Z [info] Applying migration 003_code_schema
270
+ 2026-02-27T10:47:48.948Z [info] Applying migration 004_synapses_schema
271
+ 2026-02-27T10:47:48.948Z [info] Applying migration 005_fts_indexes
272
+ 2026-02-27T10:47:48.949Z [info] Applying migration 006_synapses_phase3
273
+ 2026-02-27T10:47:48.950Z [info] Applying migration 007_feedback
274
+ 2026-02-27T10:47:48.951Z [info] Applying migration 008_git_integration
275
+ 2026-02-27T10:47:48.952Z [info] Applying migration 009_embeddings
276
+ 2026-02-27T10:47:48.953Z [info] Migrations complete. Now at version 9
277
+ 2026-02-27T10:47:48.955Z [info] Running synapse decay cycle
278
+ 2026-02-27T10:47:48.955Z [info] Decay complete: 0 decayed, 1 pruned
279
+ 2026-02-27T10:47:48.930Z [info] Running 9 migration(s) from version 0
280
+ 2026-02-27T10:47:48.932Z [info] Applying migration 001_core_schema
281
+ 2026-02-27T10:47:48.933Z [info] Applying migration 002_learning_schema
282
+ 2026-02-27T10:47:48.934Z [info] Applying migration 003_code_schema
283
+ 2026-02-27T10:47:48.934Z [info] Applying migration 004_synapses_schema
284
+ 2026-02-27T10:47:48.934Z [info] Applying migration 005_fts_indexes
285
+ 2026-02-27T10:47:48.935Z [info] Applying migration 006_synapses_phase3
286
+ 2026-02-27T10:47:48.936Z [info] Applying migration 007_feedback
287
+ 2026-02-27T10:47:48.938Z [info] Applying migration 008_git_integration
288
+ 2026-02-27T10:47:48.939Z [info] Applying migration 009_embeddings
289
+ 2026-02-27T10:47:48.939Z [info] Migrations complete. Now at version 9
290
+ 2026-02-27T10:47:48.945Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
291
+ 2026-02-27T10:47:48.947Z [info] Running 9 migration(s) from version 0
292
+ 2026-02-27T10:47:48.947Z [info] Applying migration 001_core_schema
293
+ 2026-02-27T10:47:48.947Z [info] Applying migration 002_learning_schema
294
+ 2026-02-27T10:47:48.948Z [info] Applying migration 003_code_schema
295
+ 2026-02-27T10:47:48.948Z [info] Applying migration 004_synapses_schema
296
+ 2026-02-27T10:47:48.948Z [info] Applying migration 005_fts_indexes
297
+ 2026-02-27T10:47:48.949Z [info] Applying migration 006_synapses_phase3
298
+ 2026-02-27T10:47:48.950Z [info] Applying migration 007_feedback
299
+ 2026-02-27T10:47:48.951Z [info] Applying migration 008_git_integration
300
+ 2026-02-27T10:47:48.952Z [info] Applying migration 009_embeddings
301
+ 2026-02-27T10:47:48.953Z [info] Migrations complete. Now at version 9
302
+ 2026-02-27T10:47:48.956Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
303
+ 2026-02-27T10:47:48.956Z [info] Running 9 migration(s) from version 0
304
+ 2026-02-27T10:47:48.957Z [info] Applying migration 001_core_schema
305
+ 2026-02-27T10:47:48.957Z [info] Applying migration 002_learning_schema
306
+ 2026-02-27T10:47:48.957Z [info] Applying migration 003_code_schema
307
+ 2026-02-27T10:47:48.958Z [info] Applying migration 004_synapses_schema
308
+ 2026-02-27T10:47:48.958Z [info] Applying migration 005_fts_indexes
309
+ 2026-02-27T10:47:48.959Z [info] Applying migration 006_synapses_phase3
310
+ 2026-02-27T10:47:48.960Z [info] Applying migration 007_feedback
311
+ 2026-02-27T10:47:48.961Z [info] Applying migration 008_git_integration
312
+ 2026-02-27T10:47:48.962Z [info] Applying migration 009_embeddings
313
+ 2026-02-27T10:47:48.963Z [info] Migrations complete. Now at version 9
314
+ 2026-02-27T10:47:48.966Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
315
+ 2026-02-27T10:47:48.966Z [info] Running 9 migration(s) from version 0
316
+ 2026-02-27T10:47:48.966Z [info] Applying migration 001_core_schema
317
+ 2026-02-27T10:47:48.967Z [info] Applying migration 002_learning_schema
318
+ 2026-02-27T10:47:48.967Z [info] Applying migration 003_code_schema
319
+ 2026-02-27T10:47:48.967Z [info] Applying migration 004_synapses_schema
320
+ 2026-02-27T10:47:48.968Z [info] Applying migration 005_fts_indexes
321
+ 2026-02-27T10:47:48.969Z [info] Applying migration 006_synapses_phase3
322
+ 2026-02-27T10:47:48.969Z [info] Applying migration 007_feedback
323
+ 2026-02-27T10:47:48.971Z [info] Applying migration 008_git_integration
324
+ 2026-02-27T10:47:48.972Z [info] Applying migration 009_embeddings
325
+ 2026-02-27T10:47:48.972Z [info] Migrations complete. Now at version 9
326
+ 2026-02-27T10:47:48.975Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
327
+ 2026-02-27T10:47:48.935Z [info] Running 9 migration(s) from version 0
328
+ 2026-02-27T10:47:48.937Z [info] Applying migration 001_core_schema
329
+ 2026-02-27T10:47:48.938Z [info] Applying migration 002_learning_schema
330
+ 2026-02-27T10:47:48.938Z [info] Applying migration 003_code_schema
331
+ 2026-02-27T10:47:48.939Z [info] Applying migration 004_synapses_schema
332
+ 2026-02-27T10:47:48.939Z [info] Applying migration 005_fts_indexes
333
+ 2026-02-27T10:47:48.940Z [info] Applying migration 006_synapses_phase3
334
+ 2026-02-27T10:47:48.941Z [info] Applying migration 007_feedback
335
+ 2026-02-27T10:47:48.943Z [info] Applying migration 008_git_integration
336
+ 2026-02-27T10:47:48.945Z [info] Applying migration 009_embeddings
337
+ 2026-02-27T10:47:48.945Z [info] Migrations complete. Now at version 9
338
+ 2026-02-27T10:47:48.951Z [info] New error reported (id=1, type=TypeError)
339
+ 2026-02-27T10:47:48.952Z [info] Running 9 migration(s) from version 0
340
+ 2026-02-27T10:47:48.952Z [info] Applying migration 001_core_schema
341
+ 2026-02-27T10:47:48.953Z [info] Applying migration 002_learning_schema
342
+ 2026-02-27T10:47:48.953Z [info] Applying migration 003_code_schema
343
+ 2026-02-27T10:47:48.954Z [info] Applying migration 004_synapses_schema
344
+ 2026-02-27T10:47:48.954Z [info] Applying migration 005_fts_indexes
345
+ 2026-02-27T10:47:48.955Z [info] Applying migration 006_synapses_phase3
346
+ 2026-02-27T10:47:48.956Z [info] Applying migration 007_feedback
347
+ 2026-02-27T10:47:48.958Z [info] Applying migration 008_git_integration
348
+ 2026-02-27T10:47:48.958Z [info] Applying migration 009_embeddings
349
+ 2026-02-27T10:47:48.959Z [info] Migrations complete. Now at version 9
350
+ 2026-02-27T10:47:48.962Z [info] New error reported (id=1, type=TypeError)
351
+ 2026-02-27T10:47:48.962Z [info] Solution reported (id=1) for error 1
352
+ 2026-02-27T10:47:48.963Z [info] Running 9 migration(s) from version 0
353
+ 2026-02-27T10:47:48.963Z [info] Applying migration 001_core_schema
354
+ 2026-02-27T10:47:48.964Z [info] Applying migration 002_learning_schema
355
+ 2026-02-27T10:47:48.964Z [info] Applying migration 003_code_schema
356
+ 2026-02-27T10:47:48.964Z [info] Applying migration 004_synapses_schema
357
+ 2026-02-27T10:47:48.965Z [info] Applying migration 005_fts_indexes
358
+ 2026-02-27T10:47:48.966Z [info] Applying migration 006_synapses_phase3
359
+ 2026-02-27T10:47:48.966Z [info] Applying migration 007_feedback
360
+ 2026-02-27T10:47:48.968Z [info] Applying migration 008_git_integration
361
+ 2026-02-27T10:47:48.969Z [info] Applying migration 009_embeddings
362
+ 2026-02-27T10:47:48.969Z [info] Migrations complete. Now at version 9
363
+ 2026-02-27T10:47:48.972Z [info] New error reported (id=1, type=TypeError)
364
+ 2026-02-27T10:47:48.972Z [info] Known error (id=1), occurrence incremented
365
+ 2026-02-27T10:47:48.973Z [info] Running 9 migration(s) from version 0
366
+ 2026-02-27T10:47:48.973Z [info] Applying migration 001_core_schema
367
+ 2026-02-27T10:47:48.974Z [info] Applying migration 002_learning_schema
368
+ 2026-02-27T10:47:48.974Z [info] Applying migration 003_code_schema
369
+ 2026-02-27T10:47:48.974Z [info] Applying migration 004_synapses_schema
370
+ 2026-02-27T10:47:48.974Z [info] Applying migration 005_fts_indexes
371
+ 2026-02-27T10:47:48.975Z [info] Applying migration 006_synapses_phase3
372
+ 2026-02-27T10:47:48.976Z [info] Applying migration 007_feedback
373
+ 2026-02-27T10:47:48.977Z [info] Applying migration 008_git_integration
374
+ 2026-02-27T10:47:48.978Z [info] Applying migration 009_embeddings
375
+ 2026-02-27T10:47:48.979Z [info] Migrations complete. Now at version 9
376
+ 2026-02-27T10:47:48.982Z [info] New error reported (id=1, type=Error)
377
+ 2026-02-27T10:47:48.993Z [info] Running 9 migration(s) from version 0
378
+ 2026-02-27T10:47:48.995Z [info] Applying migration 001_core_schema
379
+ 2026-02-27T10:47:48.996Z [info] Applying migration 002_learning_schema
380
+ 2026-02-27T10:47:48.996Z [info] Applying migration 003_code_schema
381
+ 2026-02-27T10:47:48.997Z [info] Applying migration 004_synapses_schema
382
+ 2026-02-27T10:47:48.997Z [info] Applying migration 005_fts_indexes
383
+ 2026-02-27T10:47:48.998Z [info] Applying migration 006_synapses_phase3
384
+ 2026-02-27T10:47:48.999Z [info] Applying migration 007_feedback
385
+ 2026-02-27T10:47:49.001Z [info] Applying migration 008_git_integration
386
+ 2026-02-27T10:47:49.002Z [info] Applying migration 009_embeddings
387
+ 2026-02-27T10:47:49.003Z [info] Migrations complete. Now at version 9
388
+ 2026-02-27T10:47:49.009Z [info] New error reported (id=1, type=Error)
389
+ 2026-02-27T10:57:44.883Z [info] Running 9 migration(s) from version 0
390
+ 2026-02-27T10:57:44.885Z [info] Applying migration 001_core_schema
391
+ 2026-02-27T10:57:44.885Z [info] Applying migration 002_learning_schema
392
+ 2026-02-27T10:57:44.885Z [info] Applying migration 003_code_schema
393
+ 2026-02-27T10:57:44.886Z [info] Applying migration 004_synapses_schema
394
+ 2026-02-27T10:57:44.886Z [info] Applying migration 005_fts_indexes
395
+ 2026-02-27T10:57:44.887Z [info] Applying migration 006_synapses_phase3
396
+ 2026-02-27T10:57:44.887Z [info] Applying migration 007_feedback
397
+ 2026-02-27T10:57:44.889Z [info] Applying migration 008_git_integration
398
+ 2026-02-27T10:57:44.890Z [info] Applying migration 009_embeddings
399
+ 2026-02-27T10:57:44.890Z [info] Migrations complete. Now at version 9
400
+ 2026-02-27T10:57:44.893Z [info] Running 9 migration(s) from version 0
401
+ 2026-02-27T10:57:44.893Z [info] Applying migration 001_core_schema
402
+ 2026-02-27T10:57:44.894Z [info] Applying migration 002_learning_schema
403
+ 2026-02-27T10:57:44.894Z [info] Applying migration 003_code_schema
404
+ 2026-02-27T10:57:44.894Z [info] Applying migration 004_synapses_schema
405
+ 2026-02-27T10:57:44.894Z [info] Applying migration 005_fts_indexes
406
+ 2026-02-27T10:57:44.895Z [info] Applying migration 006_synapses_phase3
407
+ 2026-02-27T10:57:44.895Z [info] Applying migration 007_feedback
408
+ 2026-02-27T10:57:44.897Z [info] Applying migration 008_git_integration
409
+ 2026-02-27T10:57:44.897Z [info] Applying migration 009_embeddings
410
+ 2026-02-27T10:57:44.898Z [info] Migrations complete. Now at version 9
411
+ 2026-02-27T10:57:44.900Z [info] Trend analysis complete: 0 insights
412
+ 2026-02-27T10:57:44.883Z [info] Running 9 migration(s) from version 0
413
+ 2026-02-27T10:57:44.885Z [info] Applying migration 001_core_schema
414
+ 2026-02-27T10:57:44.886Z [info] Applying migration 002_learning_schema
415
+ 2026-02-27T10:57:44.887Z [info] Applying migration 003_code_schema
416
+ 2026-02-27T10:57:44.887Z [info] Applying migration 004_synapses_schema
417
+ 2026-02-27T10:57:44.888Z [info] Applying migration 005_fts_indexes
418
+ 2026-02-27T10:57:44.889Z [info] Applying migration 006_synapses_phase3
419
+ 2026-02-27T10:57:44.889Z [info] Applying migration 007_feedback
420
+ 2026-02-27T10:57:44.891Z [info] Applying migration 008_git_integration
421
+ 2026-02-27T10:57:44.892Z [info] Applying migration 009_embeddings
422
+ 2026-02-27T10:57:44.893Z [info] Migrations complete. Now at version 9
423
+ 2026-02-27T10:57:44.896Z [info] Running 9 migration(s) from version 0
424
+ 2026-02-27T10:57:44.896Z [info] Applying migration 001_core_schema
425
+ 2026-02-27T10:57:44.896Z [info] Applying migration 002_learning_schema
426
+ 2026-02-27T10:57:44.896Z [info] Applying migration 003_code_schema
427
+ 2026-02-27T10:57:44.897Z [info] Applying migration 004_synapses_schema
428
+ 2026-02-27T10:57:44.897Z [info] Applying migration 005_fts_indexes
429
+ 2026-02-27T10:57:44.897Z [info] Applying migration 006_synapses_phase3
430
+ 2026-02-27T10:57:44.898Z [info] Applying migration 007_feedback
431
+ 2026-02-27T10:57:44.899Z [info] Applying migration 008_git_integration
432
+ 2026-02-27T10:57:44.900Z [info] Applying migration 009_embeddings
433
+ 2026-02-27T10:57:44.900Z [info] Migrations complete. Now at version 9
434
+ 2026-02-27T10:57:44.902Z [info] Gap analysis complete: 1 insights
435
+ 2026-02-27T10:57:44.885Z [info] Running 9 migration(s) from version 0
436
+ 2026-02-27T10:57:44.886Z [info] Applying migration 001_core_schema
437
+ 2026-02-27T10:57:44.887Z [info] Applying migration 002_learning_schema
438
+ 2026-02-27T10:57:44.887Z [info] Applying migration 003_code_schema
439
+ 2026-02-27T10:57:44.887Z [info] Applying migration 004_synapses_schema
440
+ 2026-02-27T10:57:44.888Z [info] Applying migration 005_fts_indexes
441
+ 2026-02-27T10:57:44.888Z [info] Applying migration 006_synapses_phase3
442
+ 2026-02-27T10:57:44.889Z [info] Applying migration 007_feedback
443
+ 2026-02-27T10:57:44.890Z [info] Applying migration 008_git_integration
444
+ 2026-02-27T10:57:44.891Z [info] Applying migration 009_embeddings
445
+ 2026-02-27T10:57:44.892Z [info] Migrations complete. Now at version 9
446
+ 2026-02-27T10:57:44.895Z [info] Running 9 migration(s) from version 0
447
+ 2026-02-27T10:57:44.895Z [info] Applying migration 001_core_schema
448
+ 2026-02-27T10:57:44.895Z [info] Applying migration 002_learning_schema
449
+ 2026-02-27T10:57:44.895Z [info] Applying migration 003_code_schema
450
+ 2026-02-27T10:57:44.896Z [info] Applying migration 004_synapses_schema
451
+ 2026-02-27T10:57:44.896Z [info] Applying migration 005_fts_indexes
452
+ 2026-02-27T10:57:44.897Z [info] Applying migration 006_synapses_phase3
453
+ 2026-02-27T10:57:44.897Z [info] Applying migration 007_feedback
454
+ 2026-02-27T10:57:44.898Z [info] Applying migration 008_git_integration
455
+ 2026-02-27T10:57:44.899Z [info] Applying migration 009_embeddings
456
+ 2026-02-27T10:57:44.899Z [info] Migrations complete. Now at version 9
457
+ 2026-02-27T10:57:44.902Z [info] Running 9 migration(s) from version 0
458
+ 2026-02-27T10:57:44.902Z [info] Applying migration 001_core_schema
459
+ 2026-02-27T10:57:44.902Z [info] Applying migration 002_learning_schema
460
+ 2026-02-27T10:57:44.903Z [info] Applying migration 003_code_schema
461
+ 2026-02-27T10:57:44.903Z [info] Applying migration 004_synapses_schema
462
+ 2026-02-27T10:57:44.903Z [info] Applying migration 005_fts_indexes
463
+ 2026-02-27T10:57:44.904Z [info] Applying migration 006_synapses_phase3
464
+ 2026-02-27T10:57:44.904Z [info] Applying migration 007_feedback
465
+ 2026-02-27T10:57:44.905Z [info] Applying migration 008_git_integration
466
+ 2026-02-27T10:57:44.906Z [info] Applying migration 009_embeddings
467
+ 2026-02-27T10:57:44.906Z [info] Migrations complete. Now at version 9
468
+ 2026-02-27T10:57:44.909Z [info] Running 9 migration(s) from version 0
469
+ 2026-02-27T10:57:44.909Z [info] Applying migration 001_core_schema
470
+ 2026-02-27T10:57:44.909Z [info] Applying migration 002_learning_schema
471
+ 2026-02-27T10:57:44.910Z [info] Applying migration 003_code_schema
472
+ 2026-02-27T10:57:44.910Z [info] Applying migration 004_synapses_schema
473
+ 2026-02-27T10:57:44.910Z [info] Applying migration 005_fts_indexes
474
+ 2026-02-27T10:57:44.911Z [info] Applying migration 006_synapses_phase3
475
+ 2026-02-27T10:57:44.911Z [info] Applying migration 007_feedback
476
+ 2026-02-27T10:57:44.913Z [info] Applying migration 008_git_integration
477
+ 2026-02-27T10:57:44.914Z [info] Applying migration 009_embeddings
478
+ 2026-02-27T10:57:44.914Z [info] Migrations complete. Now at version 9
479
+ 2026-02-27T10:57:44.884Z [info] Running 9 migration(s) from version 0
480
+ 2026-02-27T10:57:44.885Z [info] Applying migration 001_core_schema
481
+ 2026-02-27T10:57:44.886Z [info] Applying migration 002_learning_schema
482
+ 2026-02-27T10:57:44.887Z [info] Applying migration 003_code_schema
483
+ 2026-02-27T10:57:44.887Z [info] Applying migration 004_synapses_schema
484
+ 2026-02-27T10:57:44.887Z [info] Applying migration 005_fts_indexes
485
+ 2026-02-27T10:57:44.888Z [info] Applying migration 006_synapses_phase3
486
+ 2026-02-27T10:57:44.889Z [info] Applying migration 007_feedback
487
+ 2026-02-27T10:57:44.891Z [info] Applying migration 008_git_integration
488
+ 2026-02-27T10:57:44.892Z [info] Applying migration 009_embeddings
489
+ 2026-02-27T10:57:44.892Z [info] Migrations complete. Now at version 9
490
+ 2026-02-27T10:57:44.897Z [info] Running 9 migration(s) from version 0
491
+ 2026-02-27T10:57:44.897Z [info] Applying migration 001_core_schema
492
+ 2026-02-27T10:57:44.897Z [info] Applying migration 002_learning_schema
493
+ 2026-02-27T10:57:44.898Z [info] Applying migration 003_code_schema
494
+ 2026-02-27T10:57:44.898Z [info] Applying migration 004_synapses_schema
495
+ 2026-02-27T10:57:44.898Z [info] Applying migration 005_fts_indexes
496
+ 2026-02-27T10:57:44.899Z [info] Applying migration 006_synapses_phase3
497
+ 2026-02-27T10:57:44.900Z [info] Applying migration 007_feedback
498
+ 2026-02-27T10:57:44.901Z [info] Applying migration 008_git_integration
499
+ 2026-02-27T10:57:44.902Z [info] Applying migration 009_embeddings
500
+ 2026-02-27T10:57:44.902Z [info] Migrations complete. Now at version 9
501
+ 2026-02-27T10:57:44.906Z [info] Running 9 migration(s) from version 0
502
+ 2026-02-27T10:57:44.906Z [info] Applying migration 001_core_schema
503
+ 2026-02-27T10:57:44.907Z [info] Applying migration 002_learning_schema
504
+ 2026-02-27T10:57:44.907Z [info] Applying migration 003_code_schema
505
+ 2026-02-27T10:57:44.907Z [info] Applying migration 004_synapses_schema
506
+ 2026-02-27T10:57:44.907Z [info] Applying migration 005_fts_indexes
507
+ 2026-02-27T10:57:44.908Z [info] Applying migration 006_synapses_phase3
508
+ 2026-02-27T10:57:44.908Z [info] Applying migration 007_feedback
509
+ 2026-02-27T10:57:44.909Z [info] Applying migration 008_git_integration
510
+ 2026-02-27T10:57:44.910Z [info] Applying migration 009_embeddings
511
+ 2026-02-27T10:57:44.910Z [info] Migrations complete. Now at version 9
512
+ 2026-02-27T10:57:44.913Z [info] Running 9 migration(s) from version 0
513
+ 2026-02-27T10:57:44.913Z [info] Applying migration 001_core_schema
514
+ 2026-02-27T10:57:44.914Z [info] Applying migration 002_learning_schema
515
+ 2026-02-27T10:57:44.914Z [info] Applying migration 003_code_schema
516
+ 2026-02-27T10:57:44.914Z [info] Applying migration 004_synapses_schema
517
+ 2026-02-27T10:57:44.915Z [info] Applying migration 005_fts_indexes
518
+ 2026-02-27T10:57:44.915Z [info] Applying migration 006_synapses_phase3
519
+ 2026-02-27T10:57:44.916Z [info] Applying migration 007_feedback
520
+ 2026-02-27T10:57:44.917Z [info] Applying migration 008_git_integration
521
+ 2026-02-27T10:57:44.918Z [info] Applying migration 009_embeddings
522
+ 2026-02-27T10:57:44.918Z [info] Migrations complete. Now at version 9
523
+ 2026-02-27T10:57:44.885Z [info] Running 9 migration(s) from version 0
524
+ 2026-02-27T10:57:44.886Z [info] Applying migration 001_core_schema
525
+ 2026-02-27T10:57:44.887Z [info] Applying migration 002_learning_schema
526
+ 2026-02-27T10:57:44.887Z [info] Applying migration 003_code_schema
527
+ 2026-02-27T10:57:44.888Z [info] Applying migration 004_synapses_schema
528
+ 2026-02-27T10:57:44.888Z [info] Applying migration 005_fts_indexes
529
+ 2026-02-27T10:57:44.889Z [info] Applying migration 006_synapses_phase3
530
+ 2026-02-27T10:57:44.890Z [info] Applying migration 007_feedback
531
+ 2026-02-27T10:57:44.892Z [info] Applying migration 008_git_integration
532
+ 2026-02-27T10:57:44.893Z [info] Applying migration 009_embeddings
533
+ 2026-02-27T10:57:44.894Z [info] Migrations complete. Now at version 9
534
+ 2026-02-27T10:57:44.898Z [info] Running 9 migration(s) from version 0
535
+ 2026-02-27T10:57:44.898Z [info] Applying migration 001_core_schema
536
+ 2026-02-27T10:57:44.898Z [info] Applying migration 002_learning_schema
537
+ 2026-02-27T10:57:44.898Z [info] Applying migration 003_code_schema
538
+ 2026-02-27T10:57:44.899Z [info] Applying migration 004_synapses_schema
539
+ 2026-02-27T10:57:44.899Z [info] Applying migration 005_fts_indexes
540
+ 2026-02-27T10:57:44.900Z [info] Applying migration 006_synapses_phase3
541
+ 2026-02-27T10:57:44.900Z [info] Applying migration 007_feedback
542
+ 2026-02-27T10:57:44.901Z [info] Applying migration 008_git_integration
543
+ 2026-02-27T10:57:44.902Z [info] Applying migration 009_embeddings
544
+ 2026-02-27T10:57:44.902Z [info] Migrations complete. Now at version 9
545
+ 2026-02-27T10:57:44.905Z [info] Running 9 migration(s) from version 0
546
+ 2026-02-27T10:57:44.905Z [info] Applying migration 001_core_schema
547
+ 2026-02-27T10:57:44.905Z [info] Applying migration 002_learning_schema
548
+ 2026-02-27T10:57:44.905Z [info] Applying migration 003_code_schema
549
+ 2026-02-27T10:57:44.906Z [info] Applying migration 004_synapses_schema
550
+ 2026-02-27T10:57:44.906Z [info] Applying migration 005_fts_indexes
551
+ 2026-02-27T10:57:44.906Z [info] Applying migration 006_synapses_phase3
552
+ 2026-02-27T10:57:44.907Z [info] Applying migration 007_feedback
553
+ 2026-02-27T10:57:44.908Z [info] Applying migration 008_git_integration
554
+ 2026-02-27T10:57:44.909Z [info] Applying migration 009_embeddings
555
+ 2026-02-27T10:57:44.909Z [info] Migrations complete. Now at version 9
556
+ 2026-02-27T10:57:44.913Z [info] Running 9 migration(s) from version 0
557
+ 2026-02-27T10:57:44.913Z [info] Applying migration 001_core_schema
558
+ 2026-02-27T10:57:44.914Z [info] Applying migration 002_learning_schema
559
+ 2026-02-27T10:57:44.914Z [info] Applying migration 003_code_schema
560
+ 2026-02-27T10:57:44.914Z [info] Applying migration 004_synapses_schema
561
+ 2026-02-27T10:57:44.915Z [info] Applying migration 005_fts_indexes
562
+ 2026-02-27T10:57:44.916Z [info] Applying migration 006_synapses_phase3
563
+ 2026-02-27T10:57:44.916Z [info] Applying migration 007_feedback
564
+ 2026-02-27T10:57:44.918Z [info] Applying migration 008_git_integration
565
+ 2026-02-27T10:57:44.919Z [info] Applying migration 009_embeddings
566
+ 2026-02-27T10:57:44.919Z [info] Migrations complete. Now at version 9
567
+ 2026-02-27T10:57:44.922Z [info] Running 9 migration(s) from version 0
568
+ 2026-02-27T10:57:44.924Z [info] Applying migration 001_core_schema
569
+ 2026-02-27T10:57:44.924Z [info] Applying migration 002_learning_schema
570
+ 2026-02-27T10:57:44.925Z [info] Applying migration 003_code_schema
571
+ 2026-02-27T10:57:44.925Z [info] Applying migration 004_synapses_schema
572
+ 2026-02-27T10:57:44.925Z [info] Applying migration 005_fts_indexes
573
+ 2026-02-27T10:57:44.926Z [info] Applying migration 006_synapses_phase3
574
+ 2026-02-27T10:57:44.926Z [info] Applying migration 007_feedback
575
+ 2026-02-27T10:57:44.928Z [info] Applying migration 008_git_integration
576
+ 2026-02-27T10:57:44.929Z [info] Applying migration 009_embeddings
577
+ 2026-02-27T10:57:44.929Z [info] Migrations complete. Now at version 9
578
+ 2026-02-27T10:57:44.932Z [info] Learning cycle starting
579
+ 2026-02-27T10:57:44.933Z [info] Running synapse decay cycle
580
+ 2026-02-27T10:57:44.933Z [info] Decay complete: 0 decayed, 0 pruned
581
+ 2026-02-27T10:57:44.933Z [info] Learning cycle complete: 1 patterns, 0 rules, 0 pruned, 0 antipatterns (1ms)
582
+ 2026-02-27T10:57:44.934Z [info] Running 9 migration(s) from version 0
583
+ 2026-02-27T10:57:44.934Z [info] Applying migration 001_core_schema
584
+ 2026-02-27T10:57:44.934Z [info] Applying migration 002_learning_schema
585
+ 2026-02-27T10:57:44.934Z [info] Applying migration 003_code_schema
586
+ 2026-02-27T10:57:44.935Z [info] Applying migration 004_synapses_schema
587
+ 2026-02-27T10:57:44.935Z [info] Applying migration 005_fts_indexes
588
+ 2026-02-27T10:57:44.935Z [info] Applying migration 006_synapses_phase3
589
+ 2026-02-27T10:57:44.936Z [info] Applying migration 007_feedback
590
+ 2026-02-27T10:57:44.937Z [info] Applying migration 008_git_integration
591
+ 2026-02-27T10:57:44.938Z [info] Applying migration 009_embeddings
592
+ 2026-02-27T10:57:44.939Z [info] Migrations complete. Now at version 9
593
+ 2026-02-27T10:57:44.940Z [info] Learning cycle starting
594
+ 2026-02-27T10:57:44.941Z [info] Running synapse decay cycle
595
+ 2026-02-27T10:57:44.941Z [info] Decay complete: 0 decayed, 0 pruned
596
+ 2026-02-27T10:57:44.941Z [info] Learning cycle complete: 1 patterns, 0 rules, 0 pruned, 0 antipatterns (1ms)
597
+ 2026-02-27T10:57:44.941Z [info] Running 9 migration(s) from version 0
598
+ 2026-02-27T10:57:44.941Z [info] Applying migration 001_core_schema
599
+ 2026-02-27T10:57:44.942Z [info] Applying migration 002_learning_schema
600
+ 2026-02-27T10:57:44.942Z [info] Applying migration 003_code_schema
601
+ 2026-02-27T10:57:44.942Z [info] Applying migration 004_synapses_schema
602
+ 2026-02-27T10:57:44.942Z [info] Applying migration 005_fts_indexes
603
+ 2026-02-27T10:57:44.943Z [info] Applying migration 006_synapses_phase3
604
+ 2026-02-27T10:57:44.943Z [info] Applying migration 007_feedback
605
+ 2026-02-27T10:57:44.945Z [info] Applying migration 008_git_integration
606
+ 2026-02-27T10:57:44.945Z [info] Applying migration 009_embeddings
607
+ 2026-02-27T10:57:44.946Z [info] Migrations complete. Now at version 9
608
+ 2026-02-27T10:57:44.947Z [info] Learning engine starting (interval: 900000ms)
609
+ 2026-02-27T10:57:44.947Z [info] Learning engine stopped
610
+ 2026-02-27T10:57:44.915Z [info] Running 9 migration(s) from version 0
611
+ 2026-02-27T10:57:44.917Z [info] Applying migration 001_core_schema
612
+ 2026-02-27T10:57:44.917Z [info] Applying migration 002_learning_schema
613
+ 2026-02-27T10:57:44.918Z [info] Applying migration 003_code_schema
614
+ 2026-02-27T10:57:44.918Z [info] Applying migration 004_synapses_schema
615
+ 2026-02-27T10:57:44.918Z [info] Applying migration 005_fts_indexes
616
+ 2026-02-27T10:57:44.919Z [info] Applying migration 006_synapses_phase3
617
+ 2026-02-27T10:57:44.920Z [info] Applying migration 007_feedback
618
+ 2026-02-27T10:57:44.921Z [info] Applying migration 008_git_integration
619
+ 2026-02-27T10:57:44.921Z [info] Applying migration 009_embeddings
620
+ 2026-02-27T10:57:44.922Z [info] Migrations complete. Now at version 9
621
+ 2026-02-27T10:57:44.925Z [info] Running 9 migration(s) from version 0
622
+ 2026-02-27T10:57:44.925Z [info] Applying migration 001_core_schema
623
+ 2026-02-27T10:57:44.926Z [info] Applying migration 002_learning_schema
624
+ 2026-02-27T10:57:44.926Z [info] Applying migration 003_code_schema
625
+ 2026-02-27T10:57:44.926Z [info] Applying migration 004_synapses_schema
626
+ 2026-02-27T10:57:44.926Z [info] Applying migration 005_fts_indexes
627
+ 2026-02-27T10:57:44.927Z [info] Applying migration 006_synapses_phase3
628
+ 2026-02-27T10:57:44.927Z [info] Applying migration 007_feedback
629
+ 2026-02-27T10:57:44.928Z [info] Applying migration 008_git_integration
630
+ 2026-02-27T10:57:44.929Z [info] Applying migration 009_embeddings
631
+ 2026-02-27T10:57:44.929Z [info] Migrations complete. Now at version 9
632
+ 2026-02-27T10:57:44.932Z [info] Running 9 migration(s) from version 0
633
+ 2026-02-27T10:57:44.932Z [info] Applying migration 001_core_schema
634
+ 2026-02-27T10:57:44.932Z [info] Applying migration 002_learning_schema
635
+ 2026-02-27T10:57:44.932Z [info] Applying migration 003_code_schema
636
+ 2026-02-27T10:57:44.932Z [info] Applying migration 004_synapses_schema
637
+ 2026-02-27T10:57:44.933Z [info] Applying migration 005_fts_indexes
638
+ 2026-02-27T10:57:44.933Z [info] Applying migration 006_synapses_phase3
639
+ 2026-02-27T10:57:44.934Z [info] Applying migration 007_feedback
640
+ 2026-02-27T10:57:44.935Z [info] Applying migration 008_git_integration
641
+ 2026-02-27T10:57:44.936Z [info] Applying migration 009_embeddings
642
+ 2026-02-27T10:57:44.936Z [info] Migrations complete. Now at version 9
643
+ 2026-02-27T10:57:44.938Z [info] Running 9 migration(s) from version 0
644
+ 2026-02-27T10:57:44.939Z [info] Applying migration 001_core_schema
645
+ 2026-02-27T10:57:44.939Z [info] Applying migration 002_learning_schema
646
+ 2026-02-27T10:57:44.939Z [info] Applying migration 003_code_schema
647
+ 2026-02-27T10:57:44.939Z [info] Applying migration 004_synapses_schema
648
+ 2026-02-27T10:57:44.939Z [info] Applying migration 005_fts_indexes
649
+ 2026-02-27T10:57:44.940Z [info] Applying migration 006_synapses_phase3
650
+ 2026-02-27T10:57:44.941Z [info] Applying migration 007_feedback
651
+ 2026-02-27T10:57:44.942Z [info] Applying migration 008_git_integration
652
+ 2026-02-27T10:57:44.942Z [info] Applying migration 009_embeddings
653
+ 2026-02-27T10:57:44.943Z [info] Migrations complete. Now at version 9
654
+ 2026-02-27T10:57:44.945Z [info] Running 9 migration(s) from version 0
655
+ 2026-02-27T10:57:44.945Z [info] Applying migration 001_core_schema
656
+ 2026-02-27T10:57:44.945Z [info] Applying migration 002_learning_schema
657
+ 2026-02-27T10:57:44.946Z [info] Applying migration 003_code_schema
658
+ 2026-02-27T10:57:44.946Z [info] Applying migration 004_synapses_schema
659
+ 2026-02-27T10:57:44.946Z [info] Applying migration 005_fts_indexes
660
+ 2026-02-27T10:57:44.947Z [info] Applying migration 006_synapses_phase3
661
+ 2026-02-27T10:57:44.948Z [info] Applying migration 007_feedback
662
+ 2026-02-27T10:57:44.949Z [info] Applying migration 008_git_integration
663
+ 2026-02-27T10:57:44.950Z [info] Applying migration 009_embeddings
664
+ 2026-02-27T10:57:44.950Z [info] Migrations complete. Now at version 9
665
+ 2026-02-27T10:57:44.953Z [info] Running synapse decay cycle
666
+ 2026-02-27T10:57:44.953Z [info] Decay complete: 0 decayed, 1 pruned
667
+ 2026-02-27T10:57:44.931Z [info] Running 9 migration(s) from version 0
668
+ 2026-02-27T10:57:44.933Z [info] Applying migration 001_core_schema
669
+ 2026-02-27T10:57:44.933Z [info] Applying migration 002_learning_schema
670
+ 2026-02-27T10:57:44.934Z [info] Applying migration 003_code_schema
671
+ 2026-02-27T10:57:44.934Z [info] Applying migration 004_synapses_schema
672
+ 2026-02-27T10:57:44.934Z [info] Applying migration 005_fts_indexes
673
+ 2026-02-27T10:57:44.935Z [info] Applying migration 006_synapses_phase3
674
+ 2026-02-27T10:57:44.936Z [info] Applying migration 007_feedback
675
+ 2026-02-27T10:57:44.937Z [info] Applying migration 008_git_integration
676
+ 2026-02-27T10:57:44.938Z [info] Applying migration 009_embeddings
677
+ 2026-02-27T10:57:44.939Z [info] Migrations complete. Now at version 9
678
+ 2026-02-27T10:57:44.943Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
679
+ 2026-02-27T10:57:44.944Z [info] Running 9 migration(s) from version 0
680
+ 2026-02-27T10:57:44.944Z [info] Applying migration 001_core_schema
681
+ 2026-02-27T10:57:44.945Z [info] Applying migration 002_learning_schema
682
+ 2026-02-27T10:57:44.945Z [info] Applying migration 003_code_schema
683
+ 2026-02-27T10:57:44.945Z [info] Applying migration 004_synapses_schema
684
+ 2026-02-27T10:57:44.945Z [info] Applying migration 005_fts_indexes
685
+ 2026-02-27T10:57:44.946Z [info] Applying migration 006_synapses_phase3
686
+ 2026-02-27T10:57:44.946Z [info] Applying migration 007_feedback
687
+ 2026-02-27T10:57:44.948Z [info] Applying migration 008_git_integration
688
+ 2026-02-27T10:57:44.948Z [info] Applying migration 009_embeddings
689
+ 2026-02-27T10:57:44.949Z [info] Migrations complete. Now at version 9
690
+ 2026-02-27T10:57:44.951Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
691
+ 2026-02-27T10:57:44.951Z [info] Running 9 migration(s) from version 0
692
+ 2026-02-27T10:57:44.951Z [info] Applying migration 001_core_schema
693
+ 2026-02-27T10:57:44.952Z [info] Applying migration 002_learning_schema
694
+ 2026-02-27T10:57:44.952Z [info] Applying migration 003_code_schema
695
+ 2026-02-27T10:57:44.952Z [info] Applying migration 004_synapses_schema
696
+ 2026-02-27T10:57:44.953Z [info] Applying migration 005_fts_indexes
697
+ 2026-02-27T10:57:44.953Z [info] Applying migration 006_synapses_phase3
698
+ 2026-02-27T10:57:44.954Z [info] Applying migration 007_feedback
699
+ 2026-02-27T10:57:44.955Z [info] Applying migration 008_git_integration
700
+ 2026-02-27T10:57:44.956Z [info] Applying migration 009_embeddings
701
+ 2026-02-27T10:57:44.956Z [info] Migrations complete. Now at version 9
702
+ 2026-02-27T10:57:44.958Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
703
+ 2026-02-27T10:57:44.959Z [info] Running 9 migration(s) from version 0
704
+ 2026-02-27T10:57:44.959Z [info] Applying migration 001_core_schema
705
+ 2026-02-27T10:57:44.960Z [info] Applying migration 002_learning_schema
706
+ 2026-02-27T10:57:44.960Z [info] Applying migration 003_code_schema
707
+ 2026-02-27T10:57:44.960Z [info] Applying migration 004_synapses_schema
708
+ 2026-02-27T10:57:44.960Z [info] Applying migration 005_fts_indexes
709
+ 2026-02-27T10:57:44.961Z [info] Applying migration 006_synapses_phase3
710
+ 2026-02-27T10:57:44.962Z [info] Applying migration 007_feedback
711
+ 2026-02-27T10:57:44.963Z [info] Applying migration 008_git_integration
712
+ 2026-02-27T10:57:44.964Z [info] Applying migration 009_embeddings
713
+ 2026-02-27T10:57:44.964Z [info] Migrations complete. Now at version 9
714
+ 2026-02-27T10:57:44.966Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
715
+ 2026-02-27T10:57:44.945Z [info] Running 9 migration(s) from version 0
716
+ 2026-02-27T10:57:44.946Z [info] Applying migration 001_core_schema
717
+ 2026-02-27T10:57:44.947Z [info] Applying migration 002_learning_schema
718
+ 2026-02-27T10:57:44.947Z [info] Applying migration 003_code_schema
719
+ 2026-02-27T10:57:44.947Z [info] Applying migration 004_synapses_schema
720
+ 2026-02-27T10:57:44.948Z [info] Applying migration 005_fts_indexes
721
+ 2026-02-27T10:57:44.948Z [info] Applying migration 006_synapses_phase3
722
+ 2026-02-27T10:57:44.949Z [info] Applying migration 007_feedback
723
+ 2026-02-27T10:57:44.950Z [info] Applying migration 008_git_integration
724
+ 2026-02-27T10:57:44.951Z [info] Applying migration 009_embeddings
725
+ 2026-02-27T10:57:44.951Z [info] Migrations complete. Now at version 9
726
+ 2026-02-27T10:57:44.955Z [info] New error reported (id=1, type=TypeError)
727
+ 2026-02-27T10:57:44.956Z [info] Running 9 migration(s) from version 0
728
+ 2026-02-27T10:57:44.956Z [info] Applying migration 001_core_schema
729
+ 2026-02-27T10:57:44.956Z [info] Applying migration 002_learning_schema
730
+ 2026-02-27T10:57:44.957Z [info] Applying migration 003_code_schema
731
+ 2026-02-27T10:57:44.957Z [info] Applying migration 004_synapses_schema
732
+ 2026-02-27T10:57:44.957Z [info] Applying migration 005_fts_indexes
733
+ 2026-02-27T10:57:44.958Z [info] Applying migration 006_synapses_phase3
734
+ 2026-02-27T10:57:44.958Z [info] Applying migration 007_feedback
735
+ 2026-02-27T10:57:44.959Z [info] Applying migration 008_git_integration
736
+ 2026-02-27T10:57:44.960Z [info] Applying migration 009_embeddings
737
+ 2026-02-27T10:57:44.960Z [info] Migrations complete. Now at version 9
738
+ 2026-02-27T10:57:44.963Z [info] New error reported (id=1, type=TypeError)
739
+ 2026-02-27T10:57:44.963Z [info] Solution reported (id=1) for error 1
740
+ 2026-02-27T10:57:44.963Z [info] Running 9 migration(s) from version 0
741
+ 2026-02-27T10:57:44.964Z [info] Applying migration 001_core_schema
742
+ 2026-02-27T10:57:44.964Z [info] Applying migration 002_learning_schema
743
+ 2026-02-27T10:57:44.964Z [info] Applying migration 003_code_schema
744
+ 2026-02-27T10:57:44.964Z [info] Applying migration 004_synapses_schema
745
+ 2026-02-27T10:57:44.965Z [info] Applying migration 005_fts_indexes
746
+ 2026-02-27T10:57:44.965Z [info] Applying migration 006_synapses_phase3
747
+ 2026-02-27T10:57:44.966Z [info] Applying migration 007_feedback
748
+ 2026-02-27T10:57:44.967Z [info] Applying migration 008_git_integration
749
+ 2026-02-27T10:57:44.967Z [info] Applying migration 009_embeddings
750
+ 2026-02-27T10:57:44.968Z [info] Migrations complete. Now at version 9
751
+ 2026-02-27T10:57:44.970Z [info] New error reported (id=1, type=TypeError)
752
+ 2026-02-27T10:57:44.970Z [info] Known error (id=1), occurrence incremented
753
+ 2026-02-27T10:57:44.971Z [info] Running 9 migration(s) from version 0
754
+ 2026-02-27T10:57:44.971Z [info] Applying migration 001_core_schema
755
+ 2026-02-27T10:57:44.971Z [info] Applying migration 002_learning_schema
756
+ 2026-02-27T10:57:44.971Z [info] Applying migration 003_code_schema
757
+ 2026-02-27T10:57:44.972Z [info] Applying migration 004_synapses_schema
758
+ 2026-02-27T10:57:44.972Z [info] Applying migration 005_fts_indexes
759
+ 2026-02-27T10:57:44.972Z [info] Applying migration 006_synapses_phase3
760
+ 2026-02-27T10:57:44.973Z [info] Applying migration 007_feedback
761
+ 2026-02-27T10:57:44.974Z [info] Applying migration 008_git_integration
762
+ 2026-02-27T10:57:44.975Z [info] Applying migration 009_embeddings
763
+ 2026-02-27T10:57:44.976Z [info] Migrations complete. Now at version 9
764
+ 2026-02-27T10:57:44.978Z [info] New error reported (id=1, type=Error)
765
+ 2026-02-27T10:57:44.987Z [info] Running 9 migration(s) from version 0
766
+ 2026-02-27T10:57:44.989Z [info] Applying migration 001_core_schema
767
+ 2026-02-27T10:57:44.990Z [info] Applying migration 002_learning_schema
768
+ 2026-02-27T10:57:44.990Z [info] Applying migration 003_code_schema
769
+ 2026-02-27T10:57:44.991Z [info] Applying migration 004_synapses_schema
770
+ 2026-02-27T10:57:44.991Z [info] Applying migration 005_fts_indexes
771
+ 2026-02-27T10:57:44.992Z [info] Applying migration 006_synapses_phase3
772
+ 2026-02-27T10:57:44.992Z [info] Applying migration 007_feedback
773
+ 2026-02-27T10:57:44.994Z [info] Applying migration 008_git_integration
774
+ 2026-02-27T10:57:44.994Z [info] Applying migration 009_embeddings
775
+ 2026-02-27T10:57:44.995Z [info] Migrations complete. Now at version 9
776
+ 2026-02-27T10:57:44.999Z [info] New error reported (id=1, type=Error)
777
+ 2026-02-27T11:01:17.690Z [info] Running 9 migration(s) from version 0
778
+ 2026-02-27T11:01:17.689Z [info] Running 9 migration(s) from version 0
779
+ 2026-02-27T11:01:17.691Z [info] Applying migration 001_core_schema
780
+ 2026-02-27T11:01:17.692Z [info] Applying migration 002_learning_schema
781
+ 2026-02-27T11:01:17.692Z [info] Applying migration 003_code_schema
782
+ 2026-02-27T11:01:17.692Z [info] Applying migration 004_synapses_schema
783
+ 2026-02-27T11:01:17.693Z [info] Applying migration 005_fts_indexes
784
+ 2026-02-27T11:01:17.693Z [info] Applying migration 006_synapses_phase3
785
+ 2026-02-27T11:01:17.694Z [info] Applying migration 007_feedback
786
+ 2026-02-27T11:01:17.695Z [info] Applying migration 008_git_integration
787
+ 2026-02-27T11:01:17.690Z [info] Applying migration 001_core_schema
788
+ 2026-02-27T11:01:17.696Z [info] Applying migration 009_embeddings
789
+ 2026-02-27T11:01:17.691Z [info] Applying migration 002_learning_schema
790
+ 2026-02-27T11:01:17.697Z [info] Migrations complete. Now at version 9
791
+ 2026-02-27T11:01:17.700Z [info] Running 9 migration(s) from version 0
792
+ 2026-02-27T11:01:17.700Z [info] Applying migration 001_core_schema
793
+ 2026-02-27T11:01:17.691Z [info] Applying migration 003_code_schema
794
+ 2026-02-27T11:01:17.700Z [info] Applying migration 002_learning_schema
795
+ 2026-02-27T11:01:17.700Z [info] Applying migration 003_code_schema
796
+ 2026-02-27T11:01:17.701Z [info] Applying migration 004_synapses_schema
797
+ 2026-02-27T11:01:17.691Z [info] Applying migration 004_synapses_schema
798
+ 2026-02-27T11:01:17.701Z [info] Applying migration 005_fts_indexes
799
+ 2026-02-27T11:01:17.702Z [info] Applying migration 006_synapses_phase3
800
+ 2026-02-27T11:01:17.692Z [info] Applying migration 005_fts_indexes
801
+ 2026-02-27T11:01:17.702Z [info] Applying migration 007_feedback
802
+ 2026-02-27T11:01:17.703Z [info] Applying migration 008_git_integration
803
+ 2026-02-27T11:01:17.704Z [info] Applying migration 009_embeddings
804
+ 2026-02-27T11:01:17.692Z [info] Applying migration 006_synapses_phase3
805
+ 2026-02-27T11:01:17.705Z [info] Migrations complete. Now at version 9
806
+ 2026-02-27T11:01:17.693Z [info] Applying migration 007_feedback
807
+ 2026-02-27T11:01:17.707Z [info] Trend analysis complete: 0 insights
808
+ 2026-02-27T11:01:17.694Z [info] Applying migration 008_git_integration
809
+ 2026-02-27T11:01:17.695Z [info] Applying migration 009_embeddings
810
+ 2026-02-27T11:01:17.696Z [info] Migrations complete. Now at version 9
811
+ 2026-02-27T11:01:17.698Z [info] Running 9 migration(s) from version 0
812
+ 2026-02-27T11:01:17.698Z [info] Applying migration 001_core_schema
813
+ 2026-02-27T11:01:17.699Z [info] Applying migration 002_learning_schema
814
+ 2026-02-27T11:01:17.699Z [info] Applying migration 003_code_schema
815
+ 2026-02-27T11:01:17.699Z [info] Applying migration 004_synapses_schema
816
+ 2026-02-27T11:01:17.700Z [info] Applying migration 005_fts_indexes
817
+ 2026-02-27T11:01:17.700Z [info] Applying migration 006_synapses_phase3
818
+ 2026-02-27T11:01:17.701Z [info] Applying migration 007_feedback
819
+ 2026-02-27T11:01:17.702Z [info] Applying migration 008_git_integration
820
+ 2026-02-27T11:01:17.704Z [info] Applying migration 009_embeddings
821
+ 2026-02-27T11:01:17.705Z [info] Migrations complete. Now at version 9
822
+ 2026-02-27T11:01:17.707Z [info] Gap analysis complete: 1 insights
823
+ 2026-02-27T11:01:17.689Z [info] Running 9 migration(s) from version 0
824
+ 2026-02-27T11:01:17.691Z [info] Applying migration 001_core_schema
825
+ 2026-02-27T11:01:17.691Z [info] Applying migration 002_learning_schema
826
+ 2026-02-27T11:01:17.691Z [info] Applying migration 003_code_schema
827
+ 2026-02-27T11:01:17.692Z [info] Applying migration 004_synapses_schema
828
+ 2026-02-27T11:01:17.692Z [info] Applying migration 005_fts_indexes
829
+ 2026-02-27T11:01:17.693Z [info] Applying migration 006_synapses_phase3
830
+ 2026-02-27T11:01:17.693Z [info] Applying migration 007_feedback
831
+ 2026-02-27T11:01:17.695Z [info] Applying migration 008_git_integration
832
+ 2026-02-27T11:01:17.695Z [info] Applying migration 009_embeddings
833
+ 2026-02-27T11:01:17.696Z [info] Migrations complete. Now at version 9
834
+ 2026-02-27T11:01:17.699Z [info] Running 9 migration(s) from version 0
835
+ 2026-02-27T11:01:17.699Z [info] Applying migration 001_core_schema
836
+ 2026-02-27T11:01:17.700Z [info] Applying migration 002_learning_schema
837
+ 2026-02-27T11:01:17.700Z [info] Applying migration 003_code_schema
838
+ 2026-02-27T11:01:17.700Z [info] Applying migration 004_synapses_schema
839
+ 2026-02-27T11:01:17.700Z [info] Applying migration 005_fts_indexes
840
+ 2026-02-27T11:01:17.701Z [info] Applying migration 006_synapses_phase3
841
+ 2026-02-27T11:01:17.701Z [info] Applying migration 007_feedback
842
+ 2026-02-27T11:01:17.703Z [info] Applying migration 008_git_integration
843
+ 2026-02-27T11:01:17.703Z [info] Applying migration 009_embeddings
844
+ 2026-02-27T11:01:17.704Z [info] Migrations complete. Now at version 9
845
+ 2026-02-27T11:01:17.706Z [info] Running 9 migration(s) from version 0
846
+ 2026-02-27T11:01:17.706Z [info] Applying migration 001_core_schema
847
+ 2026-02-27T11:01:17.706Z [info] Applying migration 002_learning_schema
848
+ 2026-02-27T11:01:17.706Z [info] Applying migration 003_code_schema
849
+ 2026-02-27T11:01:17.707Z [info] Applying migration 004_synapses_schema
850
+ 2026-02-27T11:01:17.707Z [info] Applying migration 005_fts_indexes
851
+ 2026-02-27T11:01:17.707Z [info] Applying migration 006_synapses_phase3
852
+ 2026-02-27T11:01:17.708Z [info] Applying migration 007_feedback
853
+ 2026-02-27T11:01:17.709Z [info] Applying migration 008_git_integration
854
+ 2026-02-27T11:01:17.710Z [info] Applying migration 009_embeddings
855
+ 2026-02-27T11:01:17.710Z [info] Migrations complete. Now at version 9
856
+ 2026-02-27T11:01:17.713Z [info] Running 9 migration(s) from version 0
857
+ 2026-02-27T11:01:17.713Z [info] Applying migration 001_core_schema
858
+ 2026-02-27T11:01:17.713Z [info] Applying migration 002_learning_schema
859
+ 2026-02-27T11:01:17.714Z [info] Applying migration 003_code_schema
860
+ 2026-02-27T11:01:17.714Z [info] Applying migration 004_synapses_schema
861
+ 2026-02-27T11:01:17.714Z [info] Applying migration 005_fts_indexes
862
+ 2026-02-27T11:01:17.715Z [info] Applying migration 006_synapses_phase3
863
+ 2026-02-27T11:01:17.715Z [info] Applying migration 007_feedback
864
+ 2026-02-27T11:01:17.716Z [info] Applying migration 008_git_integration
865
+ 2026-02-27T11:01:17.717Z [info] Applying migration 009_embeddings
866
+ 2026-02-27T11:01:17.718Z [info] Migrations complete. Now at version 9
867
+ 2026-02-27T11:01:17.689Z [info] Running 9 migration(s) from version 0
868
+ 2026-02-27T11:01:17.691Z [info] Applying migration 001_core_schema
869
+ 2026-02-27T11:01:17.692Z [info] Applying migration 002_learning_schema
870
+ 2026-02-27T11:01:17.692Z [info] Applying migration 003_code_schema
871
+ 2026-02-27T11:01:17.693Z [info] Applying migration 004_synapses_schema
872
+ 2026-02-27T11:01:17.693Z [info] Applying migration 005_fts_indexes
873
+ 2026-02-27T11:01:17.694Z [info] Applying migration 006_synapses_phase3
874
+ 2026-02-27T11:01:17.694Z [info] Applying migration 007_feedback
875
+ 2026-02-27T11:01:17.696Z [info] Applying migration 008_git_integration
876
+ 2026-02-27T11:01:17.696Z [info] Applying migration 009_embeddings
877
+ 2026-02-27T11:01:17.697Z [info] Migrations complete. Now at version 9
878
+ 2026-02-27T11:01:17.701Z [info] Running 9 migration(s) from version 0
879
+ 2026-02-27T11:01:17.701Z [info] Applying migration 001_core_schema
880
+ 2026-02-27T11:01:17.701Z [info] Applying migration 002_learning_schema
881
+ 2026-02-27T11:01:17.702Z [info] Applying migration 003_code_schema
882
+ 2026-02-27T11:01:17.702Z [info] Applying migration 004_synapses_schema
883
+ 2026-02-27T11:01:17.702Z [info] Applying migration 005_fts_indexes
884
+ 2026-02-27T11:01:17.703Z [info] Applying migration 006_synapses_phase3
885
+ 2026-02-27T11:01:17.703Z [info] Applying migration 007_feedback
886
+ 2026-02-27T11:01:17.704Z [info] Applying migration 008_git_integration
887
+ 2026-02-27T11:01:17.705Z [info] Applying migration 009_embeddings
888
+ 2026-02-27T11:01:17.705Z [info] Migrations complete. Now at version 9
889
+ 2026-02-27T11:01:17.708Z [info] Running 9 migration(s) from version 0
890
+ 2026-02-27T11:01:17.708Z [info] Applying migration 001_core_schema
891
+ 2026-02-27T11:01:17.708Z [info] Applying migration 002_learning_schema
892
+ 2026-02-27T11:01:17.708Z [info] Applying migration 003_code_schema
893
+ 2026-02-27T11:01:17.708Z [info] Applying migration 004_synapses_schema
894
+ 2026-02-27T11:01:17.709Z [info] Applying migration 005_fts_indexes
895
+ 2026-02-27T11:01:17.709Z [info] Applying migration 006_synapses_phase3
896
+ 2026-02-27T11:01:17.710Z [info] Applying migration 007_feedback
897
+ 2026-02-27T11:01:17.711Z [info] Applying migration 008_git_integration
898
+ 2026-02-27T11:01:17.712Z [info] Applying migration 009_embeddings
899
+ 2026-02-27T11:01:17.712Z [info] Migrations complete. Now at version 9
900
+ 2026-02-27T11:01:17.716Z [info] Running 9 migration(s) from version 0
901
+ 2026-02-27T11:01:17.716Z [info] Applying migration 001_core_schema
902
+ 2026-02-27T11:01:17.717Z [info] Applying migration 002_learning_schema
903
+ 2026-02-27T11:01:17.717Z [info] Applying migration 003_code_schema
904
+ 2026-02-27T11:01:17.717Z [info] Applying migration 004_synapses_schema
905
+ 2026-02-27T11:01:17.717Z [info] Applying migration 005_fts_indexes
906
+ 2026-02-27T11:01:17.718Z [info] Applying migration 006_synapses_phase3
907
+ 2026-02-27T11:01:17.719Z [info] Applying migration 007_feedback
908
+ 2026-02-27T11:01:17.720Z [info] Applying migration 008_git_integration
909
+ 2026-02-27T11:01:17.720Z [info] Applying migration 009_embeddings
910
+ 2026-02-27T11:01:17.721Z [info] Migrations complete. Now at version 9
911
+ 2026-02-27T11:01:17.689Z [info] Running 9 migration(s) from version 0
912
+ 2026-02-27T11:01:17.691Z [info] Applying migration 001_core_schema
913
+ 2026-02-27T11:01:17.692Z [info] Applying migration 002_learning_schema
914
+ 2026-02-27T11:01:17.692Z [info] Applying migration 003_code_schema
915
+ 2026-02-27T11:01:17.692Z [info] Applying migration 004_synapses_schema
916
+ 2026-02-27T11:01:17.693Z [info] Applying migration 005_fts_indexes
917
+ 2026-02-27T11:01:17.694Z [info] Applying migration 006_synapses_phase3
918
+ 2026-02-27T11:01:17.694Z [info] Applying migration 007_feedback
919
+ 2026-02-27T11:01:17.696Z [info] Applying migration 008_git_integration
920
+ 2026-02-27T11:01:17.697Z [info] Applying migration 009_embeddings
921
+ 2026-02-27T11:01:17.697Z [info] Migrations complete. Now at version 9
922
+ 2026-02-27T11:01:17.701Z [info] Running 9 migration(s) from version 0
923
+ 2026-02-27T11:01:17.701Z [info] Applying migration 001_core_schema
924
+ 2026-02-27T11:01:17.701Z [info] Applying migration 002_learning_schema
925
+ 2026-02-27T11:01:17.702Z [info] Applying migration 003_code_schema
926
+ 2026-02-27T11:01:17.702Z [info] Applying migration 004_synapses_schema
927
+ 2026-02-27T11:01:17.702Z [info] Applying migration 005_fts_indexes
928
+ 2026-02-27T11:01:17.703Z [info] Applying migration 006_synapses_phase3
929
+ 2026-02-27T11:01:17.704Z [info] Applying migration 007_feedback
930
+ 2026-02-27T11:01:17.705Z [info] Applying migration 008_git_integration
931
+ 2026-02-27T11:01:17.706Z [info] Applying migration 009_embeddings
932
+ 2026-02-27T11:01:17.706Z [info] Migrations complete. Now at version 9
933
+ 2026-02-27T11:01:17.710Z [info] Running 9 migration(s) from version 0
934
+ 2026-02-27T11:01:17.710Z [info] Applying migration 001_core_schema
935
+ 2026-02-27T11:01:17.711Z [info] Applying migration 002_learning_schema
936
+ 2026-02-27T11:01:17.711Z [info] Applying migration 003_code_schema
937
+ 2026-02-27T11:01:17.711Z [info] Applying migration 004_synapses_schema
938
+ 2026-02-27T11:01:17.711Z [info] Applying migration 005_fts_indexes
939
+ 2026-02-27T11:01:17.712Z [info] Applying migration 006_synapses_phase3
940
+ 2026-02-27T11:01:17.712Z [info] Applying migration 007_feedback
941
+ 2026-02-27T11:01:17.714Z [info] Applying migration 008_git_integration
942
+ 2026-02-27T11:01:17.714Z [info] Applying migration 009_embeddings
943
+ 2026-02-27T11:01:17.715Z [info] Migrations complete. Now at version 9
944
+ 2026-02-27T11:01:17.717Z [info] Running 9 migration(s) from version 0
945
+ 2026-02-27T11:01:17.718Z [info] Applying migration 001_core_schema
946
+ 2026-02-27T11:01:17.718Z [info] Applying migration 002_learning_schema
947
+ 2026-02-27T11:01:17.718Z [info] Applying migration 003_code_schema
948
+ 2026-02-27T11:01:17.719Z [info] Applying migration 004_synapses_schema
949
+ 2026-02-27T11:01:17.719Z [info] Applying migration 005_fts_indexes
950
+ 2026-02-27T11:01:17.720Z [info] Applying migration 006_synapses_phase3
951
+ 2026-02-27T11:01:17.720Z [info] Applying migration 007_feedback
952
+ 2026-02-27T11:01:17.721Z [info] Applying migration 008_git_integration
953
+ 2026-02-27T11:01:17.722Z [info] Applying migration 009_embeddings
954
+ 2026-02-27T11:01:17.722Z [info] Migrations complete. Now at version 9
955
+ 2026-02-27T11:01:17.719Z [info] Running 9 migration(s) from version 0
956
+ 2026-02-27T11:01:17.720Z [info] Applying migration 001_core_schema
957
+ 2026-02-27T11:01:17.721Z [info] Applying migration 002_learning_schema
958
+ 2026-02-27T11:01:17.721Z [info] Applying migration 003_code_schema
959
+ 2026-02-27T11:01:17.722Z [info] Applying migration 004_synapses_schema
960
+ 2026-02-27T11:01:17.722Z [info] Applying migration 005_fts_indexes
961
+ 2026-02-27T11:01:17.723Z [info] Applying migration 006_synapses_phase3
962
+ 2026-02-27T11:01:17.724Z [info] Applying migration 007_feedback
963
+ 2026-02-27T11:01:17.725Z [info] Applying migration 008_git_integration
964
+ 2026-02-27T11:01:17.726Z [info] Applying migration 009_embeddings
965
+ 2026-02-27T11:01:17.727Z [info] Migrations complete. Now at version 9
966
+ 2026-02-27T11:01:17.729Z [info] Learning cycle starting
967
+ 2026-02-27T11:01:17.730Z [info] Running synapse decay cycle
968
+ 2026-02-27T11:01:17.730Z [info] Decay complete: 0 decayed, 0 pruned
969
+ 2026-02-27T11:01:17.730Z [info] Learning cycle complete: 1 patterns, 0 rules, 0 pruned, 0 antipatterns (1ms)
970
+ 2026-02-27T11:01:17.731Z [info] Running 9 migration(s) from version 0
971
+ 2026-02-27T11:01:17.731Z [info] Applying migration 001_core_schema
972
+ 2026-02-27T11:01:17.731Z [info] Applying migration 002_learning_schema
973
+ 2026-02-27T11:01:17.731Z [info] Applying migration 003_code_schema
974
+ 2026-02-27T11:01:17.732Z [info] Applying migration 004_synapses_schema
975
+ 2026-02-27T11:01:17.732Z [info] Applying migration 005_fts_indexes
976
+ 2026-02-27T11:01:17.732Z [info] Applying migration 006_synapses_phase3
977
+ 2026-02-27T11:01:17.733Z [info] Applying migration 007_feedback
978
+ 2026-02-27T11:01:17.734Z [info] Applying migration 008_git_integration
979
+ 2026-02-27T11:01:17.735Z [info] Applying migration 009_embeddings
980
+ 2026-02-27T11:01:17.735Z [info] Migrations complete. Now at version 9
981
+ 2026-02-27T11:01:17.737Z [info] Learning cycle starting
982
+ 2026-02-27T11:01:17.737Z [info] Running synapse decay cycle
983
+ 2026-02-27T11:01:17.737Z [info] Decay complete: 0 decayed, 0 pruned
984
+ 2026-02-27T11:01:17.737Z [info] Learning cycle complete: 1 patterns, 0 rules, 0 pruned, 0 antipatterns (0ms)
985
+ 2026-02-27T11:01:17.738Z [info] Running 9 migration(s) from version 0
986
+ 2026-02-27T11:01:17.738Z [info] Applying migration 001_core_schema
987
+ 2026-02-27T11:01:17.738Z [info] Applying migration 002_learning_schema
988
+ 2026-02-27T11:01:17.738Z [info] Applying migration 003_code_schema
989
+ 2026-02-27T11:01:17.739Z [info] Applying migration 004_synapses_schema
990
+ 2026-02-27T11:01:17.739Z [info] Applying migration 005_fts_indexes
991
+ 2026-02-27T11:01:17.739Z [info] Applying migration 006_synapses_phase3
992
+ 2026-02-27T11:01:17.740Z [info] Applying migration 007_feedback
993
+ 2026-02-27T11:01:17.741Z [info] Applying migration 008_git_integration
994
+ 2026-02-27T11:01:17.742Z [info] Applying migration 009_embeddings
995
+ 2026-02-27T11:01:17.742Z [info] Migrations complete. Now at version 9
996
+ 2026-02-27T11:01:17.744Z [info] Learning engine starting (interval: 900000ms)
997
+ 2026-02-27T11:01:17.744Z [info] Learning engine stopped
998
+ 2026-02-27T11:01:17.714Z [info] Running 9 migration(s) from version 0
999
+ 2026-02-27T11:01:17.715Z [info] Applying migration 001_core_schema
1000
+ 2026-02-27T11:01:17.716Z [info] Applying migration 002_learning_schema
1001
+ 2026-02-27T11:01:17.716Z [info] Applying migration 003_code_schema
1002
+ 2026-02-27T11:01:17.716Z [info] Applying migration 004_synapses_schema
1003
+ 2026-02-27T11:01:17.717Z [info] Applying migration 005_fts_indexes
1004
+ 2026-02-27T11:01:17.717Z [info] Applying migration 006_synapses_phase3
1005
+ 2026-02-27T11:01:17.718Z [info] Applying migration 007_feedback
1006
+ 2026-02-27T11:01:17.720Z [info] Applying migration 008_git_integration
1007
+ 2026-02-27T11:01:17.721Z [info] Applying migration 009_embeddings
1008
+ 2026-02-27T11:01:17.721Z [info] Migrations complete. Now at version 9
1009
+ 2026-02-27T11:01:17.725Z [info] Running 9 migration(s) from version 0
1010
+ 2026-02-27T11:01:17.725Z [info] Applying migration 001_core_schema
1011
+ 2026-02-27T11:01:17.725Z [info] Applying migration 002_learning_schema
1012
+ 2026-02-27T11:01:17.725Z [info] Applying migration 003_code_schema
1013
+ 2026-02-27T11:01:17.726Z [info] Applying migration 004_synapses_schema
1014
+ 2026-02-27T11:01:17.726Z [info] Applying migration 005_fts_indexes
1015
+ 2026-02-27T11:01:17.726Z [info] Applying migration 006_synapses_phase3
1016
+ 2026-02-27T11:01:17.727Z [info] Applying migration 007_feedback
1017
+ 2026-02-27T11:01:17.728Z [info] Applying migration 008_git_integration
1018
+ 2026-02-27T11:01:17.729Z [info] Applying migration 009_embeddings
1019
+ 2026-02-27T11:01:17.729Z [info] Migrations complete. Now at version 9
1020
+ 2026-02-27T11:01:17.731Z [info] Running 9 migration(s) from version 0
1021
+ 2026-02-27T11:01:17.731Z [info] Applying migration 001_core_schema
1022
+ 2026-02-27T11:01:17.732Z [info] Applying migration 002_learning_schema
1023
+ 2026-02-27T11:01:17.732Z [info] Applying migration 003_code_schema
1024
+ 2026-02-27T11:01:17.732Z [info] Applying migration 004_synapses_schema
1025
+ 2026-02-27T11:01:17.732Z [info] Applying migration 005_fts_indexes
1026
+ 2026-02-27T11:01:17.733Z [info] Applying migration 006_synapses_phase3
1027
+ 2026-02-27T11:01:17.734Z [info] Applying migration 007_feedback
1028
+ 2026-02-27T11:01:17.735Z [info] Applying migration 008_git_integration
1029
+ 2026-02-27T11:01:17.736Z [info] Applying migration 009_embeddings
1030
+ 2026-02-27T11:01:17.736Z [info] Migrations complete. Now at version 9
1031
+ 2026-02-27T11:01:17.739Z [info] Running 9 migration(s) from version 0
1032
+ 2026-02-27T11:01:17.739Z [info] Applying migration 001_core_schema
1033
+ 2026-02-27T11:01:17.739Z [info] Applying migration 002_learning_schema
1034
+ 2026-02-27T11:01:17.739Z [info] Applying migration 003_code_schema
1035
+ 2026-02-27T11:01:17.740Z [info] Applying migration 004_synapses_schema
1036
+ 2026-02-27T11:01:17.740Z [info] Applying migration 005_fts_indexes
1037
+ 2026-02-27T11:01:17.740Z [info] Applying migration 006_synapses_phase3
1038
+ 2026-02-27T11:01:17.741Z [info] Applying migration 007_feedback
1039
+ 2026-02-27T11:01:17.742Z [info] Applying migration 008_git_integration
1040
+ 2026-02-27T11:01:17.743Z [info] Applying migration 009_embeddings
1041
+ 2026-02-27T11:01:17.743Z [info] Migrations complete. Now at version 9
1042
+ 2026-02-27T11:01:17.745Z [info] Running 9 migration(s) from version 0
1043
+ 2026-02-27T11:01:17.745Z [info] Applying migration 001_core_schema
1044
+ 2026-02-27T11:01:17.746Z [info] Applying migration 002_learning_schema
1045
+ 2026-02-27T11:01:17.746Z [info] Applying migration 003_code_schema
1046
+ 2026-02-27T11:01:17.746Z [info] Applying migration 004_synapses_schema
1047
+ 2026-02-27T11:01:17.746Z [info] Applying migration 005_fts_indexes
1048
+ 2026-02-27T11:01:17.747Z [info] Applying migration 006_synapses_phase3
1049
+ 2026-02-27T11:01:17.747Z [info] Applying migration 007_feedback
1050
+ 2026-02-27T11:01:17.748Z [info] Applying migration 008_git_integration
1051
+ 2026-02-27T11:01:17.749Z [info] Applying migration 009_embeddings
1052
+ 2026-02-27T11:01:17.750Z [info] Migrations complete. Now at version 9
1053
+ 2026-02-27T11:01:17.752Z [info] Running synapse decay cycle
1054
+ 2026-02-27T11:01:17.752Z [info] Decay complete: 0 decayed, 1 pruned
1055
+ 2026-02-27T11:01:17.734Z [info] Running 9 migration(s) from version 0
1056
+ 2026-02-27T11:01:17.735Z [info] Applying migration 001_core_schema
1057
+ 2026-02-27T11:01:17.736Z [info] Applying migration 002_learning_schema
1058
+ 2026-02-27T11:01:17.736Z [info] Applying migration 003_code_schema
1059
+ 2026-02-27T11:01:17.737Z [info] Applying migration 004_synapses_schema
1060
+ 2026-02-27T11:01:17.737Z [info] Applying migration 005_fts_indexes
1061
+ 2026-02-27T11:01:17.738Z [info] Applying migration 006_synapses_phase3
1062
+ 2026-02-27T11:01:17.738Z [info] Applying migration 007_feedback
1063
+ 2026-02-27T11:01:17.739Z [info] Applying migration 008_git_integration
1064
+ 2026-02-27T11:01:17.740Z [info] Applying migration 009_embeddings
1065
+ 2026-02-27T11:01:17.741Z [info] Migrations complete. Now at version 9
1066
+ 2026-02-27T11:01:17.744Z [info] New error reported (id=1, type=TypeError)
1067
+ 2026-02-27T11:01:17.745Z [info] Running 9 migration(s) from version 0
1068
+ 2026-02-27T11:01:17.745Z [info] Applying migration 001_core_schema
1069
+ 2026-02-27T11:01:17.746Z [info] Applying migration 002_learning_schema
1070
+ 2026-02-27T11:01:17.746Z [info] Applying migration 003_code_schema
1071
+ 2026-02-27T11:01:17.746Z [info] Applying migration 004_synapses_schema
1072
+ 2026-02-27T11:01:17.746Z [info] Applying migration 005_fts_indexes
1073
+ 2026-02-27T11:01:17.747Z [info] Applying migration 006_synapses_phase3
1074
+ 2026-02-27T11:01:17.747Z [info] Applying migration 007_feedback
1075
+ 2026-02-27T11:01:17.749Z [info] Applying migration 008_git_integration
1076
+ 2026-02-27T11:01:17.749Z [info] Applying migration 009_embeddings
1077
+ 2026-02-27T11:01:17.750Z [info] Migrations complete. Now at version 9
1078
+ 2026-02-27T11:01:17.752Z [info] New error reported (id=1, type=TypeError)
1079
+ 2026-02-27T11:01:17.752Z [info] Solution reported (id=1) for error 1
1080
+ 2026-02-27T11:01:17.752Z [info] Running 9 migration(s) from version 0
1081
+ 2026-02-27T11:01:17.753Z [info] Applying migration 001_core_schema
1082
+ 2026-02-27T11:01:17.753Z [info] Applying migration 002_learning_schema
1083
+ 2026-02-27T11:01:17.753Z [info] Applying migration 003_code_schema
1084
+ 2026-02-27T11:01:17.753Z [info] Applying migration 004_synapses_schema
1085
+ 2026-02-27T11:01:17.754Z [info] Applying migration 005_fts_indexes
1086
+ 2026-02-27T11:01:17.754Z [info] Applying migration 006_synapses_phase3
1087
+ 2026-02-27T11:01:17.755Z [info] Applying migration 007_feedback
1088
+ 2026-02-27T11:01:17.756Z [info] Applying migration 008_git_integration
1089
+ 2026-02-27T11:01:17.756Z [info] Applying migration 009_embeddings
1090
+ 2026-02-27T11:01:17.757Z [info] Migrations complete. Now at version 9
1091
+ 2026-02-27T11:01:17.759Z [info] New error reported (id=1, type=TypeError)
1092
+ 2026-02-27T11:01:17.759Z [info] Known error (id=1), occurrence incremented
1093
+ 2026-02-27T11:01:17.760Z [info] Running 9 migration(s) from version 0
1094
+ 2026-02-27T11:01:17.760Z [info] Applying migration 001_core_schema
1095
+ 2026-02-27T11:01:17.760Z [info] Applying migration 002_learning_schema
1096
+ 2026-02-27T11:01:17.760Z [info] Applying migration 003_code_schema
1097
+ 2026-02-27T11:01:17.761Z [info] Applying migration 004_synapses_schema
1098
+ 2026-02-27T11:01:17.761Z [info] Applying migration 005_fts_indexes
1099
+ 2026-02-27T11:01:17.761Z [info] Applying migration 006_synapses_phase3
1100
+ 2026-02-27T11:01:17.762Z [info] Applying migration 007_feedback
1101
+ 2026-02-27T11:01:17.763Z [info] Applying migration 008_git_integration
1102
+ 2026-02-27T11:01:17.764Z [info] Applying migration 009_embeddings
1103
+ 2026-02-27T11:01:17.764Z [info] Migrations complete. Now at version 9
1104
+ 2026-02-27T11:01:17.766Z [info] New error reported (id=1, type=Error)
1105
+ 2026-02-27T11:01:17.781Z [info] Running 9 migration(s) from version 0
1106
+ 2026-02-27T11:01:17.744Z [info] Running 9 migration(s) from version 0
1107
+ 2026-02-27T11:01:17.745Z [info] Applying migration 001_core_schema
1108
+ 2026-02-27T11:01:17.746Z [info] Applying migration 002_learning_schema
1109
+ 2026-02-27T11:01:17.746Z [info] Applying migration 003_code_schema
1110
+ 2026-02-27T11:01:17.746Z [info] Applying migration 004_synapses_schema
1111
+ 2026-02-27T11:01:17.747Z [info] Applying migration 005_fts_indexes
1112
+ 2026-02-27T11:01:17.747Z [info] Applying migration 006_synapses_phase3
1113
+ 2026-02-27T11:01:17.748Z [info] Applying migration 007_feedback
1114
+ 2026-02-27T11:01:17.749Z [info] Applying migration 008_git_integration
1115
+ 2026-02-27T11:01:17.750Z [info] Applying migration 009_embeddings
1116
+ 2026-02-27T11:01:17.750Z [info] Migrations complete. Now at version 9
1117
+ 2026-02-27T11:01:17.755Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
1118
+ 2026-02-27T11:01:17.756Z [info] Running 9 migration(s) from version 0
1119
+ 2026-02-27T11:01:17.756Z [info] Applying migration 001_core_schema
1120
+ 2026-02-27T11:01:17.756Z [info] Applying migration 002_learning_schema
1121
+ 2026-02-27T11:01:17.756Z [info] Applying migration 003_code_schema
1122
+ 2026-02-27T11:01:17.757Z [info] Applying migration 004_synapses_schema
1123
+ 2026-02-27T11:01:17.757Z [info] Applying migration 005_fts_indexes
1124
+ 2026-02-27T11:01:17.758Z [info] Applying migration 006_synapses_phase3
1125
+ 2026-02-27T11:01:17.758Z [info] Applying migration 007_feedback
1126
+ 2026-02-27T11:01:17.759Z [info] Applying migration 008_git_integration
1127
+ 2026-02-27T11:01:17.760Z [info] Applying migration 009_embeddings
1128
+ 2026-02-27T11:01:17.760Z [info] Migrations complete. Now at version 9
1129
+ 2026-02-27T11:01:17.763Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
1130
+ 2026-02-27T11:01:17.763Z [info] Running 9 migration(s) from version 0
1131
+ 2026-02-27T11:01:17.763Z [info] Applying migration 001_core_schema
1132
+ 2026-02-27T11:01:17.764Z [info] Applying migration 002_learning_schema
1133
+ 2026-02-27T11:01:17.764Z [info] Applying migration 003_code_schema
1134
+ 2026-02-27T11:01:17.764Z [info] Applying migration 004_synapses_schema
1135
+ 2026-02-27T11:01:17.764Z [info] Applying migration 005_fts_indexes
1136
+ 2026-02-27T11:01:17.765Z [info] Applying migration 006_synapses_phase3
1137
+ 2026-02-27T11:01:17.766Z [info] Applying migration 007_feedback
1138
+ 2026-02-27T11:01:17.767Z [info] Applying migration 008_git_integration
1139
+ 2026-02-27T11:01:17.767Z [info] Applying migration 009_embeddings
1140
+ 2026-02-27T11:01:17.768Z [info] Migrations complete. Now at version 9
1141
+ 2026-02-27T11:01:17.771Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
1142
+ 2026-02-27T11:01:17.772Z [info] Running 9 migration(s) from version 0
1143
+ 2026-02-27T11:01:17.772Z [info] Applying migration 001_core_schema
1144
+ 2026-02-27T11:01:17.772Z [info] Applying migration 002_learning_schema
1145
+ 2026-02-27T11:01:17.772Z [info] Applying migration 003_code_schema
1146
+ 2026-02-27T11:01:17.773Z [info] Applying migration 004_synapses_schema
1147
+ 2026-02-27T11:01:17.773Z [info] Applying migration 005_fts_indexes
1148
+ 2026-02-27T11:01:17.773Z [info] Applying migration 006_synapses_phase3
1149
+ 2026-02-27T11:01:17.774Z [info] Applying migration 007_feedback
1150
+ 2026-02-27T11:01:17.775Z [info] Applying migration 008_git_integration
1151
+ 2026-02-27T11:01:17.776Z [info] Applying migration 009_embeddings
1152
+ 2026-02-27T11:01:17.776Z [info] Migrations complete. Now at version 9
1153
+ 2026-02-27T11:01:17.779Z [info] Code module registered (id=1, name=retry, granularity=file, score=0.96)
1154
+ 2026-02-27T11:01:17.782Z [info] Applying migration 001_core_schema
1155
+ 2026-02-27T11:01:17.783Z [info] Applying migration 002_learning_schema
1156
+ 2026-02-27T11:01:17.783Z [info] Applying migration 003_code_schema
1157
+ 2026-02-27T11:01:17.784Z [info] Applying migration 004_synapses_schema
1158
+ 2026-02-27T11:01:17.784Z [info] Applying migration 005_fts_indexes
1159
+ 2026-02-27T11:01:17.785Z [info] Applying migration 006_synapses_phase3
1160
+ 2026-02-27T11:01:17.785Z [info] Applying migration 007_feedback
1161
+ 2026-02-27T11:01:17.786Z [info] Applying migration 008_git_integration
1162
+ 2026-02-27T11:01:17.787Z [info] Applying migration 009_embeddings
1163
+ 2026-02-27T11:01:17.788Z [info] Migrations complete. Now at version 9
1164
+ 2026-02-27T11:01:17.792Z [info] New error reported (id=1, type=Error)