superlocalmemory 3.6.15 → 3.6.16
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/README.md +20 -6
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/CLAUDE.md +3 -3
- package/plugin/agents/slm-memory-advisor.md +1 -1
- package/plugin/agents/slm-optimize-advisor.md +1 -1
- package/plugin/requirements.txt +1 -1
- package/plugin/skills/slm-cache/SKILL.md +1 -1
- package/plugin/skills/slm-compress/SKILL.md +1 -1
- package/plugin/skills/slm-graph/SKILL.md +1 -1
- package/plugin/skills/slm-recall/SKILL.md +1 -1
- package/plugin/skills/slm-remember/SKILL.md +1 -1
- package/plugin/skills/slm-session/SKILL.md +1 -1
- package/plugin/skills/slm-status/SKILL.md +1 -1
- package/plugin-src/agents/slm-memory-advisor.md +1 -1
- package/plugin-src/agents/slm-optimize-advisor.md +1 -1
- package/plugin-src/commands/slm-optimize.md +1 -1
- package/plugin-src/commands/slm-recall.md +1 -1
- package/plugin-src/commands/slm-remember.md +1 -1
- package/plugin-src/commands/slm-status.md +1 -1
- package/plugin-src/manifest.json +1 -1
- package/plugin-src/requirements.txt +1 -1
- package/plugin-src/rules/AGENTS.md +1 -1
- package/plugin-src/rules/CLAUDE.md.fragment +3 -3
- package/plugin-src/skills/slm-cache/SKILL.md +1 -1
- package/plugin-src/skills/slm-compress/SKILL.md +1 -1
- package/plugin-src/skills/slm-graph/SKILL.md +1 -1
- package/plugin-src/skills/slm-recall/SKILL.md +1 -1
- package/plugin-src/skills/slm-remember/SKILL.md +1 -1
- package/plugin-src/skills/slm-session/SKILL.md +1 -1
- package/plugin-src/skills/slm-status/SKILL.md +1 -1
- package/pyproject.toml +1 -1
- package/scripts/build-plugin.js +1 -1
- package/src/superlocalmemory/__init__.py +1 -1
- package/src/superlocalmemory.egg-info/PKG-INFO +21 -7
package/README.md
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
<img src="https://superlocalmemory.com/assets/logo-mark.png" alt="SuperLocalMemory" width="200"/>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
<h1 align="center">SuperLocalMemory V3.6.
|
|
5
|
+
<h1 align="center">SuperLocalMemory V3.6.16</h1>
|
|
6
6
|
<p align="center"><strong>Cache. Compress. Remember. Three surfaces — proxy, MCP tools, or skill. Every setup covered.</strong><br/>
|
|
7
7
|
<em>To the best of our knowledge, the only zero-cloud agent memory that beats Mem0's zero-LLM score on LoCoMo. Mode A: 74.8% vs Mem0 64.2% — no GPU, no API key, on CPU.</em></p>
|
|
8
|
-
<p align="center"><code>v3.6.
|
|
8
|
+
<p align="center"><code>v3.6.16</code> — <strong>Plugin-native. Profile-aware. Distributed-ready.</strong><br/>
|
|
9
9
|
Proxy: <code>slm wrap claude</code> · MCP: add <code>slm_compress</code> to your config · Skill: zero-config</p>
|
|
10
10
|
<p align="center"><strong>3 published research papers</strong> (arXiv preprints + Zenodo-archived) · <a href="https://arxiv.org/abs/2603.02240">arXiv:2603.02240</a> · <a href="https://arxiv.org/abs/2603.14588">arXiv:2603.14588</a> · <a href="https://arxiv.org/abs/2604.04514">arXiv:2604.04514</a></p>
|
|
11
11
|
|
|
@@ -162,7 +162,7 @@ Full docs: [docs/multi-machine.md](docs/multi-machine.md) · [docs/distributed-d
|
|
|
162
162
|
|:-----|:--------|:-----|
|
|
163
163
|
| **npm** (recommended) | `npm install -g superlocalmemory` | Node 14+, installs Python deps automatically |
|
|
164
164
|
| **pip** | `pip install superlocalmemory` | Python 3.11+, direct install |
|
|
165
|
-
| **Claude Code Plugin** (WP-06) | `/plugin install superlocalmemory@qualixar` | Self-bootstraps venv, isolated SLM_DATA_DIR, additive — 14-tool core |
|
|
165
|
+
| **Claude Code Plugin** (WP-06) | `/plugin marketplace add qualixar/superlocalmemory` then `/plugin install superlocalmemory@qualixar` | Self-bootstraps venv, isolated SLM_DATA_DIR, additive — 14-tool core. Ships the skills/agents/hooks/commands |
|
|
166
166
|
| **Portable / IDE connect** (WP-08) | `slm connect <ide> [--here]` | Wire any IDE without reinstalling; `slm connect claude-code` → plugin pointer |
|
|
167
167
|
|
|
168
168
|
After any install path: `slm setup` → `slm doctor` → `slm warmup` (optional, pre-downloads ~500MB embedding model).
|
|
@@ -218,18 +218,31 @@ Per-IDE configs available for Claude Code, Cursor, Windsurf, VS Code Copilot, Co
|
|
|
218
218
|
|
|
219
219
|
## Claude Code Plugin
|
|
220
220
|
|
|
221
|
-
Install directly in Claude Code
|
|
221
|
+
Install directly in Claude Code — no system-level npm/pip needed. This is how you
|
|
222
|
+
get the **skills, agents, hooks, commands, and rules** (the MCP server is
|
|
223
|
+
bootstrapped automatically). It is a two-step flow — add the marketplace once,
|
|
224
|
+
then install:
|
|
222
225
|
|
|
223
226
|
```bash
|
|
227
|
+
# 1. Add the Qualixar marketplace (one-time — the repo IS the marketplace)
|
|
228
|
+
/plugin marketplace add qualixar/superlocalmemory
|
|
229
|
+
|
|
230
|
+
# 2. Install the plugin
|
|
224
231
|
/plugin install superlocalmemory@qualixar
|
|
225
232
|
```
|
|
226
233
|
|
|
227
234
|
- Self-bootstraps a Python venv, installs all deps in an isolated `SLM_DATA_DIR`
|
|
228
|
-
- Registers 14-tool core MCP surface (`core14` profile by default)
|
|
235
|
+
- Registers the 14-tool core MCP surface (`core14` profile by default)
|
|
236
|
+
- Ships the SLM skills / agents / hooks / commands / rules
|
|
229
237
|
- Additive — does not replace an existing SLM install
|
|
230
238
|
- `slm connect claude-code` detects an existing plugin install and links them
|
|
231
239
|
|
|
232
|
-
|
|
240
|
+
> **Plugin vs `pip`/`npm`:** `pip install superlocalmemory` / `npm i -g superlocalmemory`
|
|
241
|
+
> give you the `slm` CLI + the MCP server (the *tools*). The **skills/agents/hooks/
|
|
242
|
+
> commands** come only through the plugin above. Use the plugin for Claude Code; use
|
|
243
|
+
> pip/npm for the CLI or other IDEs.
|
|
244
|
+
|
|
245
|
+
To update later: `/plugin marketplace update qualixar` then `/plugin install superlocalmemory@qualixar`.
|
|
233
246
|
|
|
234
247
|
---
|
|
235
248
|
|
|
@@ -294,6 +307,7 @@ slm dashboard # Opens at http://localhost:8765
|
|
|
294
307
|
|
|
295
308
|
| Version | Codename | Key Features |
|
|
296
309
|
|---|---|---|
|
|
310
|
+
| **v3.6.16** | Docs | Corrected Claude Code plugin install — adds the required `/plugin marketplace add` step; clarifies plugin vs pip/npm delivery |
|
|
297
311
|
| **v3.6.15** | Multi-scope | **Opt-in [shared memory](docs/shared-memory.md)** (personal/shared/global, off by default), default-deny scope at every read path, recall scope-race fix, contributor PRs #42/#43/#44, fixes #46–#49 |
|
|
298
312
|
| **v3.6.14** | Plugin-native | Claude Code Plugin (WP-06), MCP profiles (WP-01), IDE connect (WP-08), asset consolidation, UI polish (WP-12) |
|
|
299
313
|
| **v3.6.x** | Optimize Everywhere / Distributed-ready | Three surfaces (proxy/MCP/skill), `SLM_REMOTE=1` LAN mode, remote dashboard, custom LLM endpoints |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "superlocalmemory",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.16",
|
|
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",
|
package/plugin/CLAUDE.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!-- BEGIN SuperLocalMemory v3.6.
|
|
1
|
+
<!-- BEGIN SuperLocalMemory v3.6.16 -->
|
|
2
2
|
|
|
3
3
|
## SuperLocalMemory (SLM) — Agent Rules
|
|
4
4
|
|
|
@@ -39,6 +39,6 @@ slm-recall · slm-remember · slm-session · slm-status · slm-cache · slm-comp
|
|
|
39
39
|
### Subagents
|
|
40
40
|
slm-memory-advisor (memory decisions, session hygiene) · slm-optimize-advisor (context compression + KV cache)
|
|
41
41
|
|
|
42
|
-
<!-- END SuperLocalMemory v3.6.
|
|
42
|
+
<!-- END SuperLocalMemory v3.6.16 -->
|
|
43
43
|
|
|
44
|
-
SuperLocalMemory v3.6.
|
|
44
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
|
@@ -41,4 +41,4 @@ recall→`slm recall "<q>" --limit N` (add `--include-global`/`--include-shared`
|
|
|
41
41
|
# What NOT to do
|
|
42
42
|
Never session_init twice; never forget dry_run=False without reporting preview; never dump a whole file into remember; never invent a memory; never claim "saved" without success:true / clean CLI exit.
|
|
43
43
|
|
|
44
|
-
SuperLocalMemory v3.6.
|
|
44
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
|
@@ -35,4 +35,4 @@ stats→`slm optimize status`/`savings` · compress→`slm compress` · cache→
|
|
|
35
35
|
# What NOT to do
|
|
36
36
|
Never compress code-for-edit/JSON-to-parse/<500 chars; never store secrets/ccr_ids; never let optimize failure block/alter the task; never claim a specific savings %.
|
|
37
37
|
|
|
38
|
-
SuperLocalMemory v3.6.
|
|
38
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
package/plugin/requirements.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
superlocalmemory==3.6.
|
|
1
|
+
superlocalmemory==3.6.16
|
|
@@ -41,4 +41,4 @@ recall→`slm recall "<q>" --limit N` (add `--include-global`/`--include-shared`
|
|
|
41
41
|
# What NOT to do
|
|
42
42
|
Never session_init twice; never forget dry_run=False without reporting preview; never dump a whole file into remember; never invent a memory; never claim "saved" without success:true / clean CLI exit.
|
|
43
43
|
|
|
44
|
-
SuperLocalMemory v3.6.
|
|
44
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
|
@@ -35,4 +35,4 @@ stats→`slm optimize status`/`savings` · compress→`slm compress` · cache→
|
|
|
35
35
|
# What NOT to do
|
|
36
36
|
Never compress code-for-edit/JSON-to-parse/<500 chars; never store secrets/ccr_ids; never let optimize failure block/alter the task; never claim a specific savings %.
|
|
37
37
|
|
|
38
|
-
SuperLocalMemory v3.6.
|
|
38
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
|
@@ -13,4 +13,4 @@ Save to SuperLocalMemory: $ARGUMENTS
|
|
|
13
13
|
5. Confirm only on success:true. If success is not true, report the error — never claim "saved."
|
|
14
14
|
6. MCP unavailable → CLI fallback: `slm remember "$ARGUMENTS" --tags <tags>` (note: `--importance` is MCP-only, not a CLI flag).
|
|
15
15
|
|
|
16
|
-
SuperLocalMemory v3.6.
|
|
16
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
|
@@ -12,4 +12,4 @@ Show SuperLocalMemory status and optimization counters.
|
|
|
12
12
|
|
|
13
13
|
Note: MCP get_status is intentionally NOT used here — it is outside the core profile and would error. Use `slm status` (CLI) + `slm_optimize_stats` (MCP) only.
|
|
14
14
|
|
|
15
|
-
SuperLocalMemory v3.6.
|
|
15
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
package/plugin-src/manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
superlocalmemory==3.6.
|
|
1
|
+
superlocalmemory==3.6.16
|
|
@@ -88,4 +88,4 @@ When the SLM MCP server is unavailable, use these CLI equivalents:
|
|
|
88
88
|
| `slm_cache_get` | `key` | KV cache get; returns hit, value |
|
|
89
89
|
| `slm_optimize_stats` | `()` | Returns compress_runs, tokens_saved_compress, cache_kv_hits |
|
|
90
90
|
|
|
91
|
-
SuperLocalMemory v3.6.
|
|
91
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!-- BEGIN SuperLocalMemory v3.6.
|
|
1
|
+
<!-- BEGIN SuperLocalMemory v3.6.16 -->
|
|
2
2
|
|
|
3
3
|
## SuperLocalMemory (SLM) — Agent Rules
|
|
4
4
|
|
|
@@ -39,6 +39,6 @@ slm-recall · slm-remember · slm-session · slm-status · slm-cache · slm-comp
|
|
|
39
39
|
### Subagents
|
|
40
40
|
slm-memory-advisor (memory decisions, session hygiene) · slm-optimize-advisor (context compression + KV cache)
|
|
41
41
|
|
|
42
|
-
<!-- END SuperLocalMemory v3.6.
|
|
42
|
+
<!-- END SuperLocalMemory v3.6.16 -->
|
|
43
43
|
|
|
44
|
-
SuperLocalMemory v3.6.
|
|
44
|
+
SuperLocalMemory v3.6.16 · Qualixar · AGPL-3.0-or-later
|
package/pyproject.toml
CHANGED
package/scripts/build-plugin.js
CHANGED
|
@@ -30,7 +30,7 @@ import process from 'node:process';
|
|
|
30
30
|
// ---------------------------------------------------------------------------
|
|
31
31
|
// Constants
|
|
32
32
|
// ---------------------------------------------------------------------------
|
|
33
|
-
const VERSION = '3.6.
|
|
33
|
+
const VERSION = '3.6.16';
|
|
34
34
|
const MANIFEST_REL = 'plugin-src/manifest.json';
|
|
35
35
|
const GENERATED_BANNER = `# _GENERATED — DO NOT HAND-EDIT
|
|
36
36
|
|
|
@@ -32,7 +32,7 @@ if "OMP_NUM_THREADS" not in os.environ:
|
|
|
32
32
|
os.environ["OMP_NUM_THREADS"] = "2"
|
|
33
33
|
# ---------------------------------------------------------------------------
|
|
34
34
|
|
|
35
|
-
__version__ = "3.6.
|
|
35
|
+
__version__ = "3.6.16"
|
|
36
36
|
|
|
37
37
|
_REQUIRED_VERSIONS = {
|
|
38
38
|
"sentence_transformers": "5.3.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: superlocalmemory
|
|
3
|
-
Version: 3.6.
|
|
3
|
+
Version: 3.6.16
|
|
4
4
|
Summary: Information-geometric agent memory with mathematical guarantees
|
|
5
5
|
Author-email: Varun Pratap Bhardwaj <admin@superlocalmemory.com>
|
|
6
6
|
License: AGPL-3.0-or-later
|
|
@@ -96,10 +96,10 @@ Dynamic: license-file
|
|
|
96
96
|
<img src="https://superlocalmemory.com/assets/logo-mark.png" alt="SuperLocalMemory" width="200"/>
|
|
97
97
|
</p>
|
|
98
98
|
|
|
99
|
-
<h1 align="center">SuperLocalMemory V3.6.
|
|
99
|
+
<h1 align="center">SuperLocalMemory V3.6.16</h1>
|
|
100
100
|
<p align="center"><strong>Cache. Compress. Remember. Three surfaces — proxy, MCP tools, or skill. Every setup covered.</strong><br/>
|
|
101
101
|
<em>To the best of our knowledge, the only zero-cloud agent memory that beats Mem0's zero-LLM score on LoCoMo. Mode A: 74.8% vs Mem0 64.2% — no GPU, no API key, on CPU.</em></p>
|
|
102
|
-
<p align="center"><code>v3.6.
|
|
102
|
+
<p align="center"><code>v3.6.16</code> — <strong>Plugin-native. Profile-aware. Distributed-ready.</strong><br/>
|
|
103
103
|
Proxy: <code>slm wrap claude</code> · MCP: add <code>slm_compress</code> to your config · Skill: zero-config</p>
|
|
104
104
|
<p align="center"><strong>3 published research papers</strong> (arXiv preprints + Zenodo-archived) · <a href="https://arxiv.org/abs/2603.02240">arXiv:2603.02240</a> · <a href="https://arxiv.org/abs/2603.14588">arXiv:2603.14588</a> · <a href="https://arxiv.org/abs/2604.04514">arXiv:2604.04514</a></p>
|
|
105
105
|
|
|
@@ -256,7 +256,7 @@ Full docs: [docs/multi-machine.md](docs/multi-machine.md) · [docs/distributed-d
|
|
|
256
256
|
|:-----|:--------|:-----|
|
|
257
257
|
| **npm** (recommended) | `npm install -g superlocalmemory` | Node 14+, installs Python deps automatically |
|
|
258
258
|
| **pip** | `pip install superlocalmemory` | Python 3.11+, direct install |
|
|
259
|
-
| **Claude Code Plugin** (WP-06) | `/plugin install superlocalmemory@qualixar` | Self-bootstraps venv, isolated SLM_DATA_DIR, additive — 14-tool core |
|
|
259
|
+
| **Claude Code Plugin** (WP-06) | `/plugin marketplace add qualixar/superlocalmemory` then `/plugin install superlocalmemory@qualixar` | Self-bootstraps venv, isolated SLM_DATA_DIR, additive — 14-tool core. Ships the skills/agents/hooks/commands |
|
|
260
260
|
| **Portable / IDE connect** (WP-08) | `slm connect <ide> [--here]` | Wire any IDE without reinstalling; `slm connect claude-code` → plugin pointer |
|
|
261
261
|
|
|
262
262
|
After any install path: `slm setup` → `slm doctor` → `slm warmup` (optional, pre-downloads ~500MB embedding model).
|
|
@@ -312,18 +312,31 @@ Per-IDE configs available for Claude Code, Cursor, Windsurf, VS Code Copilot, Co
|
|
|
312
312
|
|
|
313
313
|
## Claude Code Plugin
|
|
314
314
|
|
|
315
|
-
Install directly in Claude Code
|
|
315
|
+
Install directly in Claude Code — no system-level npm/pip needed. This is how you
|
|
316
|
+
get the **skills, agents, hooks, commands, and rules** (the MCP server is
|
|
317
|
+
bootstrapped automatically). It is a two-step flow — add the marketplace once,
|
|
318
|
+
then install:
|
|
316
319
|
|
|
317
320
|
```bash
|
|
321
|
+
# 1. Add the Qualixar marketplace (one-time — the repo IS the marketplace)
|
|
322
|
+
/plugin marketplace add qualixar/superlocalmemory
|
|
323
|
+
|
|
324
|
+
# 2. Install the plugin
|
|
318
325
|
/plugin install superlocalmemory@qualixar
|
|
319
326
|
```
|
|
320
327
|
|
|
321
328
|
- Self-bootstraps a Python venv, installs all deps in an isolated `SLM_DATA_DIR`
|
|
322
|
-
- Registers 14-tool core MCP surface (`core14` profile by default)
|
|
329
|
+
- Registers the 14-tool core MCP surface (`core14` profile by default)
|
|
330
|
+
- Ships the SLM skills / agents / hooks / commands / rules
|
|
323
331
|
- Additive — does not replace an existing SLM install
|
|
324
332
|
- `slm connect claude-code` detects an existing plugin install and links them
|
|
325
333
|
|
|
326
|
-
|
|
334
|
+
> **Plugin vs `pip`/`npm`:** `pip install superlocalmemory` / `npm i -g superlocalmemory`
|
|
335
|
+
> give you the `slm` CLI + the MCP server (the *tools*). The **skills/agents/hooks/
|
|
336
|
+
> commands** come only through the plugin above. Use the plugin for Claude Code; use
|
|
337
|
+
> pip/npm for the CLI or other IDEs.
|
|
338
|
+
|
|
339
|
+
To update later: `/plugin marketplace update qualixar` then `/plugin install superlocalmemory@qualixar`.
|
|
327
340
|
|
|
328
341
|
---
|
|
329
342
|
|
|
@@ -388,6 +401,7 @@ slm dashboard # Opens at http://localhost:8765
|
|
|
388
401
|
|
|
389
402
|
| Version | Codename | Key Features |
|
|
390
403
|
|---|---|---|
|
|
404
|
+
| **v3.6.16** | Docs | Corrected Claude Code plugin install — adds the required `/plugin marketplace add` step; clarifies plugin vs pip/npm delivery |
|
|
391
405
|
| **v3.6.15** | Multi-scope | **Opt-in [shared memory](docs/shared-memory.md)** (personal/shared/global, off by default), default-deny scope at every read path, recall scope-race fix, contributor PRs #42/#43/#44, fixes #46–#49 |
|
|
392
406
|
| **v3.6.14** | Plugin-native | Claude Code Plugin (WP-06), MCP profiles (WP-01), IDE connect (WP-08), asset consolidation, UI polish (WP-12) |
|
|
393
407
|
| **v3.6.x** | Optimize Everywhere / Distributed-ready | Three surfaces (proxy/MCP/skill), `SLM_REMOTE=1` LAN mode, remote dashboard, custom LLM endpoints |
|