superlocalmemory 3.4.34 → 3.4.35
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 +38 -0
- package/package.json +1 -1
- package/pyproject.toml +1 -1
- package/src/superlocalmemory/__init__.py +1 -1
- package/src/superlocalmemory/core/queue_consumer.py +168 -0
- package/src/superlocalmemory/core/recall_queue.py +16 -9
- package/src/superlocalmemory/hooks/auto_recall_hook.py +215 -0
- package/src/superlocalmemory/hooks/hook_handlers.py +3 -0
- package/src/superlocalmemory/server/unified_daemon.py +35 -0
- package/src/superlocalmemory.egg-info/PKG-INFO +0 -663
- package/src/superlocalmemory.egg-info/SOURCES.txt +0 -448
- package/src/superlocalmemory.egg-info/dependency_links.txt +0 -1
- package/src/superlocalmemory.egg-info/entry_points.txt +0 -2
- package/src/superlocalmemory.egg-info/requires.txt +0 -59
- package/src/superlocalmemory.egg-info/top_level.txt +0 -1
|
@@ -1,448 +0,0 @@
|
|
|
1
|
-
AUTHORS.md
|
|
2
|
-
LICENSE
|
|
3
|
-
NOTICE
|
|
4
|
-
README.md
|
|
5
|
-
pyproject.toml
|
|
6
|
-
src/superlocalmemory/__init__.py
|
|
7
|
-
src/superlocalmemory.egg-info/PKG-INFO
|
|
8
|
-
src/superlocalmemory.egg-info/SOURCES.txt
|
|
9
|
-
src/superlocalmemory.egg-info/dependency_links.txt
|
|
10
|
-
src/superlocalmemory.egg-info/entry_points.txt
|
|
11
|
-
src/superlocalmemory.egg-info/requires.txt
|
|
12
|
-
src/superlocalmemory.egg-info/top_level.txt
|
|
13
|
-
src/superlocalmemory/attribution/__init__.py
|
|
14
|
-
src/superlocalmemory/attribution/mathematical_dna.py
|
|
15
|
-
src/superlocalmemory/attribution/signer.py
|
|
16
|
-
src/superlocalmemory/attribution/watermark.py
|
|
17
|
-
src/superlocalmemory/cli/__init__.py
|
|
18
|
-
src/superlocalmemory/cli/commands.py
|
|
19
|
-
src/superlocalmemory/cli/context_commands.py
|
|
20
|
-
src/superlocalmemory/cli/daemon.py
|
|
21
|
-
src/superlocalmemory/cli/db_migrate.py
|
|
22
|
-
src/superlocalmemory/cli/doctor_cmd.py
|
|
23
|
-
src/superlocalmemory/cli/escape_hatch.py
|
|
24
|
-
src/superlocalmemory/cli/ingest_cmd.py
|
|
25
|
-
src/superlocalmemory/cli/json_output.py
|
|
26
|
-
src/superlocalmemory/cli/main.py
|
|
27
|
-
src/superlocalmemory/cli/migrate_cmd.py
|
|
28
|
-
src/superlocalmemory/cli/pending_store.py
|
|
29
|
-
src/superlocalmemory/cli/post_install.py
|
|
30
|
-
src/superlocalmemory/cli/service_installer.py
|
|
31
|
-
src/superlocalmemory/cli/setup_wizard.py
|
|
32
|
-
src/superlocalmemory/cli/version_banner.py
|
|
33
|
-
src/superlocalmemory/cli/wizard_v3426_options.py
|
|
34
|
-
src/superlocalmemory/code_graph/__init__.py
|
|
35
|
-
src/superlocalmemory/code_graph/blast_radius.py
|
|
36
|
-
src/superlocalmemory/code_graph/changes.py
|
|
37
|
-
src/superlocalmemory/code_graph/communities.py
|
|
38
|
-
src/superlocalmemory/code_graph/config.py
|
|
39
|
-
src/superlocalmemory/code_graph/database.py
|
|
40
|
-
src/superlocalmemory/code_graph/flows.py
|
|
41
|
-
src/superlocalmemory/code_graph/git_hooks.py
|
|
42
|
-
src/superlocalmemory/code_graph/graph_engine.py
|
|
43
|
-
src/superlocalmemory/code_graph/graph_store.py
|
|
44
|
-
src/superlocalmemory/code_graph/incremental.py
|
|
45
|
-
src/superlocalmemory/code_graph/models.py
|
|
46
|
-
src/superlocalmemory/code_graph/parser.py
|
|
47
|
-
src/superlocalmemory/code_graph/resolver.py
|
|
48
|
-
src/superlocalmemory/code_graph/search.py
|
|
49
|
-
src/superlocalmemory/code_graph/service.py
|
|
50
|
-
src/superlocalmemory/code_graph/watcher.py
|
|
51
|
-
src/superlocalmemory/code_graph/bridge/__init__.py
|
|
52
|
-
src/superlocalmemory/code_graph/bridge/entity_resolver.py
|
|
53
|
-
src/superlocalmemory/code_graph/bridge/event_listeners.py
|
|
54
|
-
src/superlocalmemory/code_graph/bridge/fact_enricher.py
|
|
55
|
-
src/superlocalmemory/code_graph/bridge/hebbian_linker.py
|
|
56
|
-
src/superlocalmemory/code_graph/bridge/temporal_checker.py
|
|
57
|
-
src/superlocalmemory/code_graph/extractors/__init__.py
|
|
58
|
-
src/superlocalmemory/code_graph/extractors/python.py
|
|
59
|
-
src/superlocalmemory/code_graph/extractors/typescript.py
|
|
60
|
-
src/superlocalmemory/compliance/__init__.py
|
|
61
|
-
src/superlocalmemory/compliance/abac.py
|
|
62
|
-
src/superlocalmemory/compliance/audit.py
|
|
63
|
-
src/superlocalmemory/compliance/eu_ai_act.py
|
|
64
|
-
src/superlocalmemory/compliance/gdpr.py
|
|
65
|
-
src/superlocalmemory/compliance/lifecycle.py
|
|
66
|
-
src/superlocalmemory/compliance/retention.py
|
|
67
|
-
src/superlocalmemory/compliance/scheduler.py
|
|
68
|
-
src/superlocalmemory/core/__init__.py
|
|
69
|
-
src/superlocalmemory/core/clock_monitor.py
|
|
70
|
-
src/superlocalmemory/core/config.py
|
|
71
|
-
src/superlocalmemory/core/consolidation_engine.py
|
|
72
|
-
src/superlocalmemory/core/context_cache.py
|
|
73
|
-
src/superlocalmemory/core/db_pool.py
|
|
74
|
-
src/superlocalmemory/core/embedding_worker.py
|
|
75
|
-
src/superlocalmemory/core/embeddings.py
|
|
76
|
-
src/superlocalmemory/core/engine.py
|
|
77
|
-
src/superlocalmemory/core/engine_capabilities.py
|
|
78
|
-
src/superlocalmemory/core/engine_lock.py
|
|
79
|
-
src/superlocalmemory/core/engine_wiring.py
|
|
80
|
-
src/superlocalmemory/core/error_catalog.py
|
|
81
|
-
src/superlocalmemory/core/error_envelope.py
|
|
82
|
-
src/superlocalmemory/core/fact_consolidator.py
|
|
83
|
-
src/superlocalmemory/core/file_lock.py
|
|
84
|
-
src/superlocalmemory/core/graph_analyzer.py
|
|
85
|
-
src/superlocalmemory/core/graph_pruner.py
|
|
86
|
-
src/superlocalmemory/core/health_monitor.py
|
|
87
|
-
src/superlocalmemory/core/hooks.py
|
|
88
|
-
src/superlocalmemory/core/loop_watchdog.py
|
|
89
|
-
src/superlocalmemory/core/maintenance.py
|
|
90
|
-
src/superlocalmemory/core/maintenance_scheduler.py
|
|
91
|
-
src/superlocalmemory/core/modes.py
|
|
92
|
-
src/superlocalmemory/core/ollama_embedder.py
|
|
93
|
-
src/superlocalmemory/core/platform_utils.py
|
|
94
|
-
src/superlocalmemory/core/priority_queue.py
|
|
95
|
-
src/superlocalmemory/core/profiles.py
|
|
96
|
-
src/superlocalmemory/core/queue_dispatcher.py
|
|
97
|
-
src/superlocalmemory/core/ram_lock.py
|
|
98
|
-
src/superlocalmemory/core/rate_limit.py
|
|
99
|
-
src/superlocalmemory/core/recall_gate.py
|
|
100
|
-
src/superlocalmemory/core/recall_pipeline.py
|
|
101
|
-
src/superlocalmemory/core/recall_queue.py
|
|
102
|
-
src/superlocalmemory/core/recall_worker.py
|
|
103
|
-
src/superlocalmemory/core/registry.py
|
|
104
|
-
src/superlocalmemory/core/reranker_worker.py
|
|
105
|
-
src/superlocalmemory/core/safe_fs.py
|
|
106
|
-
src/superlocalmemory/core/security_primitives.py
|
|
107
|
-
src/superlocalmemory/core/shadow_router.py
|
|
108
|
-
src/superlocalmemory/core/slm_disabled.py
|
|
109
|
-
src/superlocalmemory/core/slmignore.py
|
|
110
|
-
src/superlocalmemory/core/store_pipeline.py
|
|
111
|
-
src/superlocalmemory/core/summarizer.py
|
|
112
|
-
src/superlocalmemory/core/tier_manager.py
|
|
113
|
-
src/superlocalmemory/core/topic_signature.py
|
|
114
|
-
src/superlocalmemory/core/worker_pool.py
|
|
115
|
-
src/superlocalmemory/dynamics/__init__.py
|
|
116
|
-
src/superlocalmemory/dynamics/activation_guided_quantization.py
|
|
117
|
-
src/superlocalmemory/dynamics/eap_scheduler.py
|
|
118
|
-
src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py
|
|
119
|
-
src/superlocalmemory/dynamics/fisher_langevin_coupling.py
|
|
120
|
-
src/superlocalmemory/encoding/__init__.py
|
|
121
|
-
src/superlocalmemory/encoding/auto_linker.py
|
|
122
|
-
src/superlocalmemory/encoding/cognitive_consolidator.py
|
|
123
|
-
src/superlocalmemory/encoding/consolidator.py
|
|
124
|
-
src/superlocalmemory/encoding/context_generator.py
|
|
125
|
-
src/superlocalmemory/encoding/emotional.py
|
|
126
|
-
src/superlocalmemory/encoding/entity_resolver.py
|
|
127
|
-
src/superlocalmemory/encoding/entropy_gate.py
|
|
128
|
-
src/superlocalmemory/encoding/fact_extractor.py
|
|
129
|
-
src/superlocalmemory/encoding/foresight.py
|
|
130
|
-
src/superlocalmemory/encoding/graph_builder.py
|
|
131
|
-
src/superlocalmemory/encoding/observation_builder.py
|
|
132
|
-
src/superlocalmemory/encoding/scene_builder.py
|
|
133
|
-
src/superlocalmemory/encoding/signal_inference.py
|
|
134
|
-
src/superlocalmemory/encoding/temporal_parser.py
|
|
135
|
-
src/superlocalmemory/encoding/temporal_validator.py
|
|
136
|
-
src/superlocalmemory/encoding/type_router.py
|
|
137
|
-
src/superlocalmemory/evolution/__init__.py
|
|
138
|
-
src/superlocalmemory/evolution/blind_verifier.py
|
|
139
|
-
src/superlocalmemory/evolution/budget.py
|
|
140
|
-
src/superlocalmemory/evolution/evolution_store.py
|
|
141
|
-
src/superlocalmemory/evolution/llm_dispatch.py
|
|
142
|
-
src/superlocalmemory/evolution/mutation_generator.py
|
|
143
|
-
src/superlocalmemory/evolution/skill_evolver.py
|
|
144
|
-
src/superlocalmemory/evolution/triggers.py
|
|
145
|
-
src/superlocalmemory/evolution/types.py
|
|
146
|
-
src/superlocalmemory/hooks/__init__.py
|
|
147
|
-
src/superlocalmemory/hooks/_outcome_common.py
|
|
148
|
-
src/superlocalmemory/hooks/adapter_base.py
|
|
149
|
-
src/superlocalmemory/hooks/antigravity_adapter.py
|
|
150
|
-
src/superlocalmemory/hooks/auto_capture.py
|
|
151
|
-
src/superlocalmemory/hooks/auto_invoker.py
|
|
152
|
-
src/superlocalmemory/hooks/auto_parameterize.py
|
|
153
|
-
src/superlocalmemory/hooks/auto_recall.py
|
|
154
|
-
src/superlocalmemory/hooks/claude_code_hooks.py
|
|
155
|
-
src/superlocalmemory/hooks/context_payload.py
|
|
156
|
-
src/superlocalmemory/hooks/copilot_adapter.py
|
|
157
|
-
src/superlocalmemory/hooks/cross_platform_connector.py
|
|
158
|
-
src/superlocalmemory/hooks/cursor_adapter.py
|
|
159
|
-
src/superlocalmemory/hooks/hook_handlers.py
|
|
160
|
-
src/superlocalmemory/hooks/ide_connector.py
|
|
161
|
-
src/superlocalmemory/hooks/post_tool_async_hook.py
|
|
162
|
-
src/superlocalmemory/hooks/post_tool_outcome_hook.py
|
|
163
|
-
src/superlocalmemory/hooks/prewarm_auth.py
|
|
164
|
-
src/superlocalmemory/hooks/rules_engine.py
|
|
165
|
-
src/superlocalmemory/hooks/session_registry.py
|
|
166
|
-
src/superlocalmemory/hooks/stop_outcome_hook.py
|
|
167
|
-
src/superlocalmemory/hooks/sync_loop.py
|
|
168
|
-
src/superlocalmemory/hooks/user_prompt_hook.py
|
|
169
|
-
src/superlocalmemory/hooks/user_prompt_rehash_hook.py
|
|
170
|
-
src/superlocalmemory/infra/__init__.py
|
|
171
|
-
src/superlocalmemory/infra/auth_middleware.py
|
|
172
|
-
src/superlocalmemory/infra/backup.py
|
|
173
|
-
src/superlocalmemory/infra/cache_manager.py
|
|
174
|
-
src/superlocalmemory/infra/cloud_backup.py
|
|
175
|
-
src/superlocalmemory/infra/event_bus.py
|
|
176
|
-
src/superlocalmemory/infra/heartbeat_monitor.py
|
|
177
|
-
src/superlocalmemory/infra/pid_manager.py
|
|
178
|
-
src/superlocalmemory/infra/process_reaper.py
|
|
179
|
-
src/superlocalmemory/infra/rate_limiter.py
|
|
180
|
-
src/superlocalmemory/infra/webhook_dispatcher.py
|
|
181
|
-
src/superlocalmemory/ingestion/__init__.py
|
|
182
|
-
src/superlocalmemory/ingestion/adapter_manager.py
|
|
183
|
-
src/superlocalmemory/ingestion/base_adapter.py
|
|
184
|
-
src/superlocalmemory/ingestion/calendar_adapter.py
|
|
185
|
-
src/superlocalmemory/ingestion/credentials.py
|
|
186
|
-
src/superlocalmemory/ingestion/gmail_adapter.py
|
|
187
|
-
src/superlocalmemory/ingestion/parsers.py
|
|
188
|
-
src/superlocalmemory/ingestion/transcript_adapter.py
|
|
189
|
-
src/superlocalmemory/learning/__init__.py
|
|
190
|
-
src/superlocalmemory/learning/adaptive.py
|
|
191
|
-
src/superlocalmemory/learning/arm_catalog.py
|
|
192
|
-
src/superlocalmemory/learning/assertion_miner.py
|
|
193
|
-
src/superlocalmemory/learning/bandit.py
|
|
194
|
-
src/superlocalmemory/learning/bandit_cache.py
|
|
195
|
-
src/superlocalmemory/learning/behavioral.py
|
|
196
|
-
src/superlocalmemory/learning/behavioral_listener.py
|
|
197
|
-
src/superlocalmemory/learning/bootstrap.py
|
|
198
|
-
src/superlocalmemory/learning/consolidation_cycle.py
|
|
199
|
-
src/superlocalmemory/learning/consolidation_quantization_worker.py
|
|
200
|
-
src/superlocalmemory/learning/consolidation_worker.py
|
|
201
|
-
src/superlocalmemory/learning/cross_project.py
|
|
202
|
-
src/superlocalmemory/learning/database.py
|
|
203
|
-
src/superlocalmemory/learning/dedup_hnsw.py
|
|
204
|
-
src/superlocalmemory/learning/engagement.py
|
|
205
|
-
src/superlocalmemory/learning/ensemble.py
|
|
206
|
-
src/superlocalmemory/learning/entity_compiler.py
|
|
207
|
-
src/superlocalmemory/learning/fact_outcome_joins.py
|
|
208
|
-
src/superlocalmemory/learning/features.py
|
|
209
|
-
src/superlocalmemory/learning/feedback.py
|
|
210
|
-
src/superlocalmemory/learning/forgetting_scheduler.py
|
|
211
|
-
src/superlocalmemory/learning/hnsw_dedup.py
|
|
212
|
-
src/superlocalmemory/learning/labeler.py
|
|
213
|
-
src/superlocalmemory/learning/legacy_migration.py
|
|
214
|
-
src/superlocalmemory/learning/memory_merge.py
|
|
215
|
-
src/superlocalmemory/learning/model_cache.py
|
|
216
|
-
src/superlocalmemory/learning/model_rollback.py
|
|
217
|
-
src/superlocalmemory/learning/outcome_queue.py
|
|
218
|
-
src/superlocalmemory/learning/outcomes.py
|
|
219
|
-
src/superlocalmemory/learning/pattern_miner.py
|
|
220
|
-
src/superlocalmemory/learning/pattern_miner_constants.py
|
|
221
|
-
src/superlocalmemory/learning/project_context.py
|
|
222
|
-
src/superlocalmemory/learning/quantization_scheduler.py
|
|
223
|
-
src/superlocalmemory/learning/ranker.py
|
|
224
|
-
src/superlocalmemory/learning/ranker_common.py
|
|
225
|
-
src/superlocalmemory/learning/ranker_retrain_legacy.py
|
|
226
|
-
src/superlocalmemory/learning/ranker_retrain_online.py
|
|
227
|
-
src/superlocalmemory/learning/reward.py
|
|
228
|
-
src/superlocalmemory/learning/reward_archive.py
|
|
229
|
-
src/superlocalmemory/learning/reward_boost.py
|
|
230
|
-
src/superlocalmemory/learning/reward_proxy.py
|
|
231
|
-
src/superlocalmemory/learning/shadow_test.py
|
|
232
|
-
src/superlocalmemory/learning/signal_worker.py
|
|
233
|
-
src/superlocalmemory/learning/signals.py
|
|
234
|
-
src/superlocalmemory/learning/skill_performance_miner.py
|
|
235
|
-
src/superlocalmemory/learning/source_quality.py
|
|
236
|
-
src/superlocalmemory/learning/trigram_index.py
|
|
237
|
-
src/superlocalmemory/learning/workflows.py
|
|
238
|
-
src/superlocalmemory/llm/__init__.py
|
|
239
|
-
src/superlocalmemory/llm/backbone.py
|
|
240
|
-
src/superlocalmemory/math/__init__.py
|
|
241
|
-
src/superlocalmemory/math/ebbinghaus.py
|
|
242
|
-
src/superlocalmemory/math/fisher.py
|
|
243
|
-
src/superlocalmemory/math/fisher_quantized.py
|
|
244
|
-
src/superlocalmemory/math/hopfield.py
|
|
245
|
-
src/superlocalmemory/math/langevin.py
|
|
246
|
-
src/superlocalmemory/math/polar_quant.py
|
|
247
|
-
src/superlocalmemory/math/qjl.py
|
|
248
|
-
src/superlocalmemory/math/sheaf.py
|
|
249
|
-
src/superlocalmemory/math/turbo_quant.py
|
|
250
|
-
src/superlocalmemory/mcp/__init__.py
|
|
251
|
-
src/superlocalmemory/mcp/_daemon_proxy.py
|
|
252
|
-
src/superlocalmemory/mcp/_pool_adapter.py
|
|
253
|
-
src/superlocalmemory/mcp/resources.py
|
|
254
|
-
src/superlocalmemory/mcp/server.py
|
|
255
|
-
src/superlocalmemory/mcp/shared.py
|
|
256
|
-
src/superlocalmemory/mcp/tools.py
|
|
257
|
-
src/superlocalmemory/mcp/tools_active.py
|
|
258
|
-
src/superlocalmemory/mcp/tools_code_graph.py
|
|
259
|
-
src/superlocalmemory/mcp/tools_context.py
|
|
260
|
-
src/superlocalmemory/mcp/tools_core.py
|
|
261
|
-
src/superlocalmemory/mcp/tools_evolution.py
|
|
262
|
-
src/superlocalmemory/mcp/tools_learning.py
|
|
263
|
-
src/superlocalmemory/mcp/tools_mesh.py
|
|
264
|
-
src/superlocalmemory/mcp/tools_v28.py
|
|
265
|
-
src/superlocalmemory/mcp/tools_v3.py
|
|
266
|
-
src/superlocalmemory/mcp/tools_v33.py
|
|
267
|
-
src/superlocalmemory/mesh/__init__.py
|
|
268
|
-
src/superlocalmemory/mesh/broker.py
|
|
269
|
-
src/superlocalmemory/migrations/__init__.py
|
|
270
|
-
src/superlocalmemory/migrations/v3_4_25_to_v3_4_26.py
|
|
271
|
-
src/superlocalmemory/parameterization/__init__.py
|
|
272
|
-
src/superlocalmemory/parameterization/pattern_extractor.py
|
|
273
|
-
src/superlocalmemory/parameterization/pii_filter.py
|
|
274
|
-
src/superlocalmemory/parameterization/prompt_injector.py
|
|
275
|
-
src/superlocalmemory/parameterization/prompt_lifecycle.py
|
|
276
|
-
src/superlocalmemory/parameterization/soft_prompt_generator.py
|
|
277
|
-
src/superlocalmemory/retrieval/__init__.py
|
|
278
|
-
src/superlocalmemory/retrieval/agentic.py
|
|
279
|
-
src/superlocalmemory/retrieval/ann_index.py
|
|
280
|
-
src/superlocalmemory/retrieval/bm25_channel.py
|
|
281
|
-
src/superlocalmemory/retrieval/bridge_discovery.py
|
|
282
|
-
src/superlocalmemory/retrieval/channel_registry.py
|
|
283
|
-
src/superlocalmemory/retrieval/engine.py
|
|
284
|
-
src/superlocalmemory/retrieval/entity_channel.py
|
|
285
|
-
src/superlocalmemory/retrieval/forgetting_filter.py
|
|
286
|
-
src/superlocalmemory/retrieval/fusion.py
|
|
287
|
-
src/superlocalmemory/retrieval/hopfield_channel.py
|
|
288
|
-
src/superlocalmemory/retrieval/profile_channel.py
|
|
289
|
-
src/superlocalmemory/retrieval/quantization_aware_search.py
|
|
290
|
-
src/superlocalmemory/retrieval/reranker.py
|
|
291
|
-
src/superlocalmemory/retrieval/semantic_channel.py
|
|
292
|
-
src/superlocalmemory/retrieval/spreading_activation.py
|
|
293
|
-
src/superlocalmemory/retrieval/strategy.py
|
|
294
|
-
src/superlocalmemory/retrieval/temporal_channel.py
|
|
295
|
-
src/superlocalmemory/retrieval/vector_store.py
|
|
296
|
-
src/superlocalmemory/server/__init__.py
|
|
297
|
-
src/superlocalmemory/server/api.py
|
|
298
|
-
src/superlocalmemory/server/bandit_loops.py
|
|
299
|
-
src/superlocalmemory/server/security_middleware.py
|
|
300
|
-
src/superlocalmemory/server/ui.py
|
|
301
|
-
src/superlocalmemory/server/unified_daemon.py
|
|
302
|
-
src/superlocalmemory/server/middleware/__init__.py
|
|
303
|
-
src/superlocalmemory/server/middleware/security_headers.py
|
|
304
|
-
src/superlocalmemory/server/routes/__init__.py
|
|
305
|
-
src/superlocalmemory/server/routes/adapters.py
|
|
306
|
-
src/superlocalmemory/server/routes/agents.py
|
|
307
|
-
src/superlocalmemory/server/routes/backup.py
|
|
308
|
-
src/superlocalmemory/server/routes/behavioral.py
|
|
309
|
-
src/superlocalmemory/server/routes/brain.py
|
|
310
|
-
src/superlocalmemory/server/routes/chat.py
|
|
311
|
-
src/superlocalmemory/server/routes/compliance.py
|
|
312
|
-
src/superlocalmemory/server/routes/data_io.py
|
|
313
|
-
src/superlocalmemory/server/routes/entity.py
|
|
314
|
-
src/superlocalmemory/server/routes/events.py
|
|
315
|
-
src/superlocalmemory/server/routes/evolution.py
|
|
316
|
-
src/superlocalmemory/server/routes/helpers.py
|
|
317
|
-
src/superlocalmemory/server/routes/ingest.py
|
|
318
|
-
src/superlocalmemory/server/routes/insights.py
|
|
319
|
-
src/superlocalmemory/server/routes/learning.py
|
|
320
|
-
src/superlocalmemory/server/routes/lifecycle.py
|
|
321
|
-
src/superlocalmemory/server/routes/memories.py
|
|
322
|
-
src/superlocalmemory/server/routes/mesh.py
|
|
323
|
-
src/superlocalmemory/server/routes/prewarm.py
|
|
324
|
-
src/superlocalmemory/server/routes/profiles.py
|
|
325
|
-
src/superlocalmemory/server/routes/stats.py
|
|
326
|
-
src/superlocalmemory/server/routes/tiers.py
|
|
327
|
-
src/superlocalmemory/server/routes/timeline.py
|
|
328
|
-
src/superlocalmemory/server/routes/token.py
|
|
329
|
-
src/superlocalmemory/server/routes/v3_api.py
|
|
330
|
-
src/superlocalmemory/server/routes/ws.py
|
|
331
|
-
src/superlocalmemory/skills/slm-build-graph/SKILL.md
|
|
332
|
-
src/superlocalmemory/skills/slm-list-recent/SKILL.md
|
|
333
|
-
src/superlocalmemory/skills/slm-recall/SKILL.md
|
|
334
|
-
src/superlocalmemory/skills/slm-remember/SKILL.md
|
|
335
|
-
src/superlocalmemory/skills/slm-show-patterns/SKILL.md
|
|
336
|
-
src/superlocalmemory/skills/slm-status/SKILL.md
|
|
337
|
-
src/superlocalmemory/skills/slm-switch-profile/SKILL.md
|
|
338
|
-
src/superlocalmemory/storage/__init__.py
|
|
339
|
-
src/superlocalmemory/storage/access_control.py
|
|
340
|
-
src/superlocalmemory/storage/access_log.py
|
|
341
|
-
src/superlocalmemory/storage/database.py
|
|
342
|
-
src/superlocalmemory/storage/embedding_migrator.py
|
|
343
|
-
src/superlocalmemory/storage/migration_runner.py
|
|
344
|
-
src/superlocalmemory/storage/migration_v33.py
|
|
345
|
-
src/superlocalmemory/storage/migrations.py
|
|
346
|
-
src/superlocalmemory/storage/models.py
|
|
347
|
-
src/superlocalmemory/storage/quantized_store.py
|
|
348
|
-
src/superlocalmemory/storage/schema.py
|
|
349
|
-
src/superlocalmemory/storage/schema_code_graph.py
|
|
350
|
-
src/superlocalmemory/storage/schema_v32.py
|
|
351
|
-
src/superlocalmemory/storage/schema_v3410.py
|
|
352
|
-
src/superlocalmemory/storage/schema_v3411.py
|
|
353
|
-
src/superlocalmemory/storage/schema_v343.py
|
|
354
|
-
src/superlocalmemory/storage/schema_v347.py
|
|
355
|
-
src/superlocalmemory/storage/v2_migrator.py
|
|
356
|
-
src/superlocalmemory/storage/migrations/M001_add_signal_features_columns.py
|
|
357
|
-
src/superlocalmemory/storage/migrations/M002_model_state_history.py
|
|
358
|
-
src/superlocalmemory/storage/migrations/M003_migration_log.py
|
|
359
|
-
src/superlocalmemory/storage/migrations/M004_cross_platform_sync_log.py
|
|
360
|
-
src/superlocalmemory/storage/migrations/M005_bandit_tables.py
|
|
361
|
-
src/superlocalmemory/storage/migrations/M006_action_outcomes_reward.py
|
|
362
|
-
src/superlocalmemory/storage/migrations/M007_pending_outcomes.py
|
|
363
|
-
src/superlocalmemory/storage/migrations/M009_model_lineage.py
|
|
364
|
-
src/superlocalmemory/storage/migrations/M010_evolution_config.py
|
|
365
|
-
src/superlocalmemory/storage/migrations/M011_archive_and_merge.py
|
|
366
|
-
src/superlocalmemory/storage/migrations/M012_shadow_observations.py
|
|
367
|
-
src/superlocalmemory/storage/migrations/M013_bi_temporal_columns.py
|
|
368
|
-
src/superlocalmemory/storage/migrations/__init__.py
|
|
369
|
-
src/superlocalmemory/trust/__init__.py
|
|
370
|
-
src/superlocalmemory/trust/gate.py
|
|
371
|
-
src/superlocalmemory/trust/provenance.py
|
|
372
|
-
src/superlocalmemory/trust/scorer.py
|
|
373
|
-
src/superlocalmemory/trust/signals.py
|
|
374
|
-
src/superlocalmemory/ui/index.html
|
|
375
|
-
src/superlocalmemory/ui/css/brain.css
|
|
376
|
-
src/superlocalmemory/ui/css/legacy-dashboard.css
|
|
377
|
-
src/superlocalmemory/ui/css/neural-glass.css
|
|
378
|
-
src/superlocalmemory/ui/js/agents.js
|
|
379
|
-
src/superlocalmemory/ui/js/auto-settings.js
|
|
380
|
-
src/superlocalmemory/ui/js/brain.js
|
|
381
|
-
src/superlocalmemory/ui/js/clusters.js
|
|
382
|
-
src/superlocalmemory/ui/js/compliance.js
|
|
383
|
-
src/superlocalmemory/ui/js/core.js
|
|
384
|
-
src/superlocalmemory/ui/js/dashboard.js
|
|
385
|
-
src/superlocalmemory/ui/js/events.js
|
|
386
|
-
src/superlocalmemory/ui/js/fact-detail.js
|
|
387
|
-
src/superlocalmemory/ui/js/feedback.js
|
|
388
|
-
src/superlocalmemory/ui/js/graph-event-bus.js
|
|
389
|
-
src/superlocalmemory/ui/js/graph-filters.js
|
|
390
|
-
src/superlocalmemory/ui/js/graph-ui.js
|
|
391
|
-
src/superlocalmemory/ui/js/ide-status.js
|
|
392
|
-
src/superlocalmemory/ui/js/init.js
|
|
393
|
-
src/superlocalmemory/ui/js/knowledge-graph.js
|
|
394
|
-
src/superlocalmemory/ui/js/lifecycle.js
|
|
395
|
-
src/superlocalmemory/ui/js/math-health.js
|
|
396
|
-
src/superlocalmemory/ui/js/memories.js
|
|
397
|
-
src/superlocalmemory/ui/js/memory-chat.js
|
|
398
|
-
src/superlocalmemory/ui/js/memory-timeline.js
|
|
399
|
-
src/superlocalmemory/ui/js/modal.js
|
|
400
|
-
src/superlocalmemory/ui/js/ng-entities.js
|
|
401
|
-
src/superlocalmemory/ui/js/ng-health.js
|
|
402
|
-
src/superlocalmemory/ui/js/ng-ingestion.js
|
|
403
|
-
src/superlocalmemory/ui/js/ng-mesh.js
|
|
404
|
-
src/superlocalmemory/ui/js/ng-shell.js
|
|
405
|
-
src/superlocalmemory/ui/js/ng-skills.js
|
|
406
|
-
src/superlocalmemory/ui/js/profiles.js
|
|
407
|
-
src/superlocalmemory/ui/js/quick-actions.js
|
|
408
|
-
src/superlocalmemory/ui/js/recall-lab.js
|
|
409
|
-
src/superlocalmemory/ui/js/search.js
|
|
410
|
-
src/superlocalmemory/ui/js/settings.js
|
|
411
|
-
src/superlocalmemory/ui/js/timeline.js
|
|
412
|
-
src/superlocalmemory/ui/js/trust-dashboard.js
|
|
413
|
-
src/superlocalmemory/ui/vendor/bootstrap.bundle.min.js
|
|
414
|
-
src/superlocalmemory/ui/vendor/bootstrap.min.css
|
|
415
|
-
src/superlocalmemory/ui/vendor/d3.v7.min.js
|
|
416
|
-
src/superlocalmemory/ui/vendor/graphology-library.min.js
|
|
417
|
-
src/superlocalmemory/ui/vendor/graphology.umd.min.js
|
|
418
|
-
src/superlocalmemory/ui/vendor/sigma.min.js
|
|
419
|
-
src/superlocalmemory/ui/vendor/bootstrap-icons/bootstrap-icons.css
|
|
420
|
-
src/superlocalmemory/ui/vendor/bootstrap-icons/fonts/bootstrap-icons.woff
|
|
421
|
-
src/superlocalmemory/ui/vendor/bootstrap-icons/fonts/bootstrap-icons.woff2
|
|
422
|
-
src/superlocalmemory/ui/vendor/inter-ui/inter-variable.min.css
|
|
423
|
-
src/superlocalmemory/ui/vendor/inter-ui/variable/InterVariable-Italic.woff2
|
|
424
|
-
src/superlocalmemory/ui/vendor/inter-ui/variable/InterVariable.woff2
|
|
425
|
-
tests/test_auto_hooks.py
|
|
426
|
-
tests/test_behavioral_full.py
|
|
427
|
-
tests/test_claude_hooks.py
|
|
428
|
-
tests/test_cli.py
|
|
429
|
-
tests/test_cli_json.py
|
|
430
|
-
tests/test_cli_v33.py
|
|
431
|
-
tests/test_compliance_full.py
|
|
432
|
-
tests/test_config_system.py
|
|
433
|
-
tests/test_engine_hooks.py
|
|
434
|
-
tests/test_event_bus.py
|
|
435
|
-
tests/test_features.py
|
|
436
|
-
tests/test_final_locomo_mini.py
|
|
437
|
-
tests/test_hook_handlers.py
|
|
438
|
-
tests/test_ide_connector.py
|
|
439
|
-
tests/test_infra.py
|
|
440
|
-
tests/test_learning_advanced.py
|
|
441
|
-
tests/test_learning_collectors.py
|
|
442
|
-
tests/test_llm_provider.py
|
|
443
|
-
tests/test_mcp_server.py
|
|
444
|
-
tests/test_migration.py
|
|
445
|
-
tests/test_post_install.py
|
|
446
|
-
tests/test_ranker.py
|
|
447
|
-
tests/test_trust_full.py
|
|
448
|
-
tests/test_v3_api.py
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
httpx>=0.24.0
|
|
2
|
-
numpy<3.0.0,>=1.26.0
|
|
3
|
-
scipy<2.0.0,>=1.12.0
|
|
4
|
-
networkx>=3.0
|
|
5
|
-
mcp>=1.0.0
|
|
6
|
-
python-dateutil>=2.9.0.post0
|
|
7
|
-
rank-bm25>=0.2.2
|
|
8
|
-
vadersentiment>=3.3.2
|
|
9
|
-
einops>=0.8.2
|
|
10
|
-
fastapi[all]>=0.135.1
|
|
11
|
-
uvicorn>=0.42.0
|
|
12
|
-
websockets>=16.0
|
|
13
|
-
lightgbm>=4.0.0
|
|
14
|
-
diskcache>=5.6.0
|
|
15
|
-
orjson>=3.9.0
|
|
16
|
-
tree-sitter<1,>=0.23.0
|
|
17
|
-
tree-sitter-language-pack<2,>=0.3
|
|
18
|
-
rustworkx<1,>=0.15
|
|
19
|
-
watchdog<6,>=4.0
|
|
20
|
-
psutil>=5.9.0
|
|
21
|
-
structlog<27.0.0,>=24.0.0
|
|
22
|
-
portalocker<4.0.0,>=2.7.0
|
|
23
|
-
sentence-transformers[onnx]>=5.0.0
|
|
24
|
-
torch>=2.2.0
|
|
25
|
-
scikit-learn<2.0.0,>=1.3.0
|
|
26
|
-
|
|
27
|
-
[dev]
|
|
28
|
-
pytest>=8.0
|
|
29
|
-
pytest-cov>=4.1
|
|
30
|
-
sqlite-vec>=0.1.6
|
|
31
|
-
|
|
32
|
-
[full]
|
|
33
|
-
superlocalmemory[ingestion,learning,performance,search,ui]
|
|
34
|
-
|
|
35
|
-
[ingestion]
|
|
36
|
-
keyring>=25.0.0
|
|
37
|
-
google-auth-oauthlib>=1.2.0
|
|
38
|
-
google-api-python-client>=2.100.0
|
|
39
|
-
icalendar>=6.0.0
|
|
40
|
-
|
|
41
|
-
[learning]
|
|
42
|
-
lightgbm>=4.0.0
|
|
43
|
-
|
|
44
|
-
[performance]
|
|
45
|
-
diskcache>=5.6.0
|
|
46
|
-
orjson>=3.9.0
|
|
47
|
-
|
|
48
|
-
[search]
|
|
49
|
-
sentence-transformers[onnx]>=5.0.0
|
|
50
|
-
einops>=0.8.2
|
|
51
|
-
torch>=2.2.0
|
|
52
|
-
scikit-learn<2.0.0,>=1.3.0
|
|
53
|
-
geoopt>=0.5.0
|
|
54
|
-
onnxruntime>=1.17.0
|
|
55
|
-
|
|
56
|
-
[ui]
|
|
57
|
-
fastapi[all]>=0.135.1
|
|
58
|
-
uvicorn>=0.42.0
|
|
59
|
-
python-multipart<1.0.0,>=0.0.6
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
superlocalmemory
|