memctl 0.1.0__py3-none-any.whl

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.
memctl/__init__.py ADDED
@@ -0,0 +1,36 @@
1
+ """
2
+ memctl — A Unix-native memory control plane for LLM orchestration.
3
+
4
+ One file, one truth. All memory is in a single SQLite + FTS5 + WAL database.
5
+ Policy-governed, content-addressed, and forward-compatible with RAGIX.
6
+
7
+ Author: Olivier Vitrac, PhD, HDR | olivier.vitrac@adservio.fr | Adservio
8
+ """
9
+
10
+ __version__ = "0.1.0"
11
+
12
+ from memctl.types import (
13
+ MemoryItem,
14
+ MemoryProposal,
15
+ MemoryEvent,
16
+ MemoryLink,
17
+ MemoryProvenance,
18
+ CorpusMetadata,
19
+ )
20
+ from memctl.store import MemoryStore, SCHEMA_VERSION
21
+ from memctl.policy import MemoryPolicy
22
+ from memctl.config import MemoryConfig
23
+
24
+ __all__ = [
25
+ "__version__",
26
+ "MemoryItem",
27
+ "MemoryProposal",
28
+ "MemoryEvent",
29
+ "MemoryLink",
30
+ "MemoryProvenance",
31
+ "CorpusMetadata",
32
+ "MemoryStore",
33
+ "MemoryPolicy",
34
+ "MemoryConfig",
35
+ "SCHEMA_VERSION",
36
+ ]