superlocalmemory 3.2.3 → 3.3.0

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +43 -1
  2. package/README.md +106 -71
  3. package/package.json +1 -2
  4. package/pyproject.toml +16 -1
  5. package/src/superlocalmemory/cli/commands.py +309 -0
  6. package/src/superlocalmemory/cli/main.py +44 -0
  7. package/src/superlocalmemory/core/config.py +276 -4
  8. package/src/superlocalmemory/core/consolidation_engine.py +37 -0
  9. package/src/superlocalmemory/core/engine.py +21 -0
  10. package/src/superlocalmemory/core/engine_wiring.py +58 -8
  11. package/src/superlocalmemory/dynamics/activation_guided_quantization.py +374 -0
  12. package/src/superlocalmemory/dynamics/eap_scheduler.py +276 -0
  13. package/src/superlocalmemory/dynamics/ebbinghaus_langevin_coupling.py +171 -0
  14. package/src/superlocalmemory/encoding/cognitive_consolidator.py +804 -0
  15. package/src/superlocalmemory/hooks/auto_invoker.py +46 -8
  16. package/src/superlocalmemory/hooks/auto_parameterize.py +147 -0
  17. package/src/superlocalmemory/infra/heartbeat_monitor.py +140 -0
  18. package/src/superlocalmemory/infra/pid_manager.py +193 -0
  19. package/src/superlocalmemory/infra/process_reaper.py +572 -0
  20. package/src/superlocalmemory/learning/consolidation_quantization_worker.py +115 -0
  21. package/src/superlocalmemory/learning/forgetting_scheduler.py +263 -0
  22. package/src/superlocalmemory/learning/quantization_scheduler.py +320 -0
  23. package/src/superlocalmemory/math/ebbinghaus.py +309 -0
  24. package/src/superlocalmemory/math/fisher_quantized.py +251 -0
  25. package/src/superlocalmemory/math/hopfield.py +279 -0
  26. package/src/superlocalmemory/math/polar_quant.py +379 -0
  27. package/src/superlocalmemory/math/qjl.py +115 -0
  28. package/src/superlocalmemory/mcp/server.py +2 -0
  29. package/src/superlocalmemory/mcp/tools_v3.py +10 -0
  30. package/src/superlocalmemory/mcp/tools_v33.py +351 -0
  31. package/src/superlocalmemory/parameterization/__init__.py +47 -0
  32. package/src/superlocalmemory/parameterization/pattern_extractor.py +534 -0
  33. package/src/superlocalmemory/parameterization/pii_filter.py +106 -0
  34. package/src/superlocalmemory/parameterization/prompt_injector.py +216 -0
  35. package/src/superlocalmemory/parameterization/prompt_lifecycle.py +275 -0
  36. package/src/superlocalmemory/parameterization/soft_prompt_generator.py +425 -0
  37. package/src/superlocalmemory/retrieval/engine.py +21 -3
  38. package/src/superlocalmemory/retrieval/forgetting_filter.py +145 -0
  39. package/src/superlocalmemory/retrieval/hopfield_channel.py +335 -0
  40. package/src/superlocalmemory/retrieval/quantization_aware_search.py +133 -0
  41. package/src/superlocalmemory/retrieval/strategy.py +16 -6
  42. package/src/superlocalmemory/server/routes/agents.py +68 -8
  43. package/src/superlocalmemory/server/routes/learning.py +18 -1
  44. package/src/superlocalmemory/server/routes/lifecycle.py +36 -17
  45. package/src/superlocalmemory/server/routes/v3_api.py +503 -1
  46. package/src/superlocalmemory/storage/database.py +206 -0
  47. package/src/superlocalmemory/storage/embedding_migrator.py +178 -0
  48. package/src/superlocalmemory/storage/migration_v33.py +140 -0
  49. package/src/superlocalmemory/storage/quantized_store.py +261 -0
  50. package/src/superlocalmemory/storage/schema_v32.py +137 -0
  51. package/conftest.py +0 -5
package/CHANGELOG.md CHANGED
@@ -16,6 +16,48 @@ SuperLocalMemory V3 - Intelligent local memory system for AI coding assistants.
16
16
 
17
17
  ---
18
18
 
19
+ ## [3.3.0] - 2026-03-31 — The Living Brain
20
+
21
+ ### New Features
22
+ - **Adaptive Memory Lifecycle** — memories naturally strengthen with use and fade when neglected. No manual cleanup needed.
23
+ - **Smart Compression** — embedding precision adapts to memory importance, achieving up to 32x storage savings on low-priority memories.
24
+ - **Cognitive Consolidation** — automatic pattern extraction from clusters of related memories. Your knowledge graph self-organizes.
25
+ - **Pattern Learning** — auto-learned soft prompts injected into agent context at session start. The system teaches itself what matters.
26
+ - **Hopfield Retrieval** — 6th retrieval channel for vague or partial query completion. Ask half a question, get the whole answer.
27
+ - **Process Health** — automatic detection and cleanup of orphaned SLM processes. No more zombie workers.
28
+
29
+ ### New CLI Commands
30
+ - `slm decay` — run memory lifecycle review
31
+ - `slm quantize` — run smart compression cycle
32
+ - `slm consolidate --cognitive` — extract patterns from memory clusters
33
+ - `slm soft-prompts` — view auto-learned patterns
34
+ - `slm reap` — clean orphaned processes
35
+
36
+ ### New MCP Tools
37
+ - `forget` — programmatic memory archival via lifecycle rules
38
+ - `quantize` — trigger smart compression on demand
39
+ - `consolidate_cognitive` — extract and store patterns from memory clusters
40
+ - `get_soft_prompts` — retrieve auto-learned patterns for context injection
41
+ - `reap_processes` — clean orphaned SLM processes
42
+ - `get_retention_stats` — memory lifecycle analytics
43
+
44
+ ### Dashboard
45
+ - 7 new API endpoints for lifecycle stats, compression stats, patterns, and process health
46
+ - New dashboard tabs: Memory Lifecycle, Compression, Patterns
47
+
48
+ ### Improvements
49
+ - Mode A/B memory usage reduced from ~4GB to ~40MB (100x reduction)
50
+ - Embedding migration on mode switch (auto-detects model change)
51
+ - Forgetting filter in retrieval pipeline (archived memories excluded from results)
52
+ - 6-channel retrieval (was 5)
53
+
54
+ ### Migration
55
+ - Fully backward compatible with 3.2.x
56
+ - New tables created automatically on first run
57
+ - No manual migration needed
58
+
59
+ ---
60
+
19
61
  ## [3.2.2] - 2026-03-30
20
62
 
21
63
  ### Added
@@ -381,7 +423,7 @@ We use [Semantic Versioning](https://semver.org/):
381
423
  - **MINOR:** New features (backward compatible, e.g., 2.0.0 → 2.1.0)
382
424
  - **PATCH:** Bug fixes (backward compatible, e.g., 2.1.0 → 2.1.1)
383
425
 
384
- **Current Version:** v3.2.2
426
+ **Current Version:** v3.3.0
385
427
  **Website:** [superlocalmemory.com](https://superlocalmemory.com)
386
428
  **npm:** `npm install -g superlocalmemory`
387
429
 
package/README.md CHANGED
@@ -2,7 +2,7 @@
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.2</h1>
5
+ <h1 align="center">SuperLocalMemory V3.3</h1>
6
6
  <p align="center"><strong>The first local-only AI memory to break 74% retrieval on LoCoMo.<br/>No cloud. No APIs. No data leaves your machine.</strong></p>
7
7
 
8
8
  <p align="center">
@@ -47,63 +47,109 @@ Mathematical layers contribute **+12.7 percentage points** on average across 6 c
47
47
 
48
48
  ---
49
49
 
50
- ## What's New in V3.2 — The Living Brain
50
+ ## What's New in V3.3 — The Living Brain Evolves
51
51
 
52
- > Your AI agent now remembers the way humans do: associatively, temporally, and with consolidation during idle time. V3.2 transforms SLM from a retrieval engine into a living memory system that surfaces what you need before you ask for it.
52
+ > V3.3 gives your memory a lifecycle. Memories strengthen when used, fade when neglected, compress when idle, and consolidate into reusable patterns all automatically, all locally. Your agent gets smarter the longer it runs.
53
53
 
54
- ### Headline Features
54
+ ### Features at a Glance
55
55
 
56
- **100x Faster Recall** — Retrieval latency drops from ~500ms to <10ms at 10K facts. Vector KNN search replaces full-table scan. You feel the difference on the first query.
56
+ - **Adaptive Memory Lifecycle** — memories naturally strengthen with use and fade when neglected. No manual cleanup, no hardcoded TTLs.
57
+ - **Smart Compression** — embedding precision adapts to memory importance. Low-priority memories compress up to 32x. High-value memories stay full-resolution.
58
+ - **Cognitive Consolidation** — the system automatically extracts patterns from clusters of related memories. One decision referenced 50 times becomes one reusable insight.
59
+ - **Pattern Learning** — auto-learned soft prompts injected into your agent's context at session start. The system teaches itself what matters to you.
60
+ - **Hopfield Retrieval (6th Channel)** — vague or partial queries now complete themselves. Ask half a question, get the whole answer.
61
+ - **Process Health** — orphaned SLM processes detected and cleaned automatically. No more zombie workers eating RAM.
57
62
 
58
- **Automatic Memory Surfacing** — Memories now come to you. A multi-signal scoring engine (similarity + recency + frequency + trust) proactively injects relevant context at session start and during conversations. No more "I forgot we decided that last week."
63
+ ### New CLI Commands
59
64
 
60
- **Associative Retrieval (5th Channel)** — V3 had 4 retrieval channels. V3.2 adds a 5th: multi-hop spreading activation across your knowledge graph. Ask about "deployment" and it surfaces the related database migration decision three hops away.
65
+ ```bash
66
+ # Run a memory lifecycle review — strengthens active memories, archives neglected ones
67
+ slm decay
68
+
69
+ # Run smart compression — adapts embedding precision to memory importance
70
+ slm quantize
61
71
 
62
- **Temporal Intelligence** Facts now carry time-awareness. Bi-temporal validity tracks when something was true vs. when it was recorded. Contradictions are detected automatically: "We use Postgres" + "We migrated to MySQL" triggers a conflict resolution flow.
72
+ # Extract reusable patterns from memory clusters
73
+ slm consolidate --cognitive
63
74
 
64
- **Sleep-Time Consolidation** During idle periods, SLM compresses, deduplicates, and reorganizes your memory store. Redundant facts merge. Clusters tighten. Important memories get promoted to Core Memory blocks that stay permanently in context (inspired by Letta's core memory, but fully local).
75
+ # View auto-learned patterns that get injected into agent context
76
+ slm soft-prompts
65
77
 
66
- **Core Memory Blocks** Pin your most critical context (architecture decisions, team conventions, project constraints) into always-available working memory. These blocks are injected into every session automatically — your agent never starts cold.
78
+ # Clean up orphaned SLM processes
79
+ slm reap
80
+ ```
67
81
 
68
- ### By the Numbers
82
+ ### New MCP Tools
69
83
 
70
- | Metric | V3.0 | V3.2 | Change |
84
+ | Tool | Description |
85
+ |:-----|:------------|
86
+ | `forget` | Programmatic memory archival via lifecycle rules |
87
+ | `quantize` | Trigger smart compression on demand |
88
+ | `consolidate_cognitive` | Extract and store patterns from memory clusters |
89
+ | `get_soft_prompts` | Retrieve auto-learned patterns for context injection |
90
+ | `reap_processes` | Clean orphaned SLM processes |
91
+ | `get_retention_stats` | Memory lifecycle analytics |
92
+
93
+ ### Mode A/B Memory Improvements
94
+
95
+ | Metric | V3.2 | V3.3 | Change |
71
96
  |:-------|:----:|:----:|:------:|
72
- | Recall latency (10K facts) | ~500ms | <10ms | **100x faster** |
73
- | Retrieval channels | 4 | 5 | +spreading activation |
74
- | MCP tools | 24 | 29 | +5 new |
75
- | CLI commands | 16 | 21 | +5 new |
76
- | Dashboard tabs | 17 | 20 | +3 new |
77
- | API endpoints | | 9 new | configuration & status |
78
- | DB tables | 9 | 18 | +9 for temporal, consolidation, core memory |
97
+ | RAM usage (Mode A/B) | ~4GB | ~40MB | **100x reduction** |
98
+ | Retrieval channels | 5 | 6 | +Hopfield completion |
99
+ | MCP tools | 29 | 35 | +6 new |
100
+ | CLI commands | 21 | 26 | +5 new |
101
+ | Dashboard tabs | 20 | 23 | +3 new |
102
+ | API endpoints | 9 | 16 | +7 new |
103
+
104
+ Embedding migration happens automatically when you switch modes — no manual steps needed.
105
+
106
+ ### Dashboard
107
+
108
+ Three new tabs: **Memory Lifecycle** (retention curves, decay stats), **Compression** (storage savings, precision distribution), and **Patterns** (auto-learned soft prompts, consolidation history). Seven new API endpoints power the new views.
79
109
 
80
- ### Enable V3.2 Features
110
+ ### Enable V3.3 Features
81
111
 
82
112
  All new features default OFF. Zero breaking changes. Opt in when ready:
83
113
 
84
114
  ```bash
85
- # Turn on automatic memory surfacing
86
- slm config set auto_invoke.enabled true
115
+ # Turn on adaptive memory lifecycle
116
+ slm config set lifecycle.enabled true
87
117
 
88
- # Turn on sleep-time consolidation
89
- slm config set consolidation.enabled true
118
+ # Turn on smart compression
119
+ slm config set quantization.enabled true
90
120
 
91
- # Turn on temporal intelligence
92
- slm config set temporal.enabled true
121
+ # Turn on cognitive consolidation
122
+ slm config set consolidation.cognitive.enabled true
93
123
 
94
- # Turn on associative retrieval (5th channel)
95
- slm config set retrieval.synapse.enabled true
96
- ```
124
+ # Turn on pattern learning (soft prompts)
125
+ slm config set soft_prompts.enabled true
97
126
 
98
- Or enable everything at once:
127
+ # Turn on Hopfield retrieval (6th channel)
128
+ slm config set retrieval.hopfield.enabled true
99
129
 
100
- ```bash
101
- slm config set v32_features.all true
130
+ # Or enable everything at once
131
+ slm config set v33_features.all true
102
132
  ```
103
133
 
104
- **Fully backward compatible.** All 29 MCP tools, 21 CLI commands work the same. Existing data untouched. New features activate only when you flip the switch.
134
+ **Fully backward compatible.** All existing MCP tools, CLI commands, and configs work unchanged. New tables are created automatically on first run. No migration needed.
135
+
136
+ ---
137
+
138
+ <details>
139
+ <summary><strong>What's New in V3.2 — The Living Brain</strong> (click to expand)</summary>
140
+
141
+ 100x faster recall (<10ms at 10K facts), automatic memory surfacing, associative retrieval (5th channel), temporal intelligence with bi-temporal validity, sleep-time consolidation, and core memory blocks. All features default OFF, zero breaking changes.
142
+
143
+ | Metric | V3.0 | V3.2 | Change |
144
+ |:-------|:----:|:----:|:------:|
145
+ | Recall latency (10K facts) | ~500ms | <10ms | **100x faster** |
146
+ | Retrieval channels | 4 | 5 | +spreading activation |
147
+ | MCP tools | 24 | 29 | +5 new |
148
+ | DB tables | 9 | 18 | +9 new |
149
+
150
+ Enable with `slm config set v32_features.all true`. See the [V3.2 Overview](https://github.com/qualixar/superlocalmemory/wiki/V3.2-Overview) wiki page for details.
105
151
 
106
- > **V3.2 Paper** — Technical details, formal guarantees, and benchmark results in the upcoming companion paper. Watch the [arXiv page](https://arxiv.org/abs/2603.14588) for updates.
152
+ </details>
107
153
 
108
154
  ---
109
155
 
@@ -145,7 +191,7 @@ slm status
145
191
  }
146
192
  ```
147
193
 
148
- 27 MCP tools + 7 resources available. Works with Claude Code, Cursor, Windsurf, VS Code Copilot, Continue, Cody, ChatGPT Desktop, Gemini CLI, JetBrains, Zed, and 17+ AI tools. **V3.1: Active Memory tools auto-learn your patterns.**
194
+ 35 MCP tools + 7 resources available. Works with Claude Code, Cursor, Windsurf, VS Code Copilot, Continue, Cody, ChatGPT Desktop, Gemini CLI, JetBrains, Zed, and 17+ AI tools. **V3.3: Adaptive lifecycle, smart compression, and pattern learning.**
149
195
 
150
196
  ### Dual Interface: MCP + CLI
151
197
 
@@ -196,11 +242,13 @@ slm mode c # Cloud LLM
196
242
  ## Architecture
197
243
 
198
244
  ```
199
- Query ──► Strategy Classifier ──► 4 Parallel Channels:
245
+ Query ──► Strategy Classifier ──► 6 Parallel Channels:
200
246
  ├── Semantic (Fisher-Rao geodesic distance)
201
247
  ├── BM25 (keyword matching)
202
248
  ├── Entity Graph (spreading activation, 3 hops)
203
- └── Temporal (date-aware retrieval)
249
+ ├── Temporal (date-aware retrieval)
250
+ ├── Associative (multi-hop spreading activation)
251
+ └── Hopfield (partial query completion)
204
252
 
205
253
  RRF Fusion (k=60)
206
254
 
@@ -304,58 +352,39 @@ slm dashboard # Opens at http://localhost:8765
304
352
  </p>
305
353
  </details>
306
354
 
307
- 17 tabs: Dashboard, Recall Lab, Knowledge Graph, Memories, Trust Scores, Math Health, Compliance, Learning, IDE Connections, Settings, and more. Runs locally — no data leaves your machine.
355
+ 23 tabs: Dashboard, Recall Lab, Knowledge Graph, Memories, Trust Scores, Math Health, Compliance, Learning, IDE Connections, Settings, Memory Lifecycle, Compression, Patterns, and more. Runs locally — no data leaves your machine.
308
356
 
309
357
  ---
310
358
 
311
- ## Active Memory (V3.1) — Memory That Learns
312
-
313
- Most AI memory systems are passive databases — you store, you search, you get results. **SuperLocalMemory learns.**
314
-
315
- Every recall you make generates learning signals. Over time, the system adapts to your patterns:
359
+ <details>
360
+ <summary><strong>Active Memory (V3.1) — Memory That Learns</strong> (click to expand)</summary>
316
361
 
317
- | Phase | Signals | What Happens |
318
- |-------|---------|-------------|
319
- | **Baseline** | 0-19 | Cross-encoder ranking (default behavior) |
320
- | **Rule-Based** | 20+ | Heuristic boosts: recency, access count, trust score |
321
- | **ML Model** | 200+ | LightGBM model trained on YOUR usage patterns |
362
+ Every recall generates learning signals. Over time, the system adapts to your patterns — from baseline (0-19 signals) → rule-based (20+) → ML model (200+, LightGBM trained on YOUR usage). Zero LLM tokens spent. Four mathematical signals computed locally: co-retrieval, confidence lifecycle, channel performance, and entropy gap.
322
363
 
323
- ### Zero-Cost Learning Signals
324
- No LLM tokens spent. Four mathematical signals computed locally:
325
- - **Co-Retrieval** — memories retrieved together strengthen their connections
326
- - **Confidence Lifecycle** — accessed facts get boosted, unused facts decay
327
- - **Channel Performance** — tracks which retrieval channel works best for your queries
328
- - **Entropy Gap** — surprising content gets prioritized for deeper indexing
364
+ Auto-capture hooks: `slm hooks install` + `slm observe` + `slm session-context`. MCP tools: `session_init`, `observe`, `report_feedback`.
329
365
 
330
- ### Auto-Capture & Auto-Recall
331
- ```bash
332
- slm hooks install # Install Claude Code hooks for invisible injection
333
- slm observe "We decided to use PostgreSQL" # Auto-detects decisions, bugs, preferences
334
- slm session-context # Get relevant context at session start
335
- ```
366
+ **No competitor learns at zero token cost.**
336
367
 
337
- ### MCP Active Memory Tools
338
- Three new tools for AI assistants:
339
- - `session_init` — call at session start, get relevant project context automatically
340
- - `observe` — send conversation content, auto-captures decisions/bugs/preferences
341
- - `report_feedback` — explicit feedback for faster learning
342
-
343
- **No competitor learns at zero token cost.** Mem0, Zep, and Letta all require cloud LLM calls for their learning loops. SLM learns through mathematics.
368
+ </details>
344
369
 
345
370
  ---
346
371
 
347
372
  ## Features
348
373
 
349
374
  ### Retrieval
350
- - 4-channel hybrid: Semantic (Fisher-Rao) + BM25 + Entity Graph + Temporal
375
+ - 6-channel hybrid: Semantic (Fisher-Rao) + BM25 + Entity Graph + Temporal + Associative + Hopfield
351
376
  - RRF fusion + cross-encoder reranking
352
377
  - Agentic sufficiency verification (auto-retry on weak results)
353
378
  - Adaptive ranking with LightGBM (learns from usage)
379
+ - Hopfield completion for vague/partial queries
354
380
 
355
381
  ### Intelligence
356
382
  - 11-step ingestion pipeline (entity resolution, fact extraction, emotional tagging, scene building)
357
383
  - Automatic contradiction detection via sheaf cohomology
358
- - Self-organizing memory lifecycle (no hardcoded thresholds)
384
+ - Adaptive memory lifecycle memories strengthen with use, fade when neglected
385
+ - Smart compression — embedding precision adapts to memory importance (up to 32x savings)
386
+ - Cognitive consolidation — automatic pattern extraction from related memories
387
+ - Auto-learned soft prompts injected into agent context
359
388
  - Behavioral pattern detection and outcome tracking
360
389
 
361
390
  ### Trust & Security
@@ -365,12 +394,13 @@ Three new tools for AI assistants:
365
394
  - Tamper-proof hash-chain audit trail (SHA-256 linked entries)
366
395
 
367
396
  ### Infrastructure
368
- - 17-tab web dashboard with real-time visualization
397
+ - 23-tab web dashboard with real-time visualization
369
398
  - 17+ IDE integrations (Claude, Cursor, Windsurf, VS Code, JetBrains, Zed, etc.)
370
- - 24 MCP tools + 6 MCP resources
399
+ - 35 MCP tools + 7 MCP resources
371
400
  - Profile isolation (independent memory spaces)
372
401
  - 1400+ tests, MIT license, cross-platform (Mac/Linux/Windows)
373
402
  - CPU-only — no GPU required
403
+ - Automatic orphaned process cleanup
374
404
 
375
405
  ---
376
406
 
@@ -394,6 +424,11 @@ Three new tools for AI assistants:
394
424
  | `slm connect` | Configure IDE integrations |
395
425
  | `slm hooks install` | Wire auto-memory into Claude Code hooks |
396
426
  | `slm profile list/create/switch` | Profile management |
427
+ | `slm decay` | Run memory lifecycle review |
428
+ | `slm quantize` | Run smart compression cycle |
429
+ | `slm consolidate --cognitive` | Extract patterns from memory clusters |
430
+ | `slm soft-prompts` | View auto-learned patterns |
431
+ | `slm reap` | Clean orphaned SLM processes |
397
432
 
398
433
  ---
399
434
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "superlocalmemory",
3
- "version": "3.2.3",
3
+ "version": "3.3.0",
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",
@@ -68,7 +68,6 @@
68
68
  "ui/",
69
69
  "docs/",
70
70
  "pyproject.toml",
71
- "conftest.py",
72
71
  "README.md",
73
72
  "LICENSE",
74
73
  "NOTICE",
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "superlocalmemory"
3
- version = "3.2.3"
3
+ version = "3.3.0"
4
4
  description = "Information-geometric agent memory with mathematical guarantees"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -12,6 +12,21 @@ keywords = [
12
12
  "ai-memory", "mcp-server", "local-first", "agent-memory",
13
13
  "information-geometry", "privacy-first", "eu-ai-act",
14
14
  ]
15
+ classifiers = [
16
+ "Development Status :: 4 - Beta",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ "Operating System :: MacOS",
21
+ "Operating System :: Microsoft :: Windows",
22
+ "Operating System :: POSIX :: Linux",
23
+ "Programming Language :: Python :: 3.11",
24
+ "Programming Language :: Python :: 3.12",
25
+ "Programming Language :: Python :: 3.13",
26
+ "Programming Language :: Python :: 3.14",
27
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
28
+ "Topic :: Software Development :: Libraries :: Python Modules",
29
+ ]
15
30
 
16
31
  dependencies = [
17
32
  "httpx>=0.24.0",