superlocalmemory 3.6.2 → 3.6.4
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/CHANGELOG.md +180 -0
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/src/superlocalmemory/__init__.py +1 -1
- package/src/superlocalmemory/core/consolidation_engine.py +8 -0
- package/src/superlocalmemory/core/engine.py +6 -1
- package/src/superlocalmemory/core/fact_consolidator.py +54 -13
- package/src/superlocalmemory/core/graph_pruner.py +55 -19
- package/src/superlocalmemory/core/maintenance.py +9 -0
- package/src/superlocalmemory/core/store_pipeline.py +120 -51
- package/src/superlocalmemory/mcp/_stdin_guard.py +60 -0
- package/src/superlocalmemory/mcp/server.py +34 -5
- package/src/superlocalmemory/optimize/adapters/wrap.py +12 -3
- package/src/superlocalmemory/optimize/cache/manager.py +63 -9
- package/src/superlocalmemory/optimize/compress/router.py +7 -9
- package/src/superlocalmemory/optimize/proxy/_helpers.py +236 -1
- package/src/superlocalmemory/optimize/proxy/anthropic_surface.py +187 -5
- package/src/superlocalmemory/optimize/proxy/gemini_surface.py +373 -14
- package/src/superlocalmemory/optimize/proxy/openai_surface.py +329 -7
- package/src/superlocalmemory/optimize/proxy/server.py +10 -3
- package/src/superlocalmemory/retrieval/engine.py +17 -6
- package/src/superlocalmemory/retrieval/entity_channel.py +10 -1
- package/src/superlocalmemory/retrieval/hopfield_channel.py +3 -1
- package/src/superlocalmemory/storage/database.py +113 -9
- package/src/superlocalmemory.egg-info/PKG-INFO +1 -1
- package/src/superlocalmemory.egg-info/SOURCES.txt +3 -1
|
@@ -268,6 +268,7 @@ src/superlocalmemory/math/turbo_quant.py
|
|
|
268
268
|
src/superlocalmemory/mcp/__init__.py
|
|
269
269
|
src/superlocalmemory/mcp/_daemon_proxy.py
|
|
270
270
|
src/superlocalmemory/mcp/_pool_adapter.py
|
|
271
|
+
src/superlocalmemory/mcp/_stdin_guard.py
|
|
271
272
|
src/superlocalmemory/mcp/resources.py
|
|
272
273
|
src/superlocalmemory/mcp/server.py
|
|
273
274
|
src/superlocalmemory/mcp/shared.py
|
|
@@ -494,7 +495,7 @@ tests/test_auto_hooks.py
|
|
|
494
495
|
tests/test_before_web_hook.py
|
|
495
496
|
tests/test_behavioral_full.py
|
|
496
497
|
tests/test_claude_hooks.py
|
|
497
|
-
tests/
|
|
498
|
+
tests/test_cli_core.py
|
|
498
499
|
tests/test_cli_json.py
|
|
499
500
|
tests/test_cli_v33.py
|
|
500
501
|
tests/test_compliance_full.py
|
|
@@ -503,6 +504,7 @@ tests/test_engine_hooks.py
|
|
|
503
504
|
tests/test_event_bus.py
|
|
504
505
|
tests/test_features.py
|
|
505
506
|
tests/test_final_locomo_mini.py
|
|
507
|
+
tests/test_graph_integrity.py
|
|
506
508
|
tests/test_hook_handlers.py
|
|
507
509
|
tests/test_ide_connector.py
|
|
508
510
|
tests/test_infra.py
|