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.
- package/ATTRIBUTION.md +1 -1
- package/CHANGELOG.md +3 -0
- package/LICENSE +633 -70
- package/README.md +14 -11
- package/docs/screenshots/01-dashboard-main.png +0 -0
- package/docs/screenshots/02-knowledge-graph.png +0 -0
- package/docs/screenshots/03-patterns-learning.png +0 -0
- package/docs/screenshots/04-learning-dashboard.png +0 -0
- package/docs/screenshots/05-behavioral-analysis.png +0 -0
- package/docs/screenshots/06-graph-communities.png +0 -0
- package/docs/v2-archive/ACCESSIBILITY.md +1 -1
- package/docs/v2-archive/FRAMEWORK-INTEGRATIONS.md +1 -1
- package/docs/v2-archive/MCP-MANUAL-SETUP.md +1 -1
- package/docs/v2-archive/SEARCH-ENGINE-V2.2.0.md +2 -2
- package/docs/v2-archive/SEARCH-INTEGRATION-GUIDE.md +1 -1
- package/docs/v2-archive/UNIVERSAL-INTEGRATION.md +1 -1
- package/docs/v2-archive/V2.2.0-OPTIONAL-SEARCH.md +1 -1
- package/docs/v2-archive/example_graph_usage.py +1 -1
- package/ide/configs/codex-mcp.toml +1 -1
- package/ide/integrations/langchain/README.md +1 -1
- package/ide/integrations/langchain/langchain_superlocalmemory/__init__.py +1 -1
- package/ide/integrations/langchain/langchain_superlocalmemory/chat_message_history.py +1 -1
- package/ide/integrations/langchain/pyproject.toml +2 -2
- package/ide/integrations/langchain/tests/__init__.py +1 -1
- package/ide/integrations/langchain/tests/test_chat_message_history.py +1 -1
- package/ide/integrations/langchain/tests/test_security.py +1 -1
- package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/__init__.py +1 -1
- package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/base.py +1 -1
- package/ide/integrations/llamaindex/pyproject.toml +2 -2
- package/ide/integrations/llamaindex/tests/__init__.py +1 -1
- package/ide/integrations/llamaindex/tests/test_chat_store.py +1 -1
- package/ide/integrations/llamaindex/tests/test_security.py +1 -1
- package/ide/skills/slm-build-graph/SKILL.md +3 -3
- package/ide/skills/slm-list-recent/SKILL.md +3 -3
- package/ide/skills/slm-recall/SKILL.md +3 -3
- package/ide/skills/slm-remember/SKILL.md +3 -3
- package/ide/skills/slm-show-patterns/SKILL.md +3 -3
- package/ide/skills/slm-status/SKILL.md +3 -3
- package/ide/skills/slm-switch-profile/SKILL.md +3 -3
- package/package.json +3 -3
- package/pyproject.toml +3 -3
- package/src/superlocalmemory/core/engine_wiring.py +5 -1
- package/src/superlocalmemory/core/graph_analyzer.py +254 -12
- package/src/superlocalmemory/learning/consolidation_worker.py +240 -52
- package/src/superlocalmemory/retrieval/entity_channel.py +135 -4
- package/src/superlocalmemory/retrieval/spreading_activation.py +45 -0
- package/src/superlocalmemory/server/api.py +9 -1
- package/src/superlocalmemory/server/routes/behavioral.py +8 -4
- package/src/superlocalmemory/server/routes/chat.py +320 -0
- package/src/superlocalmemory/server/routes/insights.py +368 -0
- package/src/superlocalmemory/server/routes/learning.py +106 -6
- package/src/superlocalmemory/server/routes/memories.py +20 -9
- package/src/superlocalmemory/server/routes/stats.py +25 -3
- package/src/superlocalmemory/server/routes/timeline.py +252 -0
- package/src/superlocalmemory/server/routes/v3_api.py +161 -0
- package/src/superlocalmemory/server/ui.py +8 -0
- package/src/superlocalmemory/ui/index.html +168 -58
- package/src/superlocalmemory/ui/js/graph-event-bus.js +83 -0
- package/src/superlocalmemory/ui/js/graph-filters.js +1 -1
- package/src/superlocalmemory/ui/js/knowledge-graph.js +942 -0
- package/src/superlocalmemory/ui/js/memory-chat.js +344 -0
- package/src/superlocalmemory/ui/js/memory-timeline.js +265 -0
- package/src/superlocalmemory/ui/js/quick-actions.js +334 -0
- package/src/superlocalmemory.egg-info/PKG-INFO +597 -0
- package/src/superlocalmemory.egg-info/SOURCES.txt +287 -0
- package/src/superlocalmemory.egg-info/dependency_links.txt +1 -0
- package/src/superlocalmemory.egg-info/entry_points.txt +2 -0
- package/src/superlocalmemory.egg-info/requires.txt +47 -0
- 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="
|
|
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="
|
|
347
|
-
<img src="docs/screenshots/
|
|
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/
|
|
352
|
-
<img src="docs/screenshots/
|
|
353
|
-
<img src="docs/screenshots/
|
|
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
|
-
|
|
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,
|
|
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
|
-
|
|
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
|
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -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
|
-
|
|
299
|
+
AGPL-3.0 • <a href="https://superlocalmemory.com">superlocalmemory.com</a>
|
|
300
300
|
</p>
|
|
@@ -738,9 +738,9 @@ cache = CacheManager(
|
|
|
738
738
|
|
|
739
739
|
## License
|
|
740
740
|
|
|
741
|
-
|
|
741
|
+
AGPL-3.0 - See [LICENSE](../LICENSE) file
|
|
742
742
|
|
|
743
|
-
**Attribution Required:** This notice must be preserved in all copies per
|
|
743
|
+
**Attribution Required:** This notice must be preserved in all copies per AGPL-3.0 terms.
|
|
744
744
|
|
|
745
745
|
---
|
|
746
746
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# SuperLocalMemory V3 - Codex CLI MCP Configuration
|
|
2
2
|
# Copyright (c) 2026 Varun Pratap Bhardwaj
|
|
3
|
-
# Licensed under
|
|
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
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
|
-
# SPDX-License-Identifier:
|
|
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,
|
|
@@ -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 = "
|
|
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 ::
|
|
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",
|
package/ide/integrations/llamaindex/llama_index/storage/chat_store/superlocalmemory/__init__.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
|
-
# SPDX-License-Identifier:
|
|
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,
|
|
@@ -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 = "
|
|
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 ::
|
|
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
|
]
|
|
@@ -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:
|
|
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:**
|
|
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
|
|
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:
|
|
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:**
|
|
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
|
|
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:
|
|
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:**
|
|
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
|
|
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:
|
|
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:**
|
|
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
|
|
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:
|
|
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:**
|
|
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
|
|
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:
|
|
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:**
|
|
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
|
|
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:
|
|
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:**
|
|
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
|
|
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
|
+
"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": "
|
|
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
|
+
version = "3.4.1"
|
|
4
4
|
description = "Information-geometric agent memory with mathematical guarantees"
|
|
5
5
|
readme = "README.md"
|
|
6
|
-
license = {text = "
|
|
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 ::
|
|
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(
|
|
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
|
)
|