superlocalmemory 3.3.22 → 3.3.24

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 (272) hide show
  1. package/ATTRIBUTION.md +1 -1
  2. package/CHANGELOG.md +1 -1
  3. package/LICENSE +100 -30
  4. package/README.md +5 -5
  5. package/docs/ARCHITECTURE.md +1 -1
  6. package/docs/api-reference.md +1 -1
  7. package/docs/auto-memory.md +1 -1
  8. package/docs/cli-reference.md +1 -1
  9. package/docs/compliance.md +1 -1
  10. package/docs/configuration.md +1 -1
  11. package/docs/getting-started.md +1 -1
  12. package/docs/ide-setup.md +1 -1
  13. package/docs/mcp-tools.md +1 -1
  14. package/docs/migration-from-v2.md +1 -1
  15. package/docs/profiles.md +1 -1
  16. package/docs/troubleshooting.md +1 -1
  17. package/docs/v2-archive/ACCESSIBILITY.md +1 -1
  18. package/docs/v2-archive/FRAMEWORK-INTEGRATIONS.md +1 -1
  19. package/docs/v2-archive/MCP-MANUAL-SETUP.md +1 -1
  20. package/docs/v2-archive/SEARCH-ENGINE-V2.2.0.md +2 -2
  21. package/docs/v2-archive/SEARCH-INTEGRATION-GUIDE.md +1 -1
  22. package/docs/v2-archive/UNIVERSAL-INTEGRATION.md +1 -1
  23. package/docs/v2-archive/V2.2.0-OPTIONAL-SEARCH.md +1 -1
  24. package/docs/v2-archive/WINDOWS-INSTALL-README.txt +1 -1
  25. package/docs/v2-archive/example_graph_usage.py +1 -1
  26. package/ide/configs/codex-mcp.toml +1 -1
  27. package/ide/hooks/context-hook.js +1 -1
  28. package/ide/hooks/post-recall-hook.js +1 -1
  29. package/ide/integrations/langchain/README.md +1 -1
  30. package/ide/integrations/langchain/langchain_superlocalmemory/__init__.py +1 -1
  31. package/ide/integrations/langchain/langchain_superlocalmemory/chat_message_history.py +1 -1
  32. package/ide/integrations/langchain/pyproject.toml +2 -2
  33. package/ide/integrations/langchain/tests/__init__.py +1 -1
  34. package/ide/integrations/langchain/tests/test_chat_message_history.py +1 -1
  35. package/ide/integrations/langchain/tests/test_security.py +1 -1
  36. package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/__init__.py +1 -1
  37. package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/base.py +1 -1
  38. package/ide/integrations/llamaindex/pyproject.toml +2 -2
  39. package/ide/integrations/llamaindex/tests/__init__.py +1 -1
  40. package/ide/integrations/llamaindex/tests/test_chat_store.py +1 -1
  41. package/ide/integrations/llamaindex/tests/test_security.py +1 -1
  42. package/ide/skills/slm-build-graph/SKILL.md +3 -3
  43. package/ide/skills/slm-list-recent/SKILL.md +3 -3
  44. package/ide/skills/slm-recall/SKILL.md +3 -3
  45. package/ide/skills/slm-remember/SKILL.md +3 -3
  46. package/ide/skills/slm-show-patterns/SKILL.md +3 -3
  47. package/ide/skills/slm-status/SKILL.md +3 -3
  48. package/ide/skills/slm-switch-profile/SKILL.md +3 -3
  49. package/package.json +2 -2
  50. package/pyproject.toml +3 -3
  51. package/scripts/generate-thumbnails.py +1 -1
  52. package/scripts/postinstall.js +1 -1
  53. package/scripts/preuninstall.js +1 -1
  54. package/src/superlocalmemory/attribution/mathematical_dna.py +2 -2
  55. package/src/superlocalmemory/attribution/signer.py +2 -2
  56. package/src/superlocalmemory/attribution/watermark.py +2 -2
  57. package/src/superlocalmemory/cli/__init__.py +1 -1
  58. package/src/superlocalmemory/cli/commands.py +1 -1
  59. package/src/superlocalmemory/cli/daemon.py +2 -2
  60. package/src/superlocalmemory/cli/json_output.py +1 -1
  61. package/src/superlocalmemory/cli/main.py +1 -1
  62. package/src/superlocalmemory/cli/migrate_cmd.py +1 -1
  63. package/src/superlocalmemory/cli/pending_store.py +2 -2
  64. package/src/superlocalmemory/cli/post_install.py +1 -1
  65. package/src/superlocalmemory/cli/setup_wizard.py +1 -1
  66. package/src/superlocalmemory/code_graph/__init__.py +1 -1
  67. package/src/superlocalmemory/code_graph/blast_radius.py +1 -1
  68. package/src/superlocalmemory/code_graph/bridge/__init__.py +1 -1
  69. package/src/superlocalmemory/code_graph/bridge/entity_resolver.py +1 -1
  70. package/src/superlocalmemory/code_graph/bridge/event_listeners.py +1 -1
  71. package/src/superlocalmemory/code_graph/bridge/fact_enricher.py +1 -1
  72. package/src/superlocalmemory/code_graph/bridge/hebbian_linker.py +1 -1
  73. package/src/superlocalmemory/code_graph/bridge/temporal_checker.py +1 -1
  74. package/src/superlocalmemory/code_graph/changes.py +1 -1
  75. package/src/superlocalmemory/code_graph/communities.py +1 -1
  76. package/src/superlocalmemory/code_graph/config.py +1 -1
  77. package/src/superlocalmemory/code_graph/database.py +1 -1
  78. package/src/superlocalmemory/code_graph/extractors/__init__.py +1 -1
  79. package/src/superlocalmemory/code_graph/extractors/python.py +1 -1
  80. package/src/superlocalmemory/code_graph/extractors/typescript.py +1 -1
  81. package/src/superlocalmemory/code_graph/flows.py +1 -1
  82. package/src/superlocalmemory/code_graph/git_hooks.py +1 -1
  83. package/src/superlocalmemory/code_graph/graph_engine.py +1 -1
  84. package/src/superlocalmemory/code_graph/graph_store.py +1 -1
  85. package/src/superlocalmemory/code_graph/incremental.py +1 -1
  86. package/src/superlocalmemory/code_graph/models.py +1 -1
  87. package/src/superlocalmemory/code_graph/parser.py +1 -1
  88. package/src/superlocalmemory/code_graph/resolver.py +1 -1
  89. package/src/superlocalmemory/code_graph/search.py +1 -1
  90. package/src/superlocalmemory/code_graph/service.py +1 -1
  91. package/src/superlocalmemory/code_graph/watcher.py +1 -1
  92. package/src/superlocalmemory/compliance/abac.py +1 -1
  93. package/src/superlocalmemory/compliance/audit.py +1 -1
  94. package/src/superlocalmemory/compliance/eu_ai_act.py +1 -1
  95. package/src/superlocalmemory/compliance/gdpr.py +1 -1
  96. package/src/superlocalmemory/compliance/lifecycle.py +1 -1
  97. package/src/superlocalmemory/compliance/retention.py +1 -1
  98. package/src/superlocalmemory/compliance/scheduler.py +1 -1
  99. package/src/superlocalmemory/core/config.py +1 -1
  100. package/src/superlocalmemory/core/consolidation_engine.py +1 -1
  101. package/src/superlocalmemory/core/embedding_worker.py +1 -1
  102. package/src/superlocalmemory/core/embeddings.py +1 -1
  103. package/src/superlocalmemory/core/engine.py +1 -1
  104. package/src/superlocalmemory/core/engine_wiring.py +1 -1
  105. package/src/superlocalmemory/core/graph_analyzer.py +2 -2
  106. package/src/superlocalmemory/core/hooks.py +1 -1
  107. package/src/superlocalmemory/core/maintenance.py +2 -2
  108. package/src/superlocalmemory/core/maintenance_scheduler.py +2 -2
  109. package/src/superlocalmemory/core/modes.py +1 -1
  110. package/src/superlocalmemory/core/ollama_embedder.py +1 -1
  111. package/src/superlocalmemory/core/profiles.py +1 -1
  112. package/src/superlocalmemory/core/recall_pipeline.py +1 -1
  113. package/src/superlocalmemory/core/recall_worker.py +1 -1
  114. package/src/superlocalmemory/core/registry.py +2 -2
  115. package/src/superlocalmemory/core/reranker_worker.py +1 -1
  116. package/src/superlocalmemory/core/store_pipeline.py +1 -1
  117. package/src/superlocalmemory/core/summarizer.py +1 -1
  118. package/src/superlocalmemory/core/worker_pool.py +1 -1
  119. package/src/superlocalmemory/dynamics/activation_guided_quantization.py +2 -2
  120. package/src/superlocalmemory/dynamics/eap_scheduler.py +2 -2
  121. package/src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py +2 -2
  122. package/src/superlocalmemory/dynamics/fisher_langevin_coupling.py +2 -2
  123. package/src/superlocalmemory/encoding/auto_linker.py +2 -2
  124. package/src/superlocalmemory/encoding/cognitive_consolidator.py +2 -2
  125. package/src/superlocalmemory/encoding/consolidator.py +2 -2
  126. package/src/superlocalmemory/encoding/context_generator.py +1 -1
  127. package/src/superlocalmemory/encoding/emotional.py +1 -1
  128. package/src/superlocalmemory/encoding/entity_resolver.py +2 -2
  129. package/src/superlocalmemory/encoding/entropy_gate.py +1 -1
  130. package/src/superlocalmemory/encoding/fact_extractor.py +2 -2
  131. package/src/superlocalmemory/encoding/foresight.py +1 -1
  132. package/src/superlocalmemory/encoding/graph_builder.py +2 -2
  133. package/src/superlocalmemory/encoding/observation_builder.py +1 -1
  134. package/src/superlocalmemory/encoding/scene_builder.py +1 -1
  135. package/src/superlocalmemory/encoding/signal_inference.py +1 -1
  136. package/src/superlocalmemory/encoding/temporal_parser.py +1 -1
  137. package/src/superlocalmemory/encoding/temporal_validator.py +1 -1
  138. package/src/superlocalmemory/encoding/type_router.py +1 -1
  139. package/src/superlocalmemory/hooks/__init__.py +1 -1
  140. package/src/superlocalmemory/hooks/auto_capture.py +1 -1
  141. package/src/superlocalmemory/hooks/auto_invoker.py +1 -1
  142. package/src/superlocalmemory/hooks/auto_parameterize.py +1 -1
  143. package/src/superlocalmemory/hooks/auto_recall.py +1 -1
  144. package/src/superlocalmemory/hooks/claude_code_hooks.py +1 -1
  145. package/src/superlocalmemory/hooks/hook_handlers.py +1 -1
  146. package/src/superlocalmemory/hooks/ide_connector.py +1 -1
  147. package/src/superlocalmemory/hooks/rules_engine.py +1 -1
  148. package/src/superlocalmemory/infra/__init__.py +1 -1
  149. package/src/superlocalmemory/infra/auth_middleware.py +1 -1
  150. package/src/superlocalmemory/infra/backup.py +1 -1
  151. package/src/superlocalmemory/infra/cache_manager.py +1 -1
  152. package/src/superlocalmemory/infra/event_bus.py +1 -1
  153. package/src/superlocalmemory/infra/heartbeat_monitor.py +1 -1
  154. package/src/superlocalmemory/infra/pid_manager.py +1 -1
  155. package/src/superlocalmemory/infra/process_reaper.py +1 -1
  156. package/src/superlocalmemory/infra/rate_limiter.py +1 -1
  157. package/src/superlocalmemory/infra/webhook_dispatcher.py +1 -1
  158. package/src/superlocalmemory/learning/adaptive.py +1 -1
  159. package/src/superlocalmemory/learning/behavioral.py +1 -1
  160. package/src/superlocalmemory/learning/behavioral_listener.py +1 -1
  161. package/src/superlocalmemory/learning/bootstrap.py +1 -1
  162. package/src/superlocalmemory/learning/consolidation_quantization_worker.py +2 -2
  163. package/src/superlocalmemory/learning/consolidation_worker.py +1 -1
  164. package/src/superlocalmemory/learning/cross_project.py +1 -1
  165. package/src/superlocalmemory/learning/database.py +1 -1
  166. package/src/superlocalmemory/learning/engagement.py +1 -1
  167. package/src/superlocalmemory/learning/features.py +1 -1
  168. package/src/superlocalmemory/learning/feedback.py +1 -1
  169. package/src/superlocalmemory/learning/forgetting_scheduler.py +2 -2
  170. package/src/superlocalmemory/learning/outcomes.py +1 -1
  171. package/src/superlocalmemory/learning/project_context.py +1 -1
  172. package/src/superlocalmemory/learning/quantization_scheduler.py +2 -2
  173. package/src/superlocalmemory/learning/ranker.py +1 -1
  174. package/src/superlocalmemory/learning/signals.py +1 -1
  175. package/src/superlocalmemory/learning/source_quality.py +1 -1
  176. package/src/superlocalmemory/learning/workflows.py +1 -1
  177. package/src/superlocalmemory/llm/backbone.py +2 -2
  178. package/src/superlocalmemory/math/ebbinghaus.py +2 -2
  179. package/src/superlocalmemory/math/fisher.py +2 -2
  180. package/src/superlocalmemory/math/fisher_quantized.py +2 -2
  181. package/src/superlocalmemory/math/hopfield.py +2 -2
  182. package/src/superlocalmemory/math/langevin.py +2 -2
  183. package/src/superlocalmemory/math/polar_quant.py +2 -2
  184. package/src/superlocalmemory/math/qjl.py +2 -2
  185. package/src/superlocalmemory/math/sheaf.py +2 -2
  186. package/src/superlocalmemory/math/turbo_quant.py +2 -2
  187. package/src/superlocalmemory/mcp/resources.py +1 -1
  188. package/src/superlocalmemory/mcp/server.py +1 -1
  189. package/src/superlocalmemory/mcp/shared.py +1 -1
  190. package/src/superlocalmemory/mcp/tools.py +1 -1
  191. package/src/superlocalmemory/mcp/tools_active.py +1 -1
  192. package/src/superlocalmemory/mcp/tools_code_graph.py +1 -1
  193. package/src/superlocalmemory/mcp/tools_core.py +2 -2
  194. package/src/superlocalmemory/mcp/tools_v28.py +1 -1
  195. package/src/superlocalmemory/mcp/tools_v3.py +1 -1
  196. package/src/superlocalmemory/mcp/tools_v33.py +1 -1
  197. package/src/superlocalmemory/parameterization/__init__.py +1 -1
  198. package/src/superlocalmemory/parameterization/pattern_extractor.py +1 -1
  199. package/src/superlocalmemory/parameterization/pii_filter.py +1 -1
  200. package/src/superlocalmemory/parameterization/prompt_injector.py +1 -1
  201. package/src/superlocalmemory/parameterization/prompt_lifecycle.py +1 -1
  202. package/src/superlocalmemory/parameterization/soft_prompt_generator.py +1 -1
  203. package/src/superlocalmemory/retrieval/agentic.py +2 -2
  204. package/src/superlocalmemory/retrieval/ann_index.py +2 -2
  205. package/src/superlocalmemory/retrieval/bm25_channel.py +2 -2
  206. package/src/superlocalmemory/retrieval/bridge_discovery.py +2 -2
  207. package/src/superlocalmemory/retrieval/channel_registry.py +1 -1
  208. package/src/superlocalmemory/retrieval/engine.py +2 -2
  209. package/src/superlocalmemory/retrieval/entity_channel.py +2 -2
  210. package/src/superlocalmemory/retrieval/forgetting_filter.py +2 -2
  211. package/src/superlocalmemory/retrieval/fusion.py +2 -2
  212. package/src/superlocalmemory/retrieval/hopfield_channel.py +2 -2
  213. package/src/superlocalmemory/retrieval/profile_channel.py +2 -2
  214. package/src/superlocalmemory/retrieval/quantization_aware_search.py +2 -2
  215. package/src/superlocalmemory/retrieval/reranker.py +2 -2
  216. package/src/superlocalmemory/retrieval/semantic_channel.py +2 -2
  217. package/src/superlocalmemory/retrieval/spreading_activation.py +2 -2
  218. package/src/superlocalmemory/retrieval/strategy.py +2 -2
  219. package/src/superlocalmemory/retrieval/temporal_channel.py +2 -2
  220. package/src/superlocalmemory/retrieval/vector_store.py +2 -2
  221. package/src/superlocalmemory/server/api.py +1 -1
  222. package/src/superlocalmemory/server/routes/__init__.py +1 -1
  223. package/src/superlocalmemory/server/routes/agents.py +2 -2
  224. package/src/superlocalmemory/server/routes/backup.py +2 -2
  225. package/src/superlocalmemory/server/routes/behavioral.py +2 -2
  226. package/src/superlocalmemory/server/routes/compliance.py +2 -2
  227. package/src/superlocalmemory/server/routes/data_io.py +2 -2
  228. package/src/superlocalmemory/server/routes/events.py +2 -2
  229. package/src/superlocalmemory/server/routes/helpers.py +2 -2
  230. package/src/superlocalmemory/server/routes/learning.py +2 -2
  231. package/src/superlocalmemory/server/routes/lifecycle.py +2 -2
  232. package/src/superlocalmemory/server/routes/memories.py +2 -2
  233. package/src/superlocalmemory/server/routes/profiles.py +2 -2
  234. package/src/superlocalmemory/server/routes/stats.py +2 -2
  235. package/src/superlocalmemory/server/routes/v3_api.py +1 -1
  236. package/src/superlocalmemory/server/routes/ws.py +2 -2
  237. package/src/superlocalmemory/server/security_middleware.py +1 -1
  238. package/src/superlocalmemory/server/ui.py +1 -1
  239. package/src/superlocalmemory/storage/access_control.py +1 -1
  240. package/src/superlocalmemory/storage/access_log.py +2 -2
  241. package/src/superlocalmemory/storage/database.py +1 -1
  242. package/src/superlocalmemory/storage/embedding_migrator.py +1 -1
  243. package/src/superlocalmemory/storage/migration_v33.py +2 -2
  244. package/src/superlocalmemory/storage/migrations.py +1 -1
  245. package/src/superlocalmemory/storage/models.py +1 -1
  246. package/src/superlocalmemory/storage/quantized_store.py +2 -2
  247. package/src/superlocalmemory/storage/schema.py +1 -1
  248. package/src/superlocalmemory/storage/schema_code_graph.py +1 -1
  249. package/src/superlocalmemory/storage/schema_v32.py +1 -1
  250. package/src/superlocalmemory/storage/v2_migrator.py +1 -1
  251. package/src/superlocalmemory/trust/gate.py +1 -1
  252. package/src/superlocalmemory/trust/provenance.py +1 -1
  253. package/src/superlocalmemory/trust/scorer.py +1 -1
  254. package/src/superlocalmemory/trust/signals.py +1 -1
  255. package/src/superlocalmemory/ui/js/behavioral.js +1 -1
  256. package/src/superlocalmemory/ui/js/compliance.js +1 -1
  257. package/src/superlocalmemory/ui/js/feedback.js +1 -1
  258. package/src/superlocalmemory/ui/js/graph-core.js +1 -1
  259. package/src/superlocalmemory/ui/js/graph-filters.js +1 -1
  260. package/src/superlocalmemory/ui/js/graph-interactions.js +1 -1
  261. package/src/superlocalmemory/ui/js/graph-ui.js +1 -1
  262. package/src/superlocalmemory/ui/js/learning.js +1 -1
  263. package/src/superlocalmemory/ui/js/lifecycle.js +1 -1
  264. package/ui/js/behavioral.js +1 -1
  265. package/ui/js/compliance.js +1 -1
  266. package/ui/js/feedback.js +1 -1
  267. package/ui/js/graph-core.js +1 -1
  268. package/ui/js/graph-filters.js +1 -1
  269. package/ui/js/graph-interactions.js +1 -1
  270. package/ui/js/graph-ui.js +1 -1
  271. package/ui/js/learning.js +1 -1
  272. package/ui/js/lifecycle.js +1 -1
package/ATTRIBUTION.md CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  ### License
14
14
 
15
- This software is licensed under the MIT License. See [LICENSE](LICENSE) for full terms.
15
+ This software is licensed under the Elastic License 2.0. See [LICENSE](LICENSE) for full terms.
16
16
 
17
17
  ### Output Attribution
18
18
 
package/CHANGELOG.md CHANGED
@@ -443,7 +443,7 @@ We use [Semantic Versioning](https://semver.org/):
443
443
 
444
444
  ## License
445
445
 
446
- SuperLocalMemory V3 is released under the [MIT License](LICENSE).
446
+ SuperLocalMemory V3 is released under the [Elastic License 2.0](LICENSE).
447
447
 
448
448
  ---
449
449
 
package/LICENSE CHANGED
@@ -1,30 +1,100 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- ATTRIBUTION NOTICE:
16
- This software contains novel mathematical methods described in:
17
- - arXiv:2603.14588 (SuperLocalMemory V3 — Information-Geometric Foundations)
18
- - arXiv:2603.02240 (SuperLocalMemory V2 Bayesian Trust Defense)
19
- - Zenodo DOI: 10.5281/zenodo.19038659 (SuperLocalMemory V3)
20
-
21
- Academic use MUST cite the relevant paper.
22
- Commercial use MUST retain this notice, the NOTICE file, and visible attribution.
23
-
24
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
- SOFTWARE.
1
+ Elastic License 2.0
2
+
3
+ URL: https://www.elastic.co/licensing/elastic-license
4
+
5
+ ## Acceptance
6
+
7
+ By using the software, you agree to all of the terms and conditions below.
8
+
9
+ ## Copyright License
10
+
11
+ The licensor grants you a non-exclusive, royalty-free, worldwide,
12
+ non-sublicensable, non-transferable license to use, copy, distribute, make
13
+ available, and prepare derivative works of the software, in each case subject
14
+ to the limitations and conditions below.
15
+
16
+ ## Limitations
17
+
18
+ You may not provide the software to third parties as a hosted or managed
19
+ service, where the service provides users with access to any substantial set
20
+ of the features or functionality of the software.
21
+
22
+ You may not move, change, disable, or circumvent the license key functionality
23
+ in the software, and you may not remove or obscure any functionality in the
24
+ software that is protected by the license key.
25
+
26
+ You may not alter, remove, or obscure any licensing, copyright, or other
27
+ notices of the licensor in the software. Any use of the licensor's trademarks
28
+ is subject to applicable law.
29
+
30
+ ## Patents
31
+
32
+ The licensor grants you a license, under any patent claims the licensor can
33
+ license, or becomes able to license, to make, have made, use, sell, offer for
34
+ sale, import and have imported the software, in each case subject to the
35
+ limitations and conditions in this license. This license does not cover any
36
+ patent claims that you cause to be infringed by modifications or additions to
37
+ the software. If you or your company make any written claim that the software
38
+ infringes or contributes to infringement of any patent, your patent license
39
+ for the software granted under these terms ends immediately. If your company
40
+ makes such a claim, your patent license ends immediately for work on behalf
41
+ of your company.
42
+
43
+ ## Notices
44
+
45
+ You must ensure that anyone who gets a copy of any part of the software from
46
+ you also gets a copy of these terms.
47
+
48
+ If you modify the software, you must include in any modified copies of the
49
+ software prominent notices stating that you have modified the software.
50
+
51
+ ## No Other Rights
52
+
53
+ These terms do not imply any licenses other than those expressly granted in
54
+ these terms.
55
+
56
+ ## Termination
57
+
58
+ If you use the software in violation of these terms, such use is not licensed,
59
+ and your licenses will automatically terminate. If the licensor provides you
60
+ with a notice of your violation, and you cease all violation of this license
61
+ no later than 30 days after you receive that notice, your licenses will be
62
+ reinstated retroactively. However, if you violate these terms after such
63
+ reinstatement, any additional violation of these terms will cause your
64
+ licenses to terminate automatically and permanently.
65
+
66
+ ## No Liability
67
+
68
+ *As far as the law allows, the software comes as is, without any warranty or
69
+ condition, and the licensor will not be liable to you for any damages arising
70
+ out of these terms or the use or nature of the software, under any kind of
71
+ legal claim.*
72
+
73
+ ## Definitions
74
+
75
+ The **licensor** is the entity offering these terms, and the **software** is
76
+ the software the licensor makes available under these terms, including any
77
+ portion of it.
78
+
79
+ **You** refers to the individual or entity agreeing to these terms.
80
+
81
+ **Your company** is any legal entity, sole proprietorship, or other kind of
82
+ organization that you work for, plus all organizations that have control over,
83
+ are under the control of, or are under common control with that organization.
84
+ **Control** means ownership of substantially all the assets of an entity, or
85
+ the power to direct its management and policies by vote, contract, or
86
+ otherwise. Control can be direct or indirect.
87
+
88
+ **Your licenses** are all the licenses granted to you for the software under
89
+ these terms.
90
+
91
+ **Use** means anything you do with the software requiring one of your
92
+ licenses.
93
+
94
+ **Trademark** means trademarks, service marks, and similar rights.
95
+
96
+ ---
97
+
98
+ Copyright (c) 2026 Varun Pratap Bhardwaj
99
+ Qualixar — Independent Research Initiative
100
+ https://qualixar.com | https://varunpratap.com
package/README.md CHANGED
@@ -14,7 +14,7 @@
14
14
  <a href="https://arxiv.org/abs/2603.14588"><img src="https://img.shields.io/badge/arXiv-2603.14588-b31b1b?style=for-the-badge&logo=arxiv&logoColor=white" alt="arXiv Paper"/></a>
15
15
  <a href="https://pypi.org/project/superlocalmemory/"><img src="https://img.shields.io/pypi/v/superlocalmemory?style=for-the-badge&logo=pypi&logoColor=white" alt="PyPI"/></a>
16
16
  <a href="https://www.npmjs.com/package/superlocalmemory"><img src="https://img.shields.io/npm/v/superlocalmemory?style=for-the-badge&logo=npm&logoColor=white" alt="npm"/></a>
17
- <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green?style=for-the-badge" alt="MIT License"/></a>
17
+ <a href="LICENSE"><img src="https://img.shields.io/badge/license-Elastic%202.0-blue?style=for-the-badge" alt="Elastic License 2.0"/></a>
18
18
  <a href="#eu-ai-act-compliance"><img src="https://img.shields.io/badge/EU_AI_Act-Compliant-brightgreen?style=for-the-badge" alt="EU AI Act"/></a>
19
19
  <a href="https://superlocalmemory.com"><img src="https://img.shields.io/badge/Web-superlocalmemory.com-ff6b35?style=for-the-badge" alt="Website"/></a>
20
20
  <a href="#dual-interface-mcp--cli"><img src="https://img.shields.io/badge/MCP-Native-blue?style=for-the-badge" alt="MCP Native"/></a>
@@ -35,9 +35,9 @@ SuperLocalMemory V3 takes a different approach: **mathematics instead of cloud c
35
35
  |:-------|:-----:|:--------------:|:-----------:|:-------:|
36
36
  | EverMemOS | 92.3% | Yes | No | — |
37
37
  | Hindsight | 89.6% | Yes | No | — |
38
- | **SLM V3 Mode C** | **87.7%** | Optional | **Yes (MIT)** | $0 |
38
+ | **SLM V3 Mode C** | **87.7%** | Optional | **Yes (EL2)** | $0 |
39
39
  | Zep v3 | 85.2% | Yes | Deprecated | $35M |
40
- | **SLM V3 Mode A** | **74.8%** | **No** | **Yes (MIT)** | $0 |
40
+ | **SLM V3 Mode A** | **74.8%** | **No** | **Yes (EL2)** | $0 |
41
41
  | Mem0 | 64.2% | Yes | Partial | $24M |
42
42
 
43
43
  Mode A scores **74.8% with zero cloud dependency** — outperforming Mem0 by 16 percentage points without a single API call. On open-domain questions, Mode A scores **85.0% — the highest of any system in the evaluation**, including cloud-powered ones. Mode C reaches **87.7%**, matching enterprise cloud systems.
@@ -399,7 +399,7 @@ Auto-capture hooks: `slm hooks install` + `slm observe` + `slm session-context`.
399
399
  - 17+ IDE integrations (Claude, Cursor, Windsurf, VS Code, JetBrains, Zed, etc.)
400
400
  - 35 MCP tools + 7 MCP resources
401
401
  - Profile isolation (independent memory spaces)
402
- - 1400+ tests, MIT license, cross-platform (Mac/Linux/Windows)
402
+ - 1400+ tests, Elastic License 2.0, cross-platform (Mac/Linux/Windows)
403
403
  - CPU-only — no GPU required
404
404
  - Automatic orphaned process cleanup
405
405
 
@@ -485,7 +485,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. [Wiki](https://github.com
485
485
 
486
486
  ## License
487
487
 
488
- MIT License. See [LICENSE](LICENSE).
488
+ Elastic License 2.0. See [LICENSE](LICENSE). Previously MIT — changed April 2026 to protect research IP while keeping the project open for use and contributions.
489
489
 
490
490
  ## Attribution
491
491
 
@@ -146,4 +146,4 @@ Key table groups:
146
146
 
147
147
  ---
148
148
 
149
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
149
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -281,4 +281,4 @@ engine = MemoryEngine(SLMConfig())
281
281
 
282
282
  ---
283
283
 
284
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
284
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -147,4 +147,4 @@ Auto-capture and auto-recall happen entirely within SLM on your machine. In Mode
147
147
 
148
148
  ---
149
149
 
150
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
150
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -324,4 +324,4 @@ slm remember "CI/CD via GitHub Actions, deploys on merge to main"
324
324
 
325
325
  ---
326
326
 
327
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
327
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -188,4 +188,4 @@ SuperLocalMemory supports SOC 2 requirements through:
188
188
 
189
189
  ---
190
190
 
191
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
191
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -179,4 +179,4 @@ export SLM_DATA_DIR="/path/to/your/data"
179
179
 
180
180
  ---
181
181
 
182
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
182
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -99,4 +99,4 @@ You can still use `slm remember` and `slm recall` from the terminal whenever you
99
99
 
100
100
  ---
101
101
 
102
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
102
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
package/docs/ide-setup.md CHANGED
@@ -258,4 +258,4 @@ Each IDE has its own config file. They do not conflict. All IDEs share the same
258
258
 
259
259
  ---
260
260
 
261
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
261
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
package/docs/mcp-tools.md CHANGED
@@ -217,4 +217,4 @@ MCP resources provide read-only data that AI assistants can access passively.
217
217
 
218
218
  ---
219
219
 
220
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
220
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -167,4 +167,4 @@ The V3 schema adds approximately 20-40% to database size due to the entity graph
167
167
 
168
168
  ---
169
169
 
170
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
170
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
package/docs/profiles.md CHANGED
@@ -170,4 +170,4 @@ The entity graph, BM25 index, and all math layer state are also per-profile. Bui
170
170
 
171
171
  ---
172
172
 
173
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
173
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -307,4 +307,4 @@ If none of the above resolves your issue:
307
307
 
308
308
  ---
309
309
 
310
- *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. MIT License. Part of Qualixar.*
310
+ *SuperLocalMemory V3 — Copyright 2026 Varun Pratap Bhardwaj. Elastic License 2.0. Part of Qualixar.*
@@ -288,4 +288,4 @@ If you encounter accessibility issues, please report them:
288
288
 
289
289
  ---
290
290
 
291
- **Copyright © 2026 Varun Pratap Bhardwaj - MIT License**
291
+ **Copyright © 2026 Varun Pratap Bhardwaj - Elastic License 2.0**
@@ -296,5 +296,5 @@ superlocalmemoryv2-profile create work
296
296
 
297
297
  <p align="center">
298
298
  <strong>Built by <a href="https://github.com/varun369">Varun Pratap Bhardwaj</a></strong><br/>
299
- MIT License • <a href="https://superlocalmemory.com">superlocalmemory.com</a>
299
+ Elastic License 2.0 • <a href="https://superlocalmemory.com">superlocalmemory.com</a>
300
300
  </p>
@@ -772,4 +772,4 @@ Plus **2 MCP prompts** and **6 MCP resources** for advanced use.
772
772
  **100% local. 100% private. Works everywhere.**
773
773
 
774
774
  SuperLocalMemory V2 - by Varun Pratap Bhardwaj
775
- Licensed under MIT License
775
+ Licensed under Elastic License 2.0
@@ -738,9 +738,9 @@ cache = CacheManager(
738
738
 
739
739
  ## License
740
740
 
741
- MIT License - See [LICENSE](../LICENSE) file
741
+ Elastic License 2.0 - See [LICENSE](../LICENSE) file
742
742
 
743
- **Attribution Required:** This notice must be preserved in all copies per MIT License terms.
743
+ **Attribution Required:** This notice must be preserved in all copies per Elastic License 2.0 terms.
744
744
 
745
745
  ---
746
746
 
@@ -499,4 +499,4 @@ pip install scikit-learn numpy
499
499
  ---
500
500
 
501
501
  **Created by:** Varun Pratap Bhardwaj
502
- **License:** MIT
502
+ **License:** Elastic License 2.0
@@ -485,4 +485,4 @@ python3 ~/.superlocalmemory/mcp_server.py --transport http --port 8001
485
485
 
486
486
  **Version:** 2.4.1
487
487
  **Author:** Varun Pratap Bhardwaj
488
- **License:** MIT
488
+ **License:** Elastic License 2.0
@@ -649,7 +649,7 @@ index = HNSWIndex(
649
649
  - scikit-learn: TF-IDF fallback
650
650
  - PyTorch: GPU acceleration
651
651
 
652
- **License:** MIT License
652
+ **License:** Elastic License 2.0
653
653
 
654
654
  ---
655
655
 
@@ -31,4 +31,4 @@ Documentation:
31
31
  • Issues: https://github.com/varun369/SuperLocalMemoryV2/issues
32
32
 
33
33
  Copyright (c) 2026 Varun Pratap Bhardwaj
34
- Licensed under MIT License
34
+ Licensed under Elastic License 2.0
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  """SuperLocalMemory V2 - example_graph_usage.py
5
5
 
@@ -1,6 +1,6 @@
1
1
  # SuperLocalMemory V3 - Codex CLI MCP Configuration
2
2
  # Copyright (c) 2026 Varun Pratap Bhardwaj
3
- # Licensed under MIT License
3
+ # Licensed under Elastic License 2.0
4
4
  #
5
5
  # Auto-configured by install.sh or use: codex mcp add
6
6
  # Manual: Copy this to ~/.codex/config.toml
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * SuperLocalMemory V3 - Session Start Context Hook
4
4
  * Copyright (c) 2026 Varun Pratap Bhardwaj
5
- * Licensed under MIT License
5
+ * Licensed under Elastic License 2.0
6
6
  *
7
7
  * Loads recent memories and learned patterns on Claude Code session start.
8
8
  * Outputs context to stderr (Claude Code reads hook stderr as context).
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * SuperLocalMemory V3 - Post-Recall Hook
4
4
  * Copyright (c) 2026 Varun Pratap Bhardwaj
5
- * Licensed under MIT License
5
+ * Licensed under Elastic License 2.0
6
6
  *
7
7
  * Claude Code hook that tracks recall events for implicit signal collection.
8
8
  * This hook fires after the slm-recall skill completes, recording timing
@@ -97,7 +97,7 @@ This means your LangChain conversations are visible in the SLM dashboard, search
97
97
 
98
98
  ## License
99
99
 
100
- MIT -- see [LICENSE](../../LICENSE) for details.
100
+ Elastic License 2.0 -- see [LICENSE](../../LICENSE) for details.
101
101
 
102
102
  ## Links
103
103
 
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  from langchain_superlocalmemory.chat_message_history import (
5
5
  SuperLocalMemoryChatMessageHistory,
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  """SuperLocalMemory V2 - LangChain Chat Message History
5
5
 
@@ -7,7 +7,7 @@ name = "langchain-superlocalmemory"
7
7
  version = "0.1.0"
8
8
  description = "LangChain chat message history backed by SuperLocalMemory — 100% local, zero cloud"
9
9
  readme = "README.md"
10
- license = "MIT"
10
+ license = "Elastic-2.0"
11
11
  requires-python = ">=3.10"
12
12
  authors = [
13
13
  { name = "Varun Pratap Bhardwaj" },
@@ -16,7 +16,7 @@ keywords = ["langchain", "memory", "local-first", "privacy", "sqlite", "chat-his
16
16
  classifiers = [
17
17
  "Development Status :: 4 - Beta",
18
18
  "Intended Audience :: Developers",
19
- "License :: OSI Approved :: MIT License",
19
+ "License :: OSI Approved :: Elastic License 2.0",
20
20
  "Programming Language :: Python :: 3",
21
21
  "Programming Language :: Python :: 3.10",
22
22
  "Programming Language :: Python :: 3.11",
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  """SuperLocalMemory V2 - LangChain Chat Message History Tests
5
5
 
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  """SuperLocalMemory V2 - LangChain Integration Security Tests
5
5
 
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  from llama_index.storage.chat_store.superlocalmemory.base import (
5
5
  SuperLocalMemoryChatStore,
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  """SuperLocalMemory V2 - LlamaIndex Chat Store Backend
5
5
 
@@ -7,7 +7,7 @@ name = "llama-index-storage-chat-store-superlocalmemory"
7
7
  version = "0.1.0"
8
8
  description = "LlamaIndex chat store backed by SuperLocalMemory — 100% local, zero cloud"
9
9
  readme = "README.md"
10
- license = "MIT"
10
+ license = "Elastic-2.0"
11
11
  requires-python = ">=3.9"
12
12
  authors = [
13
13
  { name = "Varun Pratap Bhardwaj" },
@@ -16,7 +16,7 @@ keywords = ["llamaindex", "llama-index", "memory", "local-first", "privacy", "sq
16
16
  classifiers = [
17
17
  "Development Status :: 4 - Beta",
18
18
  "Intended Audience :: Developers",
19
- "License :: OSI Approved :: MIT License",
19
+ "License :: OSI Approved :: Elastic License 2.0",
20
20
  "Programming Language :: Python :: 3",
21
21
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
22
22
  ]
@@ -1,3 +1,3 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  """SuperLocalMemory V2 - LlamaIndex Chat Store Tests
5
5
 
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: MIT
2
+ # SPDX-License-Identifier: Elastic-2.0
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
4
4
  """SuperLocalMemory V2 - LlamaIndex Chat Store Security Tests
5
5
 
@@ -2,7 +2,7 @@
2
2
  name: slm-build-graph
3
3
  description: Build or rebuild the knowledge graph from existing memories using TF-IDF entity extraction and Leiden clustering. Use when search results seem poor, after bulk imports, or to optimize performance. Automatically discovers relationships between memories and creates topic clusters.
4
4
  version: "3.0.0"
5
- license: MIT
5
+ license: Elastic-2.0
6
6
  compatibility: "Requires SuperLocalMemory V3 installed at ~/.superlocalmemory/, optional dependencies: python-igraph, leidenalg"
7
7
  attribution:
8
8
  creator: Varun Pratap Bhardwaj
@@ -417,7 +417,7 @@ Each profile has separate graph
417
417
 
418
418
  **Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
419
419
  **Project:** SuperLocalMemory V3
420
- **License:** MIT (see [LICENSE](../../LICENSE))
420
+ **License:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
421
421
  **Repository:** https://github.com/qualixar/superlocalmemory
422
422
 
423
- *Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
423
+ *Open source doesn't mean removing credit. Attribution must be preserved per Elastic License 2.0 terms.*
@@ -2,7 +2,7 @@
2
2
  name: slm-list-recent
3
3
  description: List most recent memories in chronological order. Use when the user wants to see what was recently saved, review recent conversations, check what they worked on today, or browse memory history. Shows memories sorted by creation time (newest first).
4
4
  version: "3.0.0"
5
- license: MIT
5
+ license: Elastic-2.0
6
6
  compatibility: "Requires SuperLocalMemory V3 installed at ~/.superlocalmemory/"
7
7
  attribution:
8
8
  creator: Varun Pratap Bhardwaj
@@ -342,7 +342,7 @@ date
342
342
 
343
343
  **Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
344
344
  **Project:** SuperLocalMemory V3
345
- **License:** MIT (see [LICENSE](../../LICENSE))
345
+ **License:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
346
346
  **Repository:** https://github.com/qualixar/superlocalmemory
347
347
 
348
- *Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
348
+ *Open source doesn't mean removing credit. Attribution must be preserved per Elastic License 2.0 terms.*
@@ -2,7 +2,7 @@
2
2
  name: slm-recall
3
3
  description: Search and retrieve memories using semantic similarity, knowledge graph relationships, and full-text search. Use when the user asks to recall information, search memories, find past decisions, or query stored knowledge. Returns ranked results with relevance scores.
4
4
  version: "3.0.0"
5
- license: MIT
5
+ license: Elastic-2.0
6
6
  compatibility: "Requires SuperLocalMemory V3 installed at ~/.superlocalmemory/"
7
7
  attribution:
8
8
  creator: Varun Pratap Bhardwaj
@@ -320,7 +320,7 @@ slm recall "query" --format csv
320
320
 
321
321
  **Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
322
322
  **Project:** SuperLocalMemory V3
323
- **License:** MIT (see [LICENSE](../../LICENSE))
323
+ **License:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
324
324
  **Repository:** https://github.com/qualixar/superlocalmemory
325
325
 
326
- *Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
326
+ *Open source doesn't mean removing credit. Attribution must be preserved per Elastic License 2.0 terms.*
@@ -2,7 +2,7 @@
2
2
  name: slm-remember
3
3
  description: Save content to SuperLocalMemory with intelligent indexing and knowledge graph integration. Use when the user wants to remember information, save context, store coding decisions, or persist knowledge for future sessions. Automatically indexes, graphs, and learns patterns.
4
4
  version: "3.0.0"
5
- license: MIT
5
+ license: Elastic-2.0
6
6
  compatibility: "Requires SuperLocalMemory V3 installed at ~/.superlocalmemory/"
7
7
  attribution:
8
8
  creator: Varun Pratap Bhardwaj
@@ -188,7 +188,7 @@ slm remember "Commit: $commit_msg (${commit_hash:0:7})" \
188
188
 
189
189
  **Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
190
190
  **Project:** SuperLocalMemory V3
191
- **License:** MIT (see [LICENSE](../../LICENSE))
191
+ **License:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
192
192
  **Repository:** https://github.com/qualixar/superlocalmemory
193
193
 
194
- *Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
194
+ *Open source doesn't mean removing credit. Attribution must be preserved per Elastic License 2.0 terms.*
@@ -2,7 +2,7 @@
2
2
  name: slm-show-patterns
3
3
  description: Show what SuperLocalMemory has learned about your preferences, workflow patterns, and project context. Use when the user asks "what have you learned about me?" or wants to see their coding identity patterns. Shows tech preferences, workflow sequences, and engagement health.
4
4
  version: "3.0.0"
5
- license: MIT
5
+ license: Elastic-2.0
6
6
  compatibility: "Requires SuperLocalMemory V3 with learning features"
7
7
  attribution:
8
8
  creator: Varun Pratap Bhardwaj
@@ -218,7 +218,7 @@ slm engagement
218
218
 
219
219
  **Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
220
220
  **Project:** SuperLocalMemory V3
221
- **License:** MIT (see [LICENSE](../../LICENSE))
221
+ **License:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
222
222
  **Repository:** https://github.com/qualixar/superlocalmemory
223
223
 
224
- *Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
224
+ *Open source doesn't mean removing credit. Attribution must be preserved per Elastic License 2.0 terms.*