superlocalmemory 3.3.29 → 3.4.1

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 (69) hide show
  1. package/ATTRIBUTION.md +1 -1
  2. package/CHANGELOG.md +3 -0
  3. package/LICENSE +633 -70
  4. package/README.md +14 -11
  5. package/docs/screenshots/01-dashboard-main.png +0 -0
  6. package/docs/screenshots/02-knowledge-graph.png +0 -0
  7. package/docs/screenshots/03-patterns-learning.png +0 -0
  8. package/docs/screenshots/04-learning-dashboard.png +0 -0
  9. package/docs/screenshots/05-behavioral-analysis.png +0 -0
  10. package/docs/screenshots/06-graph-communities.png +0 -0
  11. package/docs/v2-archive/ACCESSIBILITY.md +1 -1
  12. package/docs/v2-archive/FRAMEWORK-INTEGRATIONS.md +1 -1
  13. package/docs/v2-archive/MCP-MANUAL-SETUP.md +1 -1
  14. package/docs/v2-archive/SEARCH-ENGINE-V2.2.0.md +2 -2
  15. package/docs/v2-archive/SEARCH-INTEGRATION-GUIDE.md +1 -1
  16. package/docs/v2-archive/UNIVERSAL-INTEGRATION.md +1 -1
  17. package/docs/v2-archive/V2.2.0-OPTIONAL-SEARCH.md +1 -1
  18. package/docs/v2-archive/example_graph_usage.py +1 -1
  19. package/ide/configs/codex-mcp.toml +1 -1
  20. package/ide/integrations/langchain/README.md +1 -1
  21. package/ide/integrations/langchain/langchain_superlocalmemory/__init__.py +1 -1
  22. package/ide/integrations/langchain/langchain_superlocalmemory/chat_message_history.py +1 -1
  23. package/ide/integrations/langchain/pyproject.toml +2 -2
  24. package/ide/integrations/langchain/tests/__init__.py +1 -1
  25. package/ide/integrations/langchain/tests/test_chat_message_history.py +1 -1
  26. package/ide/integrations/langchain/tests/test_security.py +1 -1
  27. package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/__init__.py +1 -1
  28. package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/base.py +1 -1
  29. package/ide/integrations/llamaindex/pyproject.toml +2 -2
  30. package/ide/integrations/llamaindex/tests/__init__.py +1 -1
  31. package/ide/integrations/llamaindex/tests/test_chat_store.py +1 -1
  32. package/ide/integrations/llamaindex/tests/test_security.py +1 -1
  33. package/ide/skills/slm-build-graph/SKILL.md +3 -3
  34. package/ide/skills/slm-list-recent/SKILL.md +3 -3
  35. package/ide/skills/slm-recall/SKILL.md +3 -3
  36. package/ide/skills/slm-remember/SKILL.md +3 -3
  37. package/ide/skills/slm-show-patterns/SKILL.md +3 -3
  38. package/ide/skills/slm-status/SKILL.md +3 -3
  39. package/ide/skills/slm-switch-profile/SKILL.md +3 -3
  40. package/package.json +3 -3
  41. package/pyproject.toml +3 -3
  42. package/src/superlocalmemory/core/engine_wiring.py +5 -1
  43. package/src/superlocalmemory/core/graph_analyzer.py +254 -12
  44. package/src/superlocalmemory/learning/consolidation_worker.py +240 -52
  45. package/src/superlocalmemory/retrieval/entity_channel.py +135 -4
  46. package/src/superlocalmemory/retrieval/spreading_activation.py +45 -0
  47. package/src/superlocalmemory/server/api.py +9 -1
  48. package/src/superlocalmemory/server/routes/behavioral.py +8 -4
  49. package/src/superlocalmemory/server/routes/chat.py +320 -0
  50. package/src/superlocalmemory/server/routes/insights.py +368 -0
  51. package/src/superlocalmemory/server/routes/learning.py +106 -6
  52. package/src/superlocalmemory/server/routes/memories.py +20 -9
  53. package/src/superlocalmemory/server/routes/stats.py +25 -3
  54. package/src/superlocalmemory/server/routes/timeline.py +252 -0
  55. package/src/superlocalmemory/server/routes/v3_api.py +161 -0
  56. package/src/superlocalmemory/server/ui.py +8 -0
  57. package/src/superlocalmemory/ui/index.html +168 -58
  58. package/src/superlocalmemory/ui/js/graph-event-bus.js +83 -0
  59. package/src/superlocalmemory/ui/js/graph-filters.js +1 -1
  60. package/src/superlocalmemory/ui/js/knowledge-graph.js +942 -0
  61. package/src/superlocalmemory/ui/js/memory-chat.js +344 -0
  62. package/src/superlocalmemory/ui/js/memory-timeline.js +265 -0
  63. package/src/superlocalmemory/ui/js/quick-actions.js +334 -0
  64. package/src/superlocalmemory.egg-info/PKG-INFO +597 -0
  65. package/src/superlocalmemory.egg-info/SOURCES.txt +287 -0
  66. package/src/superlocalmemory.egg-info/dependency_links.txt +1 -0
  67. package/src/superlocalmemory.egg-info/entry_points.txt +2 -0
  68. package/src/superlocalmemory.egg-info/requires.txt +47 -0
  69. package/src/superlocalmemory.egg-info/top_level.txt +1 -0
package/README.md CHANGED
@@ -15,7 +15,7 @@
15
15
  <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>
16
16
  <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>
17
17
  <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>
18
- <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
+ <a href="https://www.gnu.org/licenses/agpl-3.0"><img src="https://img.shields.io/badge/License-AGPL_v3-blue.svg?style=for-the-badge" alt="AGPL v3"/></a>
19
19
  <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>
20
20
  <a href="https://superlocalmemory.com"><img src="https://img.shields.io/badge/Web-superlocalmemory.com-ff6b35?style=for-the-badge" alt="Website"/></a>
21
21
  <a href="#dual-interface-mcp--cli"><img src="https://img.shields.io/badge/MCP-Native-blue?style=for-the-badge" alt="MCP Native"/></a>
@@ -341,20 +341,19 @@ slm dashboard # Opens at http://localhost:8765
341
341
 
342
342
  <details open>
343
343
  <summary><strong>Dashboard Screenshots</strong> (click to collapse)</summary>
344
- <p align="center"><img src="docs/screenshots/01-dashboard-main.png" alt="Dashboard" width="600"/></p>
344
+ <p align="center"><img src="docs/screenshots/01-dashboard-main.png" alt="Dashboard Overview — 3,100+ memories, 430K connections" width="600"/></p>
345
345
  <p align="center">
346
- <img src="docs/screenshots/02-knowledge-graph.png" alt="Graph" width="190"/>
347
- <img src="docs/screenshots/03-math-health.png" alt="Math" width="190"/>
348
- <img src="docs/screenshots/05-trust-dashboard.png" alt="Trust" width="190"/>
346
+ <img src="docs/screenshots/02-knowledge-graph.png" alt="Knowledge Graph — Sigma.js WebGL with community detection, chat, quick actions, timeline" width="290"/>
347
+ <img src="docs/screenshots/06-graph-communities.png" alt="Graph Communities — Louvain clustering with colored nodes" width="290"/>
349
348
  </p>
350
349
  <p align="center">
351
- <img src="docs/screenshots/04-recall-lab.png" alt="Recall" width="190"/>
352
- <img src="docs/screenshots/06-settings.png" alt="Settings" width="190"/>
353
- <img src="docs/screenshots/07-memories-blurred.png" alt="Memories" width="190"/>
350
+ <img src="docs/screenshots/03-patterns-learning.png" alt="Patterns — 50 learned behavioral patterns with confidence bars" width="190"/>
351
+ <img src="docs/screenshots/04-learning-dashboard.png" alt="Learning — 722 signals, ML Model phase, tech preferences" width="190"/>
352
+ <img src="docs/screenshots/05-behavioral-analysis.png" alt="Behavioral — pattern analysis with confidence distribution" width="190"/>
354
353
  </p>
355
354
  </details>
356
355
 
357
- 23 tabs: Dashboard, Recall Lab, Knowledge Graph, Memories, Trust Scores, Math Health, Compliance, Learning, IDE Connections, Settings, Memory Lifecycle, Compression, Patterns, and more. Runs locally — no data leaves your machine.
356
+ **v3.4.1 Visual Intelligence:** Sigma.js WebGL knowledge graph with community detection (Louvain/Leiden), 5 quick insight actions, D3 memory timeline, graph-enhanced retrieval (PageRank bias + community boost + contradiction suppression), and 56 auto-mined behavioral patterns. 23+ tabs. Runs locally — no data leaves your machine.
358
357
 
359
358
  ---
360
359
 
@@ -400,7 +399,7 @@ Auto-capture hooks: `slm hooks install` + `slm observe` + `slm session-context`.
400
399
  - 17+ IDE integrations (Claude, Cursor, Windsurf, VS Code, JetBrains, Zed, etc.)
401
400
  - 35 MCP tools + 7 MCP resources
402
401
  - Profile isolation (independent memory spaces)
403
- - 1400+ tests, Elastic License 2.0, cross-platform (Mac/Linux/Windows)
402
+ - 1400+ tests, AGPL v3, cross-platform (Mac/Linux/Windows)
404
403
  - CPU-only — no GPU required
405
404
  - Automatic orphaned process cleanup
406
405
 
@@ -509,7 +508,11 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. [Wiki](https://github.com
509
508
 
510
509
  ## License
511
510
 
512
- 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.
511
+ GNU Affero General Public License v3.0 (AGPL-3.0). See [LICENSE](LICENSE).
512
+
513
+ For commercial licensing (closed-source, proprietary, or hosted use), see [COMMERCIAL-LICENSE.md](COMMERCIAL-LICENSE.md) or contact varun.pratap.bhardwaj@gmail.com.
514
+
515
+ Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar.
513
516
 
514
517
  ## Attribution
515
518
 
@@ -288,4 +288,4 @@ If you encounter accessibility issues, please report them:
288
288
 
289
289
  ---
290
290
 
291
- **Copyright © 2026 Varun Pratap Bhardwaj - Elastic License 2.0**
291
+ **Copyright © 2026 Varun Pratap Bhardwaj - AGPL-3.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
- Elastic License 2.0 • <a href="https://superlocalmemory.com">superlocalmemory.com</a>
299
+ AGPL-3.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 Elastic License 2.0
775
+ Licensed under AGPL-3.0
@@ -738,9 +738,9 @@ cache = CacheManager(
738
738
 
739
739
  ## License
740
740
 
741
- Elastic License 2.0 - See [LICENSE](../LICENSE) file
741
+ AGPL-3.0 - See [LICENSE](../LICENSE) file
742
742
 
743
- **Attribution Required:** This notice must be preserved in all copies per Elastic License 2.0 terms.
743
+ **Attribution Required:** This notice must be preserved in all copies per AGPL-3.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:** Elastic License 2.0
502
+ **License:** AGPL-3.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:** Elastic License 2.0
488
+ **License:** AGPL-3.0
@@ -649,7 +649,7 @@ index = HNSWIndex(
649
649
  - scikit-learn: TF-IDF fallback
650
650
  - PyTorch: GPU acceleration
651
651
 
652
- **License:** Elastic License 2.0
652
+ **License:** AGPL-3.0
653
653
 
654
654
  ---
655
655
 
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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 Elastic License 2.0
3
+ # Licensed under AGPL-3.0-or-later
4
4
  #
5
5
  # Auto-configured by install.sh or use: codex mcp add
6
6
  # Manual: Copy this to ~/.codex/config.toml
@@ -97,7 +97,7 @@ This means your LangChain conversations are visible in the SLM dashboard, search
97
97
 
98
98
  ## License
99
99
 
100
- Elastic License 2.0 -- see [LICENSE](../../LICENSE) for details.
100
+ AGPL-3.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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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 = "Elastic-2.0"
10
+ license = "AGPL-3.0-or-later"
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 :: Elastic License 2.0",
19
+ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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 = "Elastic-2.0"
10
+ license = "AGPL-3.0-or-later"
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 :: Elastic License 2.0",
19
+ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
3
3
  # Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env python3
2
- # SPDX-License-Identifier: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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: Elastic-2.0
2
+ # SPDX-License-Identifier: AGPL-3.0-or-later
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: Elastic-2.0
5
+ license: AGPL-3.0-or-later
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:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
420
+ **License:** AGPL-3.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 Elastic License 2.0 terms.*
423
+ *Open source doesn't mean removing credit. Attribution must be preserved per AGPL-3.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: Elastic-2.0
5
+ license: AGPL-3.0-or-later
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:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
345
+ **License:** AGPL-3.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 Elastic License 2.0 terms.*
348
+ *Open source doesn't mean removing credit. Attribution must be preserved per AGPL-3.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: Elastic-2.0
5
+ license: AGPL-3.0-or-later
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:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
323
+ **License:** AGPL-3.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 Elastic License 2.0 terms.*
326
+ *Open source doesn't mean removing credit. Attribution must be preserved per AGPL-3.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: Elastic-2.0
5
+ license: AGPL-3.0-or-later
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:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
191
+ **License:** AGPL-3.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 Elastic License 2.0 terms.*
194
+ *Open source doesn't mean removing credit. Attribution must be preserved per AGPL-3.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: Elastic-2.0
5
+ license: AGPL-3.0-or-later
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:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
221
+ **License:** AGPL-3.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 Elastic License 2.0 terms.*
224
+ *Open source doesn't mean removing credit. Attribution must be preserved per AGPL-3.0 terms.*
@@ -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: Elastic-2.0
5
+ license: AGPL-3.0-or-later
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:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
360
+ **License:** AGPL-3.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 Elastic License 2.0 terms.*
363
+ *Open source doesn't mean removing credit. Attribution must be preserved per AGPL-3.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: Elastic-2.0
5
+ license: AGPL-3.0-or-later
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:** Elastic License 2.0 (see [LICENSE](../../LICENSE))
439
+ **License:** AGPL-3.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 Elastic License 2.0 terms.*
442
+ *Open source doesn't mean removing credit. Attribution must be preserved per AGPL-3.0 terms.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superlocalmemory",
3
- "version": "3.3.29",
3
+ "version": "3.4.1",
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": "Elastic-2.0",
34
+ "license": "AGPL-3.0-or-later",
35
35
  "repository": {
36
36
  "type": "git",
37
37
  "url": "https://github.com/qualixar/superlocalmemory.git"
@@ -89,4 +89,4 @@
89
89
  "dependencies": {
90
90
  "docx": "^9.5.1"
91
91
  }
92
- }
92
+ }
package/pyproject.toml CHANGED
@@ -1,9 +1,9 @@
1
1
  [project]
2
2
  name = "superlocalmemory"
3
- version = "3.3.29"
3
+ version = "3.4.1"
4
4
  description = "Information-geometric agent memory with mathematical guarantees"
5
5
  readme = "README.md"
6
- license = {text = "Elastic-2.0"}
6
+ license = {text = "AGPL-3.0-or-later"}
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 :: Other/Proprietary License",
18
+ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
19
19
  "Operating System :: OS Independent",
20
20
  "Operating System :: MacOS",
21
21
  "Operating System :: Microsoft :: Windows",
@@ -364,7 +364,11 @@ def _init_spreading_activation(
364
364
  SpreadingActivation,
365
365
  SpreadingActivationConfig,
366
366
  )
367
- sa_config = SpreadingActivationConfig(enabled=True)
367
+ sa_config = SpreadingActivationConfig(
368
+ enabled=True,
369
+ use_pagerank_bias=True, # v3.4.1: PageRank-weighted propagation
370
+ community_boost=0.15, # v3.4.1: 15% boost for same-community nodes
371
+ )
368
372
  return SpreadingActivation(
369
373
  db=db, vector_store=vector_store, config=sa_config,
370
374
  )