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 +36 -0
- memctl/cli.py +769 -0
- memctl/config.py +81 -0
- memctl/consolidate.py +275 -0
- memctl/extract.py +306 -0
- memctl/ingest.py +469 -0
- memctl/mcp/__init__.py +1 -0
- memctl/mcp/formatting.py +212 -0
- memctl/mcp/server.py +150 -0
- memctl/mcp/tools.py +479 -0
- memctl/policy.py +292 -0
- memctl/proposer.py +142 -0
- memctl/store.py +1228 -0
- memctl/types.py +325 -0
- memctl-0.1.0.dist-info/METADATA +528 -0
- memctl-0.1.0.dist-info/RECORD +20 -0
- memctl-0.1.0.dist-info/WHEEL +5 -0
- memctl-0.1.0.dist-info/entry_points.txt +2 -0
- memctl-0.1.0.dist-info/licenses/LICENSE +21 -0
- memctl-0.1.0.dist-info/top_level.txt +1 -0
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
|
+
]
|