superlocalmemory 3.4.5 → 3.4.8

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 (232) hide show
  1. package/ide/hooks/tool-event-hook.sh +46 -0
  2. package/package.json +1 -1
  3. package/pyproject.toml +1 -1
  4. package/src/superlocalmemory/attribution/mathematical_dna.py +1 -1
  5. package/src/superlocalmemory/attribution/signer.py +1 -1
  6. package/src/superlocalmemory/attribution/watermark.py +1 -1
  7. package/src/superlocalmemory/cli/__init__.py +1 -1
  8. package/src/superlocalmemory/cli/commands.py +9 -1
  9. package/src/superlocalmemory/cli/daemon.py +57 -27
  10. package/src/superlocalmemory/cli/ingest_cmd.py +261 -0
  11. package/src/superlocalmemory/cli/json_output.py +1 -1
  12. package/src/superlocalmemory/cli/main.py +21 -1
  13. package/src/superlocalmemory/cli/migrate_cmd.py +1 -1
  14. package/src/superlocalmemory/cli/pending_store.py +1 -1
  15. package/src/superlocalmemory/cli/post_install.py +1 -1
  16. package/src/superlocalmemory/cli/service_installer.py +1 -1
  17. package/src/superlocalmemory/cli/setup_wizard.py +1 -1
  18. package/src/superlocalmemory/code_graph/__init__.py +1 -1
  19. package/src/superlocalmemory/code_graph/blast_radius.py +1 -1
  20. package/src/superlocalmemory/code_graph/bridge/__init__.py +1 -1
  21. package/src/superlocalmemory/code_graph/bridge/entity_resolver.py +1 -1
  22. package/src/superlocalmemory/code_graph/bridge/event_listeners.py +1 -1
  23. package/src/superlocalmemory/code_graph/bridge/fact_enricher.py +1 -1
  24. package/src/superlocalmemory/code_graph/bridge/hebbian_linker.py +1 -1
  25. package/src/superlocalmemory/code_graph/bridge/temporal_checker.py +1 -1
  26. package/src/superlocalmemory/code_graph/changes.py +1 -1
  27. package/src/superlocalmemory/code_graph/communities.py +1 -1
  28. package/src/superlocalmemory/code_graph/config.py +1 -1
  29. package/src/superlocalmemory/code_graph/database.py +1 -1
  30. package/src/superlocalmemory/code_graph/extractors/__init__.py +1 -1
  31. package/src/superlocalmemory/code_graph/extractors/python.py +1 -1
  32. package/src/superlocalmemory/code_graph/extractors/typescript.py +1 -1
  33. package/src/superlocalmemory/code_graph/flows.py +1 -1
  34. package/src/superlocalmemory/code_graph/git_hooks.py +1 -1
  35. package/src/superlocalmemory/code_graph/graph_engine.py +1 -1
  36. package/src/superlocalmemory/code_graph/graph_store.py +1 -1
  37. package/src/superlocalmemory/code_graph/incremental.py +1 -1
  38. package/src/superlocalmemory/code_graph/models.py +1 -1
  39. package/src/superlocalmemory/code_graph/parser.py +1 -1
  40. package/src/superlocalmemory/code_graph/resolver.py +1 -1
  41. package/src/superlocalmemory/code_graph/search.py +1 -1
  42. package/src/superlocalmemory/code_graph/service.py +1 -1
  43. package/src/superlocalmemory/code_graph/watcher.py +1 -1
  44. package/src/superlocalmemory/compliance/abac.py +1 -1
  45. package/src/superlocalmemory/compliance/audit.py +1 -1
  46. package/src/superlocalmemory/compliance/eu_ai_act.py +1 -1
  47. package/src/superlocalmemory/compliance/gdpr.py +1 -1
  48. package/src/superlocalmemory/compliance/lifecycle.py +1 -1
  49. package/src/superlocalmemory/compliance/retention.py +1 -1
  50. package/src/superlocalmemory/compliance/scheduler.py +1 -1
  51. package/src/superlocalmemory/core/config.py +1 -1
  52. package/src/superlocalmemory/core/consolidation_engine.py +52 -1
  53. package/src/superlocalmemory/core/embedding_worker.py +1 -1
  54. package/src/superlocalmemory/core/embeddings.py +1 -1
  55. package/src/superlocalmemory/core/engine.py +17 -1
  56. package/src/superlocalmemory/core/engine_wiring.py +21 -1
  57. package/src/superlocalmemory/core/graph_analyzer.py +15 -1
  58. package/src/superlocalmemory/core/health_monitor.py +1 -1
  59. package/src/superlocalmemory/core/hooks.py +1 -1
  60. package/src/superlocalmemory/core/maintenance.py +1 -1
  61. package/src/superlocalmemory/core/maintenance_scheduler.py +1 -1
  62. package/src/superlocalmemory/core/modes.py +1 -1
  63. package/src/superlocalmemory/core/ollama_embedder.py +1 -1
  64. package/src/superlocalmemory/core/profiles.py +1 -1
  65. package/src/superlocalmemory/core/recall_pipeline.py +16 -3
  66. package/src/superlocalmemory/core/recall_worker.py +1 -1
  67. package/src/superlocalmemory/core/registry.py +1 -1
  68. package/src/superlocalmemory/core/reranker_worker.py +1 -1
  69. package/src/superlocalmemory/core/store_pipeline.py +1 -1
  70. package/src/superlocalmemory/core/summarizer.py +1 -1
  71. package/src/superlocalmemory/core/worker_pool.py +1 -1
  72. package/src/superlocalmemory/dynamics/activation_guided_quantization.py +1 -1
  73. package/src/superlocalmemory/dynamics/eap_scheduler.py +1 -1
  74. package/src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py +1 -1
  75. package/src/superlocalmemory/dynamics/fisher_langevin_coupling.py +1 -1
  76. package/src/superlocalmemory/encoding/auto_linker.py +1 -1
  77. package/src/superlocalmemory/encoding/cognitive_consolidator.py +1 -1
  78. package/src/superlocalmemory/encoding/consolidator.py +1 -1
  79. package/src/superlocalmemory/encoding/context_generator.py +1 -1
  80. package/src/superlocalmemory/encoding/emotional.py +1 -1
  81. package/src/superlocalmemory/encoding/entity_resolver.py +45 -6
  82. package/src/superlocalmemory/encoding/entropy_gate.py +1 -1
  83. package/src/superlocalmemory/encoding/fact_extractor.py +1 -1
  84. package/src/superlocalmemory/encoding/foresight.py +1 -1
  85. package/src/superlocalmemory/encoding/graph_builder.py +1 -1
  86. package/src/superlocalmemory/encoding/observation_builder.py +1 -1
  87. package/src/superlocalmemory/encoding/scene_builder.py +1 -1
  88. package/src/superlocalmemory/encoding/signal_inference.py +1 -1
  89. package/src/superlocalmemory/encoding/temporal_parser.py +1 -1
  90. package/src/superlocalmemory/encoding/temporal_validator.py +1 -1
  91. package/src/superlocalmemory/encoding/type_router.py +1 -1
  92. package/src/superlocalmemory/hooks/__init__.py +1 -1
  93. package/src/superlocalmemory/hooks/auto_capture.py +1 -1
  94. package/src/superlocalmemory/hooks/auto_invoker.py +1 -1
  95. package/src/superlocalmemory/hooks/auto_parameterize.py +1 -1
  96. package/src/superlocalmemory/hooks/auto_recall.py +1 -1
  97. package/src/superlocalmemory/hooks/claude_code_hooks.py +1 -1
  98. package/src/superlocalmemory/hooks/hook_handlers.py +1 -1
  99. package/src/superlocalmemory/hooks/ide_connector.py +1 -1
  100. package/src/superlocalmemory/hooks/rules_engine.py +1 -1
  101. package/src/superlocalmemory/infra/__init__.py +1 -1
  102. package/src/superlocalmemory/infra/auth_middleware.py +1 -1
  103. package/src/superlocalmemory/infra/backup.py +1 -1
  104. package/src/superlocalmemory/infra/cache_manager.py +1 -1
  105. package/src/superlocalmemory/infra/event_bus.py +1 -1
  106. package/src/superlocalmemory/infra/heartbeat_monitor.py +1 -1
  107. package/src/superlocalmemory/infra/pid_manager.py +1 -1
  108. package/src/superlocalmemory/infra/process_reaper.py +1 -1
  109. package/src/superlocalmemory/infra/rate_limiter.py +1 -1
  110. package/src/superlocalmemory/infra/webhook_dispatcher.py +1 -1
  111. package/src/superlocalmemory/ingestion/__init__.py +1 -1
  112. package/src/superlocalmemory/ingestion/adapter_manager.py +1 -1
  113. package/src/superlocalmemory/ingestion/base_adapter.py +1 -1
  114. package/src/superlocalmemory/ingestion/calendar_adapter.py +1 -1
  115. package/src/superlocalmemory/ingestion/credentials.py +1 -1
  116. package/src/superlocalmemory/ingestion/gmail_adapter.py +1 -1
  117. package/src/superlocalmemory/ingestion/parsers.py +1 -1
  118. package/src/superlocalmemory/ingestion/transcript_adapter.py +1 -1
  119. package/src/superlocalmemory/learning/adaptive.py +1 -1
  120. package/src/superlocalmemory/learning/assertion_miner.py +403 -0
  121. package/src/superlocalmemory/learning/behavioral.py +1 -1
  122. package/src/superlocalmemory/learning/behavioral_listener.py +1 -1
  123. package/src/superlocalmemory/learning/bootstrap.py +1 -1
  124. package/src/superlocalmemory/learning/consolidation_quantization_worker.py +1 -1
  125. package/src/superlocalmemory/learning/consolidation_worker.py +25 -9
  126. package/src/superlocalmemory/learning/cross_project.py +1 -1
  127. package/src/superlocalmemory/learning/database.py +1 -1
  128. package/src/superlocalmemory/learning/engagement.py +2 -3
  129. package/src/superlocalmemory/learning/entity_compiler.py +1 -1
  130. package/src/superlocalmemory/learning/features.py +1 -1
  131. package/src/superlocalmemory/learning/forgetting_scheduler.py +1 -1
  132. package/src/superlocalmemory/learning/outcomes.py +1 -1
  133. package/src/superlocalmemory/learning/project_context.py +1 -1
  134. package/src/superlocalmemory/learning/quantization_scheduler.py +1 -1
  135. package/src/superlocalmemory/learning/ranker.py +1 -1
  136. package/src/superlocalmemory/learning/signals.py +1 -1
  137. package/src/superlocalmemory/learning/workflows.py +1 -1
  138. package/src/superlocalmemory/llm/backbone.py +1 -1
  139. package/src/superlocalmemory/math/ebbinghaus.py +1 -1
  140. package/src/superlocalmemory/math/fisher.py +1 -1
  141. package/src/superlocalmemory/math/fisher_quantized.py +1 -1
  142. package/src/superlocalmemory/math/hopfield.py +1 -1
  143. package/src/superlocalmemory/math/langevin.py +1 -1
  144. package/src/superlocalmemory/math/polar_quant.py +1 -1
  145. package/src/superlocalmemory/math/qjl.py +1 -1
  146. package/src/superlocalmemory/math/sheaf.py +1 -1
  147. package/src/superlocalmemory/math/turbo_quant.py +1 -1
  148. package/src/superlocalmemory/mcp/resources.py +1 -1
  149. package/src/superlocalmemory/mcp/server.py +17 -2
  150. package/src/superlocalmemory/mcp/shared.py +1 -1
  151. package/src/superlocalmemory/mcp/tools.py +1 -1
  152. package/src/superlocalmemory/mcp/tools_active.py +1 -1
  153. package/src/superlocalmemory/mcp/tools_code_graph.py +1 -1
  154. package/src/superlocalmemory/mcp/tools_core.py +1 -1
  155. package/src/superlocalmemory/mcp/tools_learning.py +221 -0
  156. package/src/superlocalmemory/mcp/tools_mesh.py +55 -12
  157. package/src/superlocalmemory/mcp/tools_v28.py +23 -1
  158. package/src/superlocalmemory/mcp/tools_v3.py +1 -1
  159. package/src/superlocalmemory/mcp/tools_v33.py +1 -1
  160. package/src/superlocalmemory/mesh/__init__.py +1 -1
  161. package/src/superlocalmemory/mesh/broker.py +194 -38
  162. package/src/superlocalmemory/parameterization/__init__.py +1 -1
  163. package/src/superlocalmemory/parameterization/pattern_extractor.py +35 -1
  164. package/src/superlocalmemory/parameterization/pii_filter.py +1 -1
  165. package/src/superlocalmemory/parameterization/prompt_injector.py +3 -2
  166. package/src/superlocalmemory/parameterization/prompt_lifecycle.py +1 -1
  167. package/src/superlocalmemory/parameterization/soft_prompt_generator.py +7 -1
  168. package/src/superlocalmemory/retrieval/agentic.py +1 -1
  169. package/src/superlocalmemory/retrieval/ann_index.py +1 -1
  170. package/src/superlocalmemory/retrieval/bm25_channel.py +1 -1
  171. package/src/superlocalmemory/retrieval/bridge_discovery.py +1 -1
  172. package/src/superlocalmemory/retrieval/channel_registry.py +1 -1
  173. package/src/superlocalmemory/retrieval/engine.py +1 -1
  174. package/src/superlocalmemory/retrieval/entity_channel.py +1 -1
  175. package/src/superlocalmemory/retrieval/forgetting_filter.py +1 -1
  176. package/src/superlocalmemory/retrieval/fusion.py +1 -1
  177. package/src/superlocalmemory/retrieval/hopfield_channel.py +1 -1
  178. package/src/superlocalmemory/retrieval/profile_channel.py +1 -1
  179. package/src/superlocalmemory/retrieval/quantization_aware_search.py +1 -1
  180. package/src/superlocalmemory/retrieval/reranker.py +1 -1
  181. package/src/superlocalmemory/retrieval/semantic_channel.py +1 -1
  182. package/src/superlocalmemory/retrieval/spreading_activation.py +1 -1
  183. package/src/superlocalmemory/retrieval/strategy.py +1 -1
  184. package/src/superlocalmemory/retrieval/temporal_channel.py +1 -1
  185. package/src/superlocalmemory/retrieval/vector_store.py +1 -1
  186. package/src/superlocalmemory/server/api.py +1 -1
  187. package/src/superlocalmemory/server/routes/__init__.py +1 -1
  188. package/src/superlocalmemory/server/routes/adapters.py +1 -1
  189. package/src/superlocalmemory/server/routes/agents.py +2 -2
  190. package/src/superlocalmemory/server/routes/backup.py +2 -2
  191. package/src/superlocalmemory/server/routes/behavioral.py +129 -2
  192. package/src/superlocalmemory/server/routes/compliance.py +2 -2
  193. package/src/superlocalmemory/server/routes/data_io.py +2 -2
  194. package/src/superlocalmemory/server/routes/entity.py +1 -1
  195. package/src/superlocalmemory/server/routes/events.py +2 -2
  196. package/src/superlocalmemory/server/routes/helpers.py +2 -2
  197. package/src/superlocalmemory/server/routes/ingest.py +1 -1
  198. package/src/superlocalmemory/server/routes/learning.py +22 -5
  199. package/src/superlocalmemory/server/routes/lifecycle.py +2 -2
  200. package/src/superlocalmemory/server/routes/memories.py +2 -2
  201. package/src/superlocalmemory/server/routes/mesh.py +25 -7
  202. package/src/superlocalmemory/server/routes/profiles.py +2 -2
  203. package/src/superlocalmemory/server/routes/stats.py +26 -7
  204. package/src/superlocalmemory/server/routes/v3_api.py +1 -1
  205. package/src/superlocalmemory/server/routes/ws.py +2 -2
  206. package/src/superlocalmemory/server/ui.py +1 -1
  207. package/src/superlocalmemory/server/unified_daemon.py +42 -1
  208. package/src/superlocalmemory/storage/access_control.py +1 -1
  209. package/src/superlocalmemory/storage/access_log.py +1 -1
  210. package/src/superlocalmemory/storage/database.py +1 -1
  211. package/src/superlocalmemory/storage/embedding_migrator.py +1 -1
  212. package/src/superlocalmemory/storage/migration_v33.py +1 -1
  213. package/src/superlocalmemory/storage/migrations.py +1 -1
  214. package/src/superlocalmemory/storage/models.py +1 -1
  215. package/src/superlocalmemory/storage/quantized_store.py +1 -1
  216. package/src/superlocalmemory/storage/schema.py +1 -1
  217. package/src/superlocalmemory/storage/schema_code_graph.py +1 -1
  218. package/src/superlocalmemory/storage/schema_v32.py +1 -1
  219. package/src/superlocalmemory/storage/schema_v343.py +75 -1
  220. package/src/superlocalmemory/storage/schema_v347.py +136 -0
  221. package/src/superlocalmemory/storage/v2_migrator.py +1 -1
  222. package/src/superlocalmemory/trust/gate.py +1 -1
  223. package/src/superlocalmemory/trust/provenance.py +1 -1
  224. package/src/superlocalmemory/trust/scorer.py +1 -1
  225. package/src/superlocalmemory/trust/signals.py +1 -1
  226. package/src/superlocalmemory/ui/js/behavioral.js +174 -3
  227. package/src/superlocalmemory.egg-info/PKG-INFO +0 -601
  228. package/src/superlocalmemory.egg-info/SOURCES.txt +0 -313
  229. package/src/superlocalmemory.egg-info/dependency_links.txt +0 -1
  230. package/src/superlocalmemory.egg-info/entry_points.txt +0 -2
  231. package/src/superlocalmemory.egg-info/requires.txt +0 -55
  232. package/src/superlocalmemory.egg-info/top_level.txt +0 -1
@@ -1,313 +0,0 @@
1
- AUTHORS.md
2
- LICENSE
3
- NOTICE
4
- README.md
5
- pyproject.toml
6
- src/superlocalmemory/__init__.py
7
- src/superlocalmemory.egg-info/PKG-INFO
8
- src/superlocalmemory.egg-info/SOURCES.txt
9
- src/superlocalmemory.egg-info/dependency_links.txt
10
- src/superlocalmemory.egg-info/entry_points.txt
11
- src/superlocalmemory.egg-info/requires.txt
12
- src/superlocalmemory.egg-info/top_level.txt
13
- src/superlocalmemory/attribution/__init__.py
14
- src/superlocalmemory/attribution/mathematical_dna.py
15
- src/superlocalmemory/attribution/signer.py
16
- src/superlocalmemory/attribution/watermark.py
17
- src/superlocalmemory/cli/__init__.py
18
- src/superlocalmemory/cli/commands.py
19
- src/superlocalmemory/cli/daemon.py
20
- src/superlocalmemory/cli/json_output.py
21
- src/superlocalmemory/cli/main.py
22
- src/superlocalmemory/cli/migrate_cmd.py
23
- src/superlocalmemory/cli/pending_store.py
24
- src/superlocalmemory/cli/post_install.py
25
- src/superlocalmemory/cli/service_installer.py
26
- src/superlocalmemory/cli/setup_wizard.py
27
- src/superlocalmemory/code_graph/__init__.py
28
- src/superlocalmemory/code_graph/blast_radius.py
29
- src/superlocalmemory/code_graph/changes.py
30
- src/superlocalmemory/code_graph/communities.py
31
- src/superlocalmemory/code_graph/config.py
32
- src/superlocalmemory/code_graph/database.py
33
- src/superlocalmemory/code_graph/flows.py
34
- src/superlocalmemory/code_graph/git_hooks.py
35
- src/superlocalmemory/code_graph/graph_engine.py
36
- src/superlocalmemory/code_graph/graph_store.py
37
- src/superlocalmemory/code_graph/incremental.py
38
- src/superlocalmemory/code_graph/models.py
39
- src/superlocalmemory/code_graph/parser.py
40
- src/superlocalmemory/code_graph/resolver.py
41
- src/superlocalmemory/code_graph/search.py
42
- src/superlocalmemory/code_graph/service.py
43
- src/superlocalmemory/code_graph/watcher.py
44
- src/superlocalmemory/code_graph/bridge/__init__.py
45
- src/superlocalmemory/code_graph/bridge/entity_resolver.py
46
- src/superlocalmemory/code_graph/bridge/event_listeners.py
47
- src/superlocalmemory/code_graph/bridge/fact_enricher.py
48
- src/superlocalmemory/code_graph/bridge/hebbian_linker.py
49
- src/superlocalmemory/code_graph/bridge/temporal_checker.py
50
- src/superlocalmemory/code_graph/extractors/__init__.py
51
- src/superlocalmemory/code_graph/extractors/python.py
52
- src/superlocalmemory/code_graph/extractors/typescript.py
53
- src/superlocalmemory/compliance/__init__.py
54
- src/superlocalmemory/compliance/abac.py
55
- src/superlocalmemory/compliance/audit.py
56
- src/superlocalmemory/compliance/eu_ai_act.py
57
- src/superlocalmemory/compliance/gdpr.py
58
- src/superlocalmemory/compliance/lifecycle.py
59
- src/superlocalmemory/compliance/retention.py
60
- src/superlocalmemory/compliance/scheduler.py
61
- src/superlocalmemory/core/__init__.py
62
- src/superlocalmemory/core/config.py
63
- src/superlocalmemory/core/consolidation_engine.py
64
- src/superlocalmemory/core/embedding_worker.py
65
- src/superlocalmemory/core/embeddings.py
66
- src/superlocalmemory/core/engine.py
67
- src/superlocalmemory/core/engine_wiring.py
68
- src/superlocalmemory/core/graph_analyzer.py
69
- src/superlocalmemory/core/health_monitor.py
70
- src/superlocalmemory/core/hooks.py
71
- src/superlocalmemory/core/maintenance.py
72
- src/superlocalmemory/core/maintenance_scheduler.py
73
- src/superlocalmemory/core/modes.py
74
- src/superlocalmemory/core/ollama_embedder.py
75
- src/superlocalmemory/core/profiles.py
76
- src/superlocalmemory/core/recall_pipeline.py
77
- src/superlocalmemory/core/recall_worker.py
78
- src/superlocalmemory/core/registry.py
79
- src/superlocalmemory/core/reranker_worker.py
80
- src/superlocalmemory/core/store_pipeline.py
81
- src/superlocalmemory/core/summarizer.py
82
- src/superlocalmemory/core/worker_pool.py
83
- src/superlocalmemory/dynamics/__init__.py
84
- src/superlocalmemory/dynamics/activation_guided_quantization.py
85
- src/superlocalmemory/dynamics/eap_scheduler.py
86
- src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py
87
- src/superlocalmemory/dynamics/fisher_langevin_coupling.py
88
- src/superlocalmemory/encoding/__init__.py
89
- src/superlocalmemory/encoding/auto_linker.py
90
- src/superlocalmemory/encoding/cognitive_consolidator.py
91
- src/superlocalmemory/encoding/consolidator.py
92
- src/superlocalmemory/encoding/context_generator.py
93
- src/superlocalmemory/encoding/emotional.py
94
- src/superlocalmemory/encoding/entity_resolver.py
95
- src/superlocalmemory/encoding/entropy_gate.py
96
- src/superlocalmemory/encoding/fact_extractor.py
97
- src/superlocalmemory/encoding/foresight.py
98
- src/superlocalmemory/encoding/graph_builder.py
99
- src/superlocalmemory/encoding/observation_builder.py
100
- src/superlocalmemory/encoding/scene_builder.py
101
- src/superlocalmemory/encoding/signal_inference.py
102
- src/superlocalmemory/encoding/temporal_parser.py
103
- src/superlocalmemory/encoding/temporal_validator.py
104
- src/superlocalmemory/encoding/type_router.py
105
- src/superlocalmemory/hooks/__init__.py
106
- src/superlocalmemory/hooks/auto_capture.py
107
- src/superlocalmemory/hooks/auto_invoker.py
108
- src/superlocalmemory/hooks/auto_parameterize.py
109
- src/superlocalmemory/hooks/auto_recall.py
110
- src/superlocalmemory/hooks/claude_code_hooks.py
111
- src/superlocalmemory/hooks/hook_handlers.py
112
- src/superlocalmemory/hooks/ide_connector.py
113
- src/superlocalmemory/hooks/rules_engine.py
114
- src/superlocalmemory/infra/__init__.py
115
- src/superlocalmemory/infra/auth_middleware.py
116
- src/superlocalmemory/infra/backup.py
117
- src/superlocalmemory/infra/cache_manager.py
118
- src/superlocalmemory/infra/event_bus.py
119
- src/superlocalmemory/infra/heartbeat_monitor.py
120
- src/superlocalmemory/infra/pid_manager.py
121
- src/superlocalmemory/infra/process_reaper.py
122
- src/superlocalmemory/infra/rate_limiter.py
123
- src/superlocalmemory/infra/webhook_dispatcher.py
124
- src/superlocalmemory/ingestion/__init__.py
125
- src/superlocalmemory/ingestion/adapter_manager.py
126
- src/superlocalmemory/ingestion/base_adapter.py
127
- src/superlocalmemory/ingestion/calendar_adapter.py
128
- src/superlocalmemory/ingestion/credentials.py
129
- src/superlocalmemory/ingestion/gmail_adapter.py
130
- src/superlocalmemory/ingestion/parsers.py
131
- src/superlocalmemory/ingestion/transcript_adapter.py
132
- src/superlocalmemory/learning/__init__.py
133
- src/superlocalmemory/learning/adaptive.py
134
- src/superlocalmemory/learning/behavioral.py
135
- src/superlocalmemory/learning/behavioral_listener.py
136
- src/superlocalmemory/learning/bootstrap.py
137
- src/superlocalmemory/learning/consolidation_quantization_worker.py
138
- src/superlocalmemory/learning/consolidation_worker.py
139
- src/superlocalmemory/learning/cross_project.py
140
- src/superlocalmemory/learning/database.py
141
- src/superlocalmemory/learning/engagement.py
142
- src/superlocalmemory/learning/entity_compiler.py
143
- src/superlocalmemory/learning/features.py
144
- src/superlocalmemory/learning/feedback.py
145
- src/superlocalmemory/learning/forgetting_scheduler.py
146
- src/superlocalmemory/learning/outcomes.py
147
- src/superlocalmemory/learning/project_context.py
148
- src/superlocalmemory/learning/quantization_scheduler.py
149
- src/superlocalmemory/learning/ranker.py
150
- src/superlocalmemory/learning/signals.py
151
- src/superlocalmemory/learning/source_quality.py
152
- src/superlocalmemory/learning/workflows.py
153
- src/superlocalmemory/llm/__init__.py
154
- src/superlocalmemory/llm/backbone.py
155
- src/superlocalmemory/math/__init__.py
156
- src/superlocalmemory/math/ebbinghaus.py
157
- src/superlocalmemory/math/fisher.py
158
- src/superlocalmemory/math/fisher_quantized.py
159
- src/superlocalmemory/math/hopfield.py
160
- src/superlocalmemory/math/langevin.py
161
- src/superlocalmemory/math/polar_quant.py
162
- src/superlocalmemory/math/qjl.py
163
- src/superlocalmemory/math/sheaf.py
164
- src/superlocalmemory/math/turbo_quant.py
165
- src/superlocalmemory/mcp/__init__.py
166
- src/superlocalmemory/mcp/resources.py
167
- src/superlocalmemory/mcp/server.py
168
- src/superlocalmemory/mcp/shared.py
169
- src/superlocalmemory/mcp/tools.py
170
- src/superlocalmemory/mcp/tools_active.py
171
- src/superlocalmemory/mcp/tools_code_graph.py
172
- src/superlocalmemory/mcp/tools_core.py
173
- src/superlocalmemory/mcp/tools_mesh.py
174
- src/superlocalmemory/mcp/tools_v28.py
175
- src/superlocalmemory/mcp/tools_v3.py
176
- src/superlocalmemory/mcp/tools_v33.py
177
- src/superlocalmemory/mesh/__init__.py
178
- src/superlocalmemory/mesh/broker.py
179
- src/superlocalmemory/parameterization/__init__.py
180
- src/superlocalmemory/parameterization/pattern_extractor.py
181
- src/superlocalmemory/parameterization/pii_filter.py
182
- src/superlocalmemory/parameterization/prompt_injector.py
183
- src/superlocalmemory/parameterization/prompt_lifecycle.py
184
- src/superlocalmemory/parameterization/soft_prompt_generator.py
185
- src/superlocalmemory/retrieval/__init__.py
186
- src/superlocalmemory/retrieval/agentic.py
187
- src/superlocalmemory/retrieval/ann_index.py
188
- src/superlocalmemory/retrieval/bm25_channel.py
189
- src/superlocalmemory/retrieval/bridge_discovery.py
190
- src/superlocalmemory/retrieval/channel_registry.py
191
- src/superlocalmemory/retrieval/engine.py
192
- src/superlocalmemory/retrieval/entity_channel.py
193
- src/superlocalmemory/retrieval/forgetting_filter.py
194
- src/superlocalmemory/retrieval/fusion.py
195
- src/superlocalmemory/retrieval/hopfield_channel.py
196
- src/superlocalmemory/retrieval/profile_channel.py
197
- src/superlocalmemory/retrieval/quantization_aware_search.py
198
- src/superlocalmemory/retrieval/reranker.py
199
- src/superlocalmemory/retrieval/semantic_channel.py
200
- src/superlocalmemory/retrieval/spreading_activation.py
201
- src/superlocalmemory/retrieval/strategy.py
202
- src/superlocalmemory/retrieval/temporal_channel.py
203
- src/superlocalmemory/retrieval/vector_store.py
204
- src/superlocalmemory/server/__init__.py
205
- src/superlocalmemory/server/api.py
206
- src/superlocalmemory/server/security_middleware.py
207
- src/superlocalmemory/server/ui.py
208
- src/superlocalmemory/server/unified_daemon.py
209
- src/superlocalmemory/server/routes/__init__.py
210
- src/superlocalmemory/server/routes/adapters.py
211
- src/superlocalmemory/server/routes/agents.py
212
- src/superlocalmemory/server/routes/backup.py
213
- src/superlocalmemory/server/routes/behavioral.py
214
- src/superlocalmemory/server/routes/chat.py
215
- src/superlocalmemory/server/routes/compliance.py
216
- src/superlocalmemory/server/routes/data_io.py
217
- src/superlocalmemory/server/routes/entity.py
218
- src/superlocalmemory/server/routes/events.py
219
- src/superlocalmemory/server/routes/helpers.py
220
- src/superlocalmemory/server/routes/ingest.py
221
- src/superlocalmemory/server/routes/insights.py
222
- src/superlocalmemory/server/routes/learning.py
223
- src/superlocalmemory/server/routes/lifecycle.py
224
- src/superlocalmemory/server/routes/memories.py
225
- src/superlocalmemory/server/routes/mesh.py
226
- src/superlocalmemory/server/routes/profiles.py
227
- src/superlocalmemory/server/routes/stats.py
228
- src/superlocalmemory/server/routes/timeline.py
229
- src/superlocalmemory/server/routes/v3_api.py
230
- src/superlocalmemory/server/routes/ws.py
231
- src/superlocalmemory/storage/__init__.py
232
- src/superlocalmemory/storage/access_control.py
233
- src/superlocalmemory/storage/access_log.py
234
- src/superlocalmemory/storage/database.py
235
- src/superlocalmemory/storage/embedding_migrator.py
236
- src/superlocalmemory/storage/migration_v33.py
237
- src/superlocalmemory/storage/migrations.py
238
- src/superlocalmemory/storage/models.py
239
- src/superlocalmemory/storage/quantized_store.py
240
- src/superlocalmemory/storage/schema.py
241
- src/superlocalmemory/storage/schema_code_graph.py
242
- src/superlocalmemory/storage/schema_v32.py
243
- src/superlocalmemory/storage/schema_v343.py
244
- src/superlocalmemory/storage/v2_migrator.py
245
- src/superlocalmemory/trust/__init__.py
246
- src/superlocalmemory/trust/gate.py
247
- src/superlocalmemory/trust/provenance.py
248
- src/superlocalmemory/trust/scorer.py
249
- src/superlocalmemory/trust/signals.py
250
- src/superlocalmemory/ui/index.html
251
- src/superlocalmemory/ui/css/neural-glass.css
252
- src/superlocalmemory/ui/js/agents.js
253
- src/superlocalmemory/ui/js/auto-settings.js
254
- src/superlocalmemory/ui/js/behavioral.js
255
- src/superlocalmemory/ui/js/clusters.js
256
- src/superlocalmemory/ui/js/compliance.js
257
- src/superlocalmemory/ui/js/core.js
258
- src/superlocalmemory/ui/js/dashboard.js
259
- src/superlocalmemory/ui/js/events.js
260
- src/superlocalmemory/ui/js/fact-detail.js
261
- src/superlocalmemory/ui/js/feedback.js
262
- src/superlocalmemory/ui/js/graph-core.js
263
- src/superlocalmemory/ui/js/graph-event-bus.js
264
- src/superlocalmemory/ui/js/graph-filters.js
265
- src/superlocalmemory/ui/js/graph-interactions.js
266
- src/superlocalmemory/ui/js/graph-ui.js
267
- src/superlocalmemory/ui/js/ide-status.js
268
- src/superlocalmemory/ui/js/init.js
269
- src/superlocalmemory/ui/js/knowledge-graph.js
270
- src/superlocalmemory/ui/js/learning.js
271
- src/superlocalmemory/ui/js/lifecycle.js
272
- src/superlocalmemory/ui/js/math-health.js
273
- src/superlocalmemory/ui/js/memories.js
274
- src/superlocalmemory/ui/js/memory-chat.js
275
- src/superlocalmemory/ui/js/memory-timeline.js
276
- src/superlocalmemory/ui/js/modal.js
277
- src/superlocalmemory/ui/js/ng-entities.js
278
- src/superlocalmemory/ui/js/ng-health.js
279
- src/superlocalmemory/ui/js/ng-ingestion.js
280
- src/superlocalmemory/ui/js/ng-mesh.js
281
- src/superlocalmemory/ui/js/ng-shell.js
282
- src/superlocalmemory/ui/js/patterns.js
283
- src/superlocalmemory/ui/js/profiles.js
284
- src/superlocalmemory/ui/js/quick-actions.js
285
- src/superlocalmemory/ui/js/recall-lab.js
286
- src/superlocalmemory/ui/js/search.js
287
- src/superlocalmemory/ui/js/settings.js
288
- src/superlocalmemory/ui/js/timeline.js
289
- src/superlocalmemory/ui/js/trust-dashboard.js
290
- tests/test_auto_hooks.py
291
- tests/test_behavioral_full.py
292
- tests/test_claude_hooks.py
293
- tests/test_cli.py
294
- tests/test_cli_json.py
295
- tests/test_cli_v33.py
296
- tests/test_compliance_full.py
297
- tests/test_config_system.py
298
- tests/test_engine_hooks.py
299
- tests/test_event_bus.py
300
- tests/test_features.py
301
- tests/test_final_locomo_mini.py
302
- tests/test_hook_handlers.py
303
- tests/test_ide_connector.py
304
- tests/test_infra.py
305
- tests/test_learning_advanced.py
306
- tests/test_learning_collectors.py
307
- tests/test_llm_provider.py
308
- tests/test_mcp_server.py
309
- tests/test_migration.py
310
- tests/test_post_install.py
311
- tests/test_ranker.py
312
- tests/test_trust_full.py
313
- tests/test_v3_api.py
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- slm = superlocalmemory.cli.main:main
@@ -1,55 +0,0 @@
1
- httpx>=0.24.0
2
- numpy<3.0.0,>=1.26.0
3
- scipy<2.0.0,>=1.12.0
4
- networkx>=3.0
5
- mcp>=1.0.0
6
- python-dateutil>=2.9.0.post0
7
- rank-bm25>=0.2.2
8
- vadersentiment>=3.3.2
9
- einops>=0.8.2
10
- fastapi[all]>=0.135.1
11
- uvicorn>=0.42.0
12
- websockets>=16.0
13
- lightgbm>=4.0.0
14
- diskcache>=5.6.0
15
- orjson>=3.9.0
16
- tree-sitter<1,>=0.23.0
17
- tree-sitter-language-pack<2,>=0.3
18
- rustworkx<1,>=0.15
19
- watchdog<6,>=4.0
20
- psutil>=5.9.0
21
- structlog<27.0.0,>=24.0.0
22
-
23
- [dev]
24
- pytest>=8.0
25
- pytest-cov>=4.1
26
- sqlite-vec>=0.1.6
27
-
28
- [full]
29
- superlocalmemory[ingestion,learning,performance,search,ui]
30
-
31
- [ingestion]
32
- keyring>=25.0.0
33
- google-auth-oauthlib>=1.2.0
34
- google-api-python-client>=2.100.0
35
- icalendar>=6.0.0
36
-
37
- [learning]
38
- lightgbm>=4.0.0
39
-
40
- [performance]
41
- diskcache>=5.6.0
42
- orjson>=3.9.0
43
-
44
- [search]
45
- sentence-transformers[onnx]>=5.0.0
46
- einops>=0.8.2
47
- torch>=2.2.0
48
- scikit-learn<2.0.0,>=1.3.0
49
- geoopt>=0.5.0
50
- onnxruntime>=1.17.0
51
-
52
- [ui]
53
- fastapi[all]>=0.135.1
54
- uvicorn>=0.42.0
55
- python-multipart<1.0.0,>=0.0.6
@@ -1 +0,0 @@
1
- superlocalmemory