superlocalmemory 3.3.23 → 3.3.25
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 +1 -1
- package/README.md +5 -5
- package/docs/ARCHITECTURE.md +1 -1
- package/docs/api-reference.md +1 -1
- package/docs/auto-memory.md +1 -1
- package/docs/cli-reference.md +1 -1
- package/docs/compliance.md +1 -1
- package/docs/configuration.md +1 -1
- package/docs/getting-started.md +1 -1
- package/docs/ide-setup.md +1 -1
- package/docs/mcp-tools.md +1 -1
- package/docs/migration-from-v2.md +1 -1
- package/docs/profiles.md +1 -1
- package/docs/troubleshooting.md +1 -1
- 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/WINDOWS-INSTALL-README.txt +1 -1
- package/docs/v2-archive/example_graph_usage.py +1 -1
- package/ide/configs/codex-mcp.toml +1 -1
- package/ide/hooks/context-hook.js +1 -1
- package/ide/hooks/post-recall-hook.js +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 +1 -1
- package/pyproject.toml +1 -1
- package/scripts/generate-thumbnails.py +1 -1
- package/scripts/postinstall.js +1 -1
- package/scripts/preuninstall.js +1 -1
- package/src/superlocalmemory/attribution/mathematical_dna.py +2 -2
- package/src/superlocalmemory/attribution/signer.py +2 -2
- package/src/superlocalmemory/attribution/watermark.py +2 -2
- package/src/superlocalmemory/cli/__init__.py +1 -1
- package/src/superlocalmemory/cli/commands.py +1 -1
- package/src/superlocalmemory/cli/daemon.py +2 -2
- package/src/superlocalmemory/cli/json_output.py +1 -1
- package/src/superlocalmemory/cli/main.py +1 -1
- package/src/superlocalmemory/cli/migrate_cmd.py +1 -1
- package/src/superlocalmemory/cli/pending_store.py +2 -2
- package/src/superlocalmemory/cli/post_install.py +1 -1
- package/src/superlocalmemory/cli/setup_wizard.py +1 -1
- package/src/superlocalmemory/code_graph/__init__.py +1 -1
- package/src/superlocalmemory/code_graph/blast_radius.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/__init__.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/entity_resolver.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/event_listeners.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/fact_enricher.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/hebbian_linker.py +1 -1
- package/src/superlocalmemory/code_graph/bridge/temporal_checker.py +1 -1
- package/src/superlocalmemory/code_graph/changes.py +1 -1
- package/src/superlocalmemory/code_graph/communities.py +1 -1
- package/src/superlocalmemory/code_graph/config.py +1 -1
- package/src/superlocalmemory/code_graph/database.py +1 -1
- package/src/superlocalmemory/code_graph/extractors/__init__.py +1 -1
- package/src/superlocalmemory/code_graph/extractors/python.py +1 -1
- package/src/superlocalmemory/code_graph/extractors/typescript.py +1 -1
- package/src/superlocalmemory/code_graph/flows.py +1 -1
- package/src/superlocalmemory/code_graph/git_hooks.py +1 -1
- package/src/superlocalmemory/code_graph/graph_engine.py +1 -1
- package/src/superlocalmemory/code_graph/graph_store.py +1 -1
- package/src/superlocalmemory/code_graph/incremental.py +1 -1
- package/src/superlocalmemory/code_graph/models.py +1 -1
- package/src/superlocalmemory/code_graph/parser.py +1 -1
- package/src/superlocalmemory/code_graph/resolver.py +1 -1
- package/src/superlocalmemory/code_graph/search.py +1 -1
- package/src/superlocalmemory/code_graph/service.py +1 -1
- package/src/superlocalmemory/code_graph/watcher.py +1 -1
- package/src/superlocalmemory/compliance/abac.py +1 -1
- package/src/superlocalmemory/compliance/audit.py +1 -1
- package/src/superlocalmemory/compliance/eu_ai_act.py +1 -1
- package/src/superlocalmemory/compliance/gdpr.py +1 -1
- package/src/superlocalmemory/compliance/lifecycle.py +1 -1
- package/src/superlocalmemory/compliance/retention.py +1 -1
- package/src/superlocalmemory/compliance/scheduler.py +1 -1
- package/src/superlocalmemory/core/config.py +1 -1
- package/src/superlocalmemory/core/consolidation_engine.py +1 -1
- package/src/superlocalmemory/core/embedding_worker.py +1 -1
- package/src/superlocalmemory/core/embeddings.py +1 -1
- package/src/superlocalmemory/core/engine.py +1 -1
- package/src/superlocalmemory/core/engine_wiring.py +1 -1
- package/src/superlocalmemory/core/graph_analyzer.py +2 -2
- package/src/superlocalmemory/core/hooks.py +1 -1
- package/src/superlocalmemory/core/maintenance.py +2 -2
- package/src/superlocalmemory/core/maintenance_scheduler.py +2 -2
- package/src/superlocalmemory/core/modes.py +1 -1
- package/src/superlocalmemory/core/ollama_embedder.py +1 -1
- package/src/superlocalmemory/core/profiles.py +1 -1
- package/src/superlocalmemory/core/recall_pipeline.py +1 -1
- package/src/superlocalmemory/core/recall_worker.py +1 -1
- package/src/superlocalmemory/core/registry.py +2 -2
- package/src/superlocalmemory/core/reranker_worker.py +1 -1
- package/src/superlocalmemory/core/store_pipeline.py +1 -1
- package/src/superlocalmemory/core/summarizer.py +1 -1
- package/src/superlocalmemory/core/worker_pool.py +1 -1
- package/src/superlocalmemory/dynamics/activation_guided_quantization.py +2 -2
- package/src/superlocalmemory/dynamics/eap_scheduler.py +2 -2
- package/src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py +2 -2
- package/src/superlocalmemory/dynamics/fisher_langevin_coupling.py +2 -2
- package/src/superlocalmemory/encoding/auto_linker.py +2 -2
- package/src/superlocalmemory/encoding/cognitive_consolidator.py +2 -2
- package/src/superlocalmemory/encoding/consolidator.py +2 -2
- package/src/superlocalmemory/encoding/context_generator.py +1 -1
- package/src/superlocalmemory/encoding/emotional.py +1 -1
- package/src/superlocalmemory/encoding/entity_resolver.py +2 -2
- package/src/superlocalmemory/encoding/entropy_gate.py +1 -1
- package/src/superlocalmemory/encoding/fact_extractor.py +2 -2
- package/src/superlocalmemory/encoding/foresight.py +1 -1
- package/src/superlocalmemory/encoding/graph_builder.py +2 -2
- package/src/superlocalmemory/encoding/observation_builder.py +1 -1
- package/src/superlocalmemory/encoding/scene_builder.py +1 -1
- package/src/superlocalmemory/encoding/signal_inference.py +1 -1
- package/src/superlocalmemory/encoding/temporal_parser.py +1 -1
- package/src/superlocalmemory/encoding/temporal_validator.py +1 -1
- package/src/superlocalmemory/encoding/type_router.py +1 -1
- package/src/superlocalmemory/hooks/__init__.py +1 -1
- package/src/superlocalmemory/hooks/auto_capture.py +1 -1
- package/src/superlocalmemory/hooks/auto_invoker.py +1 -1
- package/src/superlocalmemory/hooks/auto_parameterize.py +1 -1
- package/src/superlocalmemory/hooks/auto_recall.py +1 -1
- package/src/superlocalmemory/hooks/claude_code_hooks.py +1 -1
- package/src/superlocalmemory/hooks/hook_handlers.py +1 -1
- package/src/superlocalmemory/hooks/ide_connector.py +1 -1
- package/src/superlocalmemory/hooks/rules_engine.py +1 -1
- package/src/superlocalmemory/infra/__init__.py +1 -1
- package/src/superlocalmemory/infra/auth_middleware.py +1 -1
- package/src/superlocalmemory/infra/backup.py +1 -1
- package/src/superlocalmemory/infra/cache_manager.py +1 -1
- package/src/superlocalmemory/infra/event_bus.py +1 -1
- package/src/superlocalmemory/infra/heartbeat_monitor.py +1 -1
- package/src/superlocalmemory/infra/pid_manager.py +1 -1
- package/src/superlocalmemory/infra/process_reaper.py +1 -1
- package/src/superlocalmemory/infra/rate_limiter.py +1 -1
- package/src/superlocalmemory/infra/webhook_dispatcher.py +1 -1
- package/src/superlocalmemory/learning/adaptive.py +1 -1
- package/src/superlocalmemory/learning/behavioral.py +1 -1
- package/src/superlocalmemory/learning/behavioral_listener.py +1 -1
- package/src/superlocalmemory/learning/bootstrap.py +1 -1
- package/src/superlocalmemory/learning/consolidation_quantization_worker.py +2 -2
- package/src/superlocalmemory/learning/consolidation_worker.py +1 -1
- package/src/superlocalmemory/learning/cross_project.py +1 -1
- package/src/superlocalmemory/learning/database.py +1 -1
- package/src/superlocalmemory/learning/engagement.py +1 -1
- package/src/superlocalmemory/learning/features.py +1 -1
- package/src/superlocalmemory/learning/feedback.py +1 -1
- package/src/superlocalmemory/learning/forgetting_scheduler.py +2 -2
- package/src/superlocalmemory/learning/outcomes.py +1 -1
- package/src/superlocalmemory/learning/project_context.py +1 -1
- package/src/superlocalmemory/learning/quantization_scheduler.py +2 -2
- package/src/superlocalmemory/learning/ranker.py +1 -1
- package/src/superlocalmemory/learning/signals.py +1 -1
- package/src/superlocalmemory/learning/source_quality.py +1 -1
- package/src/superlocalmemory/learning/workflows.py +1 -1
- package/src/superlocalmemory/llm/backbone.py +2 -2
- package/src/superlocalmemory/math/ebbinghaus.py +2 -2
- package/src/superlocalmemory/math/fisher.py +2 -2
- package/src/superlocalmemory/math/fisher_quantized.py +2 -2
- package/src/superlocalmemory/math/hopfield.py +2 -2
- package/src/superlocalmemory/math/langevin.py +2 -2
- package/src/superlocalmemory/math/polar_quant.py +2 -2
- package/src/superlocalmemory/math/qjl.py +2 -2
- package/src/superlocalmemory/math/sheaf.py +2 -2
- package/src/superlocalmemory/math/turbo_quant.py +2 -2
- package/src/superlocalmemory/mcp/resources.py +1 -1
- package/src/superlocalmemory/mcp/server.py +1 -1
- package/src/superlocalmemory/mcp/shared.py +1 -1
- package/src/superlocalmemory/mcp/tools.py +1 -1
- package/src/superlocalmemory/mcp/tools_active.py +1 -1
- package/src/superlocalmemory/mcp/tools_code_graph.py +1 -1
- package/src/superlocalmemory/mcp/tools_core.py +2 -2
- package/src/superlocalmemory/mcp/tools_v28.py +1 -1
- package/src/superlocalmemory/mcp/tools_v3.py +1 -1
- package/src/superlocalmemory/mcp/tools_v33.py +1 -1
- package/src/superlocalmemory/parameterization/__init__.py +1 -1
- package/src/superlocalmemory/parameterization/pattern_extractor.py +1 -1
- package/src/superlocalmemory/parameterization/pii_filter.py +1 -1
- package/src/superlocalmemory/parameterization/prompt_injector.py +1 -1
- package/src/superlocalmemory/parameterization/prompt_lifecycle.py +1 -1
- package/src/superlocalmemory/parameterization/soft_prompt_generator.py +1 -1
- package/src/superlocalmemory/retrieval/agentic.py +2 -2
- package/src/superlocalmemory/retrieval/ann_index.py +2 -2
- package/src/superlocalmemory/retrieval/bm25_channel.py +2 -2
- package/src/superlocalmemory/retrieval/bridge_discovery.py +2 -2
- package/src/superlocalmemory/retrieval/channel_registry.py +1 -1
- package/src/superlocalmemory/retrieval/engine.py +2 -2
- package/src/superlocalmemory/retrieval/entity_channel.py +2 -2
- package/src/superlocalmemory/retrieval/forgetting_filter.py +2 -2
- package/src/superlocalmemory/retrieval/fusion.py +2 -2
- package/src/superlocalmemory/retrieval/hopfield_channel.py +2 -2
- package/src/superlocalmemory/retrieval/profile_channel.py +2 -2
- package/src/superlocalmemory/retrieval/quantization_aware_search.py +2 -2
- package/src/superlocalmemory/retrieval/reranker.py +2 -2
- package/src/superlocalmemory/retrieval/semantic_channel.py +2 -2
- package/src/superlocalmemory/retrieval/spreading_activation.py +2 -2
- package/src/superlocalmemory/retrieval/strategy.py +2 -2
- package/src/superlocalmemory/retrieval/temporal_channel.py +2 -2
- package/src/superlocalmemory/retrieval/vector_store.py +2 -2
- package/src/superlocalmemory/server/api.py +1 -1
- package/src/superlocalmemory/server/routes/__init__.py +1 -1
- package/src/superlocalmemory/server/routes/agents.py +2 -2
- package/src/superlocalmemory/server/routes/backup.py +2 -2
- package/src/superlocalmemory/server/routes/behavioral.py +2 -2
- package/src/superlocalmemory/server/routes/compliance.py +2 -2
- package/src/superlocalmemory/server/routes/data_io.py +2 -2
- package/src/superlocalmemory/server/routes/events.py +2 -2
- package/src/superlocalmemory/server/routes/helpers.py +2 -2
- package/src/superlocalmemory/server/routes/learning.py +2 -2
- package/src/superlocalmemory/server/routes/lifecycle.py +2 -2
- package/src/superlocalmemory/server/routes/memories.py +2 -2
- package/src/superlocalmemory/server/routes/profiles.py +2 -2
- package/src/superlocalmemory/server/routes/stats.py +2 -2
- package/src/superlocalmemory/server/routes/v3_api.py +1 -1
- package/src/superlocalmemory/server/routes/ws.py +2 -2
- package/src/superlocalmemory/server/security_middleware.py +1 -1
- package/src/superlocalmemory/server/ui.py +1 -1
- package/src/superlocalmemory/storage/access_control.py +1 -1
- package/src/superlocalmemory/storage/access_log.py +2 -2
- package/src/superlocalmemory/storage/database.py +1 -1
- package/src/superlocalmemory/storage/embedding_migrator.py +1 -1
- package/src/superlocalmemory/storage/migration_v33.py +2 -2
- package/src/superlocalmemory/storage/migrations.py +1 -1
- package/src/superlocalmemory/storage/models.py +1 -1
- package/src/superlocalmemory/storage/quantized_store.py +2 -2
- package/src/superlocalmemory/storage/schema.py +1 -1
- package/src/superlocalmemory/storage/schema_code_graph.py +1 -1
- package/src/superlocalmemory/storage/schema_v32.py +1 -1
- package/src/superlocalmemory/storage/v2_migrator.py +1 -1
- package/src/superlocalmemory/trust/gate.py +1 -1
- package/src/superlocalmemory/trust/provenance.py +1 -1
- package/src/superlocalmemory/trust/scorer.py +1 -1
- package/src/superlocalmemory/trust/signals.py +1 -1
- package/src/superlocalmemory/ui/index.html +1 -1
- package/src/superlocalmemory/ui/js/behavioral.js +1 -1
- package/src/superlocalmemory/ui/js/compliance.js +1 -1
- package/src/superlocalmemory/ui/js/feedback.js +1 -1
- package/src/superlocalmemory/ui/js/graph-core.js +1 -1
- package/src/superlocalmemory/ui/js/graph-filters.js +1 -1
- package/src/superlocalmemory/ui/js/graph-interactions.js +1 -1
- package/src/superlocalmemory/ui/js/graph-ui.js +1 -1
- package/src/superlocalmemory/ui/js/learning.js +1 -1
- package/src/superlocalmemory/ui/js/lifecycle.js +1 -1
- package/ui/index.html +1 -1
- package/ui/js/behavioral.js +1 -1
- package/ui/js/compliance.js +1 -1
- package/ui/js/feedback.js +1 -1
- package/ui/js/graph-core.js +1 -1
- package/ui/js/graph-filters.js +1 -1
- package/ui/js/graph-interactions.js +1 -1
- package/ui/js/graph-ui.js +1 -1
- package/ui/js/learning.js +1 -1
- package/ui/js/lifecycle.js +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Lifecycle Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/lifecycle/status, /api/lifecycle/compact
|
|
8
8
|
Uses V3 compliance.lifecycle.LifecycleManager.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
|
-
"""SuperLocalMemory V3 - Memory Routes (
|
|
4
|
+
"""SuperLocalMemory V3 - Memory Routes (Elastic License 2.0).
|
|
5
5
|
Routes: /api/memories, /api/graph, /api/search, /api/clusters, /api/clusters/{id}
|
|
6
6
|
Uses V3 MemoryEngine for store/recall. Falls back to direct DB for list/graph.
|
|
7
7
|
"""
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Profile Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/profiles, /api/profiles/{name}/switch,
|
|
8
8
|
/api/profiles/create, DELETE /api/profiles/{name}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - Stats Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /api/stats, /api/timeline, /api/patterns
|
|
8
8
|
"""
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""V3 API endpoints for the SuperLocalMemory dashboard."""
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
"""SuperLocalMemory V3 - WebSocket Routes
|
|
5
|
-
-
|
|
5
|
+
- Elastic License 2.0
|
|
6
6
|
|
|
7
7
|
Routes: /ws/updates
|
|
8
8
|
"""
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
|
-
# SPDX-License-Identifier:
|
|
2
|
+
# SPDX-License-Identifier: Elastic-2.0
|
|
3
3
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
4
4
|
# Part of Qualixar | Author: Varun Pratap Bhardwaj (qualixar.com | varunpratap.com)
|
|
5
5
|
"""Security headers middleware for FastAPI servers.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
#!/usr/bin/env python3
|
|
2
2
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
3
|
-
# Licensed under the
|
|
3
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
4
4
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
5
5
|
"""
|
|
6
6
|
SuperLocalMemory V3 - FastAPI UI Server
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Attribute-Based Access Control (ABAC).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""Access log for fact retrieval events.
|
|
@@ -9,7 +9,7 @@ Used by Phase 2 auto-invoke for recency scoring (H1 fix).
|
|
|
9
9
|
All SQL parameterized (Rule 11). Silent errors (Rule 19).
|
|
10
10
|
|
|
11
11
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
12
|
-
License:
|
|
12
|
+
License: Elastic-2.0
|
|
13
13
|
"""
|
|
14
14
|
|
|
15
15
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Database Manager.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""Embedding migration on mode/model switch.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SLM 3.2.3 -> 3.3 migration: idempotent schema upgrade.
|
|
@@ -21,7 +21,7 @@ by create_all_tables(). This migration module detects their absence
|
|
|
21
21
|
and creates them for databases that were created before SLM 3.3.
|
|
22
22
|
|
|
23
23
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
24
|
-
License:
|
|
24
|
+
License: Elastic-2.0
|
|
25
25
|
"""
|
|
26
26
|
|
|
27
27
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Database Migrations.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Data Models.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""Quantized embedding storage and retrieval.
|
|
@@ -12,7 +12,7 @@ HR-06: BLOB columns use Python bytes, not base64.
|
|
|
12
12
|
HR-07: QJL is optional -- system works without it.
|
|
13
13
|
|
|
14
14
|
Part of Qualixar | Author: Varun Pratap Bhardwaj
|
|
15
|
-
License:
|
|
15
|
+
License: Elastic-2.0
|
|
16
16
|
"""
|
|
17
17
|
|
|
18
18
|
from __future__ import annotations
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Database Schema.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3.2 -- Schema Extensions (Associative Memory).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""V2 to V3 database migration.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Trust Gate (Pre-Operation Checks).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Provenance Tracking.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Bayesian Trust Scorer (Beta Distribution).
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# Copyright (c) 2026 Varun Pratap Bhardwaj / Qualixar
|
|
2
|
-
# Licensed under the
|
|
2
|
+
# Licensed under the Elastic License 2.0 - see LICENSE file
|
|
3
3
|
# Part of SuperLocalMemory V3 | https://qualixar.com | https://varunpratap.com
|
|
4
4
|
|
|
5
5
|
"""SuperLocalMemory V3 — Trust Signal Recorder with Burst Detection.
|
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
|
|
1874
1874
|
<footer>
|
|
1875
1875
|
<p>SuperLocalMemory V3 by <a href="https://github.com/varun369">Varun Pratap Bhardwaj</a></p>
|
|
1876
|
-
<p><a href="https://github.com/
|
|
1876
|
+
<p><a href="https://github.com/qualixar/superlocalmemory">GitHub Repository</a> | Elastic License 2.0</p>
|
|
1877
1877
|
</footer>
|
|
1878
1878
|
</body>
|
|
1879
1879
|
</html>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// SPDX-License-Identifier:
|
|
1
|
+
// SPDX-License-Identifier: Elastic-2.0
|
|
2
2
|
// Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
|
|
3
3
|
// Behavioral Learning tab — outcomes, patterns, cross-project transfers (v2.8)
|
|
4
4
|
// NOTE: All dynamic values use textContent or escapeHtml() from core.js before DOM insertion.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// SPDX-License-Identifier:
|
|
1
|
+
// SPDX-License-Identifier: Elastic-2.0
|
|
2
2
|
// Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
|
|
3
3
|
// Compliance tab — audit trail, retention policies, ABAC (v2.8)
|
|
4
4
|
// NOTE: All dynamic values use textContent or escapeHtml() from core.js before DOM insertion.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* SuperLocalMemory V2 - Feedback Module (v2.7.4)
|
|
3
3
|
* Copyright (c) 2026 Varun Pratap Bhardwaj
|
|
4
|
-
* Licensed under
|
|
4
|
+
* Licensed under Elastic License 2.0
|
|
5
5
|
*
|
|
6
6
|
* Collects implicit and explicit feedback signals from dashboard
|
|
7
7
|
* interactions. All data stays 100% local.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - Core Rendering Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - Filtering Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - Interactions Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - UI Elements Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2 - Learning System Dashboard (v2.7)
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj -
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj - Elastic License 2.0
|
|
3
3
|
// NOTE: All dynamic values pass through escapeHtml() from core.js before DOM insertion.
|
|
4
4
|
|
|
5
5
|
var _learningData = null;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// SPDX-License-Identifier:
|
|
1
|
+
// SPDX-License-Identifier: Elastic-2.0
|
|
2
2
|
// Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
|
|
3
3
|
// Lifecycle tab — state distribution, compaction, transitions (v2.8)
|
|
4
4
|
// NOTE: All dynamic values pass through escapeHtml() or textContent for DOM insertion.
|
package/ui/index.html
CHANGED
|
@@ -1873,7 +1873,7 @@
|
|
|
1873
1873
|
|
|
1874
1874
|
<footer>
|
|
1875
1875
|
<p>SuperLocalMemory V3 by <a href="https://github.com/varun369">Varun Pratap Bhardwaj</a></p>
|
|
1876
|
-
<p><a href="https://github.com/
|
|
1876
|
+
<p><a href="https://github.com/qualixar/superlocalmemory">GitHub Repository</a> | Elastic License 2.0</p>
|
|
1877
1877
|
</footer>
|
|
1878
1878
|
</body>
|
|
1879
1879
|
</html>
|
package/ui/js/behavioral.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// SPDX-License-Identifier:
|
|
1
|
+
// SPDX-License-Identifier: Elastic-2.0
|
|
2
2
|
// Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
|
|
3
3
|
// Behavioral Learning tab — outcomes, patterns, cross-project transfers (v2.8)
|
|
4
4
|
// NOTE: All dynamic values use textContent or escapeHtml() from core.js before DOM insertion.
|
package/ui/js/compliance.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// SPDX-License-Identifier:
|
|
1
|
+
// SPDX-License-Identifier: Elastic-2.0
|
|
2
2
|
// Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
|
|
3
3
|
// Compliance tab — audit trail, retention policies, ABAC (v2.8)
|
|
4
4
|
// NOTE: All dynamic values use textContent or escapeHtml() from core.js before DOM insertion.
|
package/ui/js/feedback.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* SuperLocalMemory V2 - Feedback Module (v2.7.4)
|
|
3
3
|
* Copyright (c) 2026 Varun Pratap Bhardwaj
|
|
4
|
-
* Licensed under
|
|
4
|
+
* Licensed under Elastic License 2.0
|
|
5
5
|
*
|
|
6
6
|
* Collects implicit and explicit feedback signals from dashboard
|
|
7
7
|
* interactions. All data stays 100% local.
|
package/ui/js/graph-core.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - Core Rendering Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
package/ui/js/graph-filters.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - Filtering Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - Interactions Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
package/ui/js/graph-ui.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2.6.5 - Interactive Knowledge Graph - UI Elements Module
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj —
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj — Elastic License 2.0
|
|
3
3
|
// Part of modular graph visualization system (split from monolithic graph-cytoscape.js)
|
|
4
4
|
|
|
5
5
|
// ============================================================================
|
package/ui/js/learning.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// SuperLocalMemory V2 - Learning System Dashboard (v2.7)
|
|
2
|
-
// Copyright (c) 2026 Varun Pratap Bhardwaj -
|
|
2
|
+
// Copyright (c) 2026 Varun Pratap Bhardwaj - Elastic License 2.0
|
|
3
3
|
// NOTE: All dynamic values pass through escapeHtml() from core.js before DOM insertion.
|
|
4
4
|
|
|
5
5
|
var _learningData = null;
|
package/ui/js/lifecycle.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// SPDX-License-Identifier:
|
|
1
|
+
// SPDX-License-Identifier: Elastic-2.0
|
|
2
2
|
// Copyright (c) 2026 SuperLocalMemory (superlocalmemory.com)
|
|
3
3
|
// Lifecycle tab — state distribution, compaction, transitions (v2.8)
|
|
4
4
|
// NOTE: All dynamic values pass through escapeHtml() or textContent for DOM insertion.
|