superlocalmemory 3.3.21 → 3.3.22

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superlocalmemory",
3
- "version": "3.3.21",
3
+ "version": "3.3.22",
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/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "superlocalmemory"
3
- version = "3.3.21"
3
+ version = "3.3.22"
4
4
  description = "Information-geometric agent memory with mathematical guarantees"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -122,7 +122,7 @@ register_v3_tools(_target, get_engine)
122
122
  register_active_tools(_target, get_engine)
123
123
  register_v33_tools(_target, get_engine)
124
124
  register_resources(server, get_engine) # Resources always registered (not tools)
125
- register_code_graph_tools(server, get_engine) # CodeGraph: registered on `server` (always visible when installed)
125
+ register_code_graph_tools(_target, get_engine) # CodeGraph: filtered like other tools (SLM_MCP_ALL_TOOLS=1 to show all)
126
126
 
127
127
 
128
128
  # V3.3.21: Eager engine warmup — start initializing BEFORE first tool call.