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
@@ -2,7 +2,7 @@
2
2
  name: slm-status
3
3
  description: Check SuperLocalMemory system status, health, and statistics. Use when the user wants to know memory count, graph stats, patterns learned, database health, or system diagnostics. Shows comprehensive system health dashboard.
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
@@ -357,7 +357,7 @@ slm build-graph
357
357
 
358
358
  **Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
359
359
  **Project:** SuperLocalMemory V3
360
- **License:** MIT (see [LICENSE](../../LICENSE))
360
+ **License:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
361
361
  **Repository:** https://github.com/qualixar/superlocalmemory
362
362
 
363
- *Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
363
+ *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-switch-profile
3
3
  description: Switch between memory profiles for context isolation and management. Use when the user wants to change profile context, separate work/personal memories, or manage multiple independent memory spaces. Each profile has its own database, graph, and 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
@@ -436,7 +436,7 @@ slm list-profiles
436
436
 
437
437
  **Created by:** [Varun Pratap Bhardwaj](https://github.com/varun369) (Solution Architect)
438
438
  **Project:** SuperLocalMemory V3
439
- **License:** MIT (see [LICENSE](../../LICENSE))
439
+ **License:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
440
440
  **Repository:** https://github.com/qualixar/superlocalmemory
441
441
 
442
- *Open source doesn't mean removing credit. Attribution must be preserved per MIT License terms.*
442
+ *Open source doesn't mean removing credit. Attribution must be preserved per Elastic License 2.0 terms.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superlocalmemory",
3
- "version": "3.3.22",
3
+ "version": "3.3.24",
4
4
  "description": "Information-geometric agent memory with mathematical guarantees. 4-channel retrieval, Fisher-Rao similarity, zero-LLM mode, EU AI Act compliant. Works with Claude, Cursor, Windsurf, and 17+ AI tools.",
5
5
  "keywords": [
6
6
  "ai-memory",
@@ -31,7 +31,7 @@
31
31
  "email": "admin@superlocalmemory.com",
32
32
  "url": "https://varunpratap.com"
33
33
  },
34
- "license": "MIT",
34
+ "license": "Elastic-2.0",
35
35
  "repository": {
36
36
  "type": "git",
37
37
  "url": "https://github.com/qualixar/superlocalmemory.git"
package/pyproject.toml CHANGED
@@ -1,9 +1,9 @@
1
1
  [project]
2
2
  name = "superlocalmemory"
3
- version = "3.3.22"
3
+ version = "3.3.24"
4
4
  description = "Information-geometric agent memory with mathematical guarantees"
5
5
  readme = "README.md"
6
- license = {text = "MIT"}
6
+ license = {text = "Elastic-2.0"}
7
7
  requires-python = ">=3.11,<3.15"
8
8
  authors = [
9
9
  {name = "Varun Pratap Bhardwaj", email = "admin@superlocalmemory.com"},
@@ -15,7 +15,7 @@ keywords = [
15
15
  classifiers = [
16
16
  "Development Status :: 4 - Beta",
17
17
  "Intended Audience :: Developers",
18
- "License :: OSI Approved :: MIT License",
18
+ "License :: Other/Proprietary License",
19
19
  "Operating System :: OS Independent",
20
20
  "Operating System :: MacOS",
21
21
  "Operating System :: Microsoft :: Windows",
@@ -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 - Thumbnail Generator
5
5
 
@@ -6,7 +6,7 @@
6
6
  * Python deps auto-installed. Embeddings auto-downloaded.
7
7
  *
8
8
  * Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
9
- * Licensed under MIT License
9
+ * Licensed under Elastic License 2.0
10
10
  */
11
11
 
12
12
  const { spawnSync } = require('child_process');
@@ -5,7 +5,7 @@
5
5
  * Copyright (c) 2026 Varun Pratap Bhardwaj
6
6
  * Solution Architect & Original Creator
7
7
  *
8
- * Licensed under MIT License (see LICENSE file)
8
+ * Licensed under Elastic License 2.0 (see LICENSE file)
9
9
  * Repository: https://github.com/qualixar/superlocalmemory
10
10
  *
11
11
  * ATTRIBUTION REQUIRED: This notice must be preserved in all copies.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Self-enforcing inter-layer parameter constraints.
@@ -22,7 +22,7 @@ If the constraint is violated:
22
22
  - Overall retrieval quality drops 15-20%
23
23
 
24
24
  Part of Qualixar | Author: Varun Pratap Bhardwaj
25
- License: MIT
25
+ License: Elastic-2.0
26
26
  """
27
27
 
28
28
  from __future__ import annotations
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Cryptographic signing for content attribution and tamper detection.
@@ -9,7 +9,7 @@ by the system carries a verifiable proof of origin. Verification
9
9
  detects any modification to the content after signing.
10
10
 
11
11
  Part of Qualixar | Author: Varun Pratap Bhardwaj
12
- License: MIT
12
+ License: Elastic-2.0
13
13
  """
14
14
 
15
15
  from __future__ import annotations
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Steganographic watermarking using zero-width Unicode characters.
@@ -25,7 +25,7 @@ Encoding scheme
25
25
  visible character of the host text.
26
26
 
27
27
  Part of Qualixar | Author: Varun Pratap Bhardwaj
28
- License: MIT
28
+ License: Elastic-2.0
29
29
  """
30
30
 
31
31
  from __future__ import annotations
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — CLI package."""
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """CLI command implementations.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SLM Daemon — keeps engine warm for instant CLI/MCP response.
@@ -24,7 +24,7 @@ Memory safety:
24
24
  - SQLite WAL mode for concurrent access
25
25
 
26
26
  Part of Qualixar | Author: Varun Pratap Bhardwaj
27
- License: MIT
27
+ License: Elastic-2.0
28
28
  """
29
29
 
30
30
  from __future__ import annotations
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Shared JSON envelope for agent-native CLI output.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — CLI entry point.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Migration CLI command implementation."""
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Pending memory store — zero-loss async remember (Option C).
@@ -18,7 +18,7 @@ Uses a separate `pending.db` file — never touches memory.db directly.
18
18
  Stdlib only — no SLM imports (must be fast).
19
19
 
20
20
  Part of Qualixar | Author: Varun Pratap Bhardwaj
21
- License: MIT
21
+ License: Elastic-2.0
22
22
  """
23
23
 
24
24
  from __future__ import annotations
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Post-install script for npm package.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Interactive setup wizard for first-time configuration.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Code Knowledge Graph for SuperLocalMemory.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """BlastRadius — bidirectional BFS impact analysis.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Bridge Module
4
4
 
5
5
  """Bridge between code_graph.db and SLM memory.db.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Bridge Module
4
4
 
5
5
  """Entity Resolver — match SLM fact text against code graph nodes.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Bridge Module
4
4
 
5
5
  """Event Listeners — bidirectional bridge between SLM events and code graph.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Bridge Module
4
4
 
5
5
  """Fact Enricher — append code metadata to fact descriptions.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Bridge Module
4
4
 
5
5
  """Hebbian Linker — code-aware association edge creation.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Bridge Module
4
4
 
5
5
  """Temporal Checker — invalidate memories about deleted/renamed code.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """ChangeAnalyzer — git diff to risk-scored change analysis.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """CommunityDetector — file-based community detection.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Configuration for the CodeGraph module.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Database manager for code_graph.db.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Base extractor ABC for language-specific AST extraction.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Python-specific AST extractor using tree-sitter S-expression queries.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """TypeScript/JavaScript AST extractor using tree-sitter.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """FlowDetector — entry point detection and execution flow tracing.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Git post-commit hook for automatic code graph updates.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """GraphEngine — rustworkx in-memory directed graph.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """GraphStore — thin graph-specific layer over CodeGraphDatabase.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """IncrementalUpdater — hash-based change detection + dependent tracing.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Data models for the CodeGraph module.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Multi-language tree-sitter parser with parallel execution.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """Cross-file import resolution with heuristic fallback.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """HybridSearch — FTS5 + vec0 + Reciprocal Rank Fusion.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """CodeGraphService — the main orchestrator.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory v3.4 — CodeGraph Module
4
4
 
5
5
  """CodeGraphWatcher — file system watcher with debounce.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Attribute-Based Access Control for memory operations.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Tamper-proof hash-chain audit log for compliance.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — EU AI Act Compliance Verification.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — GDPR Compliance.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — Memory Lifecycle Management.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Named retention rules engine for compliance (GDPR, HIPAA, custom).
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Background scheduler that periodically enforces retention rules.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — Configuration.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Sleep-time consolidation engine (Phase 5).
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Subprocess embedding worker — isolates PyTorch memory from main process.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — Embedding Service (Subprocess-Isolated).
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — Main Memory Engine (Facade).
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Engine wiring — extracted free functions for MemoryEngine initialization.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3
4
4
 
5
5
  """Graph structural analysis -- PageRank, community detection, centrality.
@@ -9,7 +9,7 @@ Stores results in fact_importance table.
9
9
  Called during consolidation (Phase 5), not at query time.
10
10
 
11
11
  Part of Qualixar | Author: Varun Pratap Bhardwaj
12
- License: MIT
12
+ License: Elastic-2.0
13
13
  """
14
14
 
15
15
  from __future__ import annotations
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """Engine lifecycle hooks -- pre/post operation dispatch.
@@ -1,5 +1,5 @@
1
1
  # Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
2
- # Licensed under the MIT License - see LICENSE file
2
+ # Licensed under the Elastic License 2.0 - see LICENSE file
3
3
  # Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
4
4
 
5
5
  """SuperLocalMemory V3 — Background Math Maintenance.
@@ -14,7 +14,7 @@ Frequency: every 6-24h or after 100 stores.
14
14
  ~100 Langevin steps to stationarity.
15
15
 
16
16
  Part of Qualixar | Author: Varun Pratap Bhardwaj
17
- License: MIT
17
+ License: Elastic-2.0
18
18
  """
19
19
  from __future__ import annotations
20
20