gaius-memory 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.
- gaius/__init__.py +50 -0
- gaius/__main__.py +3 -0
- gaius/_core.py +6890 -0
- gaius/concord.py +1530 -0
- gaius/corpus_audit.py +392 -0
- gaius/degradation.py +490 -0
- gaius/kg.py +713 -0
- gaius/landscape.py +1004 -0
- gaius/maturity.py +499 -0
- gaius/mcp_server.py +439 -0
- gaius/outcomes.py +130 -0
- gaius/parsers.py +637 -0
- gaius/presets/default.yaml +51 -0
- gaius/presets/k8s.yaml +87 -0
- gaius/raft.py +578 -0
- gaius/recentstate.py +454 -0
- gaius/reconcile.py +222 -0
- gaius/record.py +247 -0
- gaius/skill/SKILL.md +146 -0
- gaius/skill/mnemos-scaffold.md +170 -0
- gaius/telemetry.py +418 -0
- gaius_memory-0.1.0.dist-info/METADATA +398 -0
- gaius_memory-0.1.0.dist-info/RECORD +27 -0
- gaius_memory-0.1.0.dist-info/WHEEL +5 -0
- gaius_memory-0.1.0.dist-info/entry_points.txt +3 -0
- gaius_memory-0.1.0.dist-info/licenses/LICENSE +156 -0
- gaius_memory-0.1.0.dist-info/top_level.txt +1 -0
gaius/__init__.py
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""gaius — Session memory lifecycle manager for Claude Code projects.
|
|
2
|
+
|
|
3
|
+
Import key symbols from the core module for programmatic access.
|
|
4
|
+
"""
|
|
5
|
+
|
|
6
|
+
from gaius._core import (
|
|
7
|
+
# Entry point
|
|
8
|
+
main,
|
|
9
|
+
# DB
|
|
10
|
+
init_db,
|
|
11
|
+
DB_PATH,
|
|
12
|
+
# Embedding
|
|
13
|
+
_embed_text,
|
|
14
|
+
_embed_texts,
|
|
15
|
+
_embed_via_daemon,
|
|
16
|
+
_get_embed_model,
|
|
17
|
+
_EMBED_DIM,
|
|
18
|
+
_EMBED_DAEMON_SOCK,
|
|
19
|
+
# Facts
|
|
20
|
+
upsert_fact,
|
|
21
|
+
# Skills
|
|
22
|
+
load_skills,
|
|
23
|
+
compute_skill_score,
|
|
24
|
+
# Config
|
|
25
|
+
DOMAIN_DIR,
|
|
26
|
+
SKILLS_DIR,
|
|
27
|
+
STAGING_DIR,
|
|
28
|
+
CORPUS_DIR,
|
|
29
|
+
)
|
|
30
|
+
|
|
31
|
+
__version__ = "0.1.0"
|
|
32
|
+
|
|
33
|
+
__all__ = [
|
|
34
|
+
"main",
|
|
35
|
+
"init_db",
|
|
36
|
+
"DB_PATH",
|
|
37
|
+
"_embed_text",
|
|
38
|
+
"_embed_texts",
|
|
39
|
+
"_embed_via_daemon",
|
|
40
|
+
"_get_embed_model",
|
|
41
|
+
"_EMBED_DIM",
|
|
42
|
+
"_EMBED_DAEMON_SOCK",
|
|
43
|
+
"upsert_fact",
|
|
44
|
+
"load_skills",
|
|
45
|
+
"compute_skill_score",
|
|
46
|
+
"DOMAIN_DIR",
|
|
47
|
+
"SKILLS_DIR",
|
|
48
|
+
"STAGING_DIR",
|
|
49
|
+
"CORPUS_DIR",
|
|
50
|
+
]
|
gaius/__main__.py
ADDED