memoryhub 0.1.0.dev1__tar.gz

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.
@@ -0,0 +1,25 @@
1
+ __pycache__/
2
+ *.py[cod]
3
+ .venv/
4
+ venv/
5
+ *.egg-info/
6
+ dist/
7
+ build/
8
+ .pytest_cache/
9
+ .ruff_cache/
10
+ htmlcov/
11
+ .coverage
12
+ .env
13
+ *.env
14
+ *.key
15
+ *.pem
16
+ *.p12
17
+ *.pfx
18
+ credentials.json
19
+ secrets.yaml
20
+ secrets.yml
21
+ .DS_Store
22
+
23
+ # Added by ggshield
24
+ .cache_ggshield
25
+ .mcp.json
@@ -0,0 +1,52 @@
1
+ Metadata-Version: 2.4
2
+ Name: memoryhub
3
+ Version: 0.1.0.dev1
4
+ Summary: Centralized, governed memory for AI agents
5
+ Project-URL: Homepage, https://github.com/rdwj/memory-hub
6
+ Project-URL: Repository, https://github.com/rdwj/memory-hub
7
+ Project-URL: Issues, https://github.com/rdwj/memory-hub/issues
8
+ Author: William Jackson
9
+ License-Expression: Apache-2.0
10
+ Keywords: agents,ai,kubernetes,mcp,memory,openshift
11
+ Classifier: Development Status :: 2 - Pre-Alpha
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: Apache Software License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Programming Language :: Python :: 3.12
18
+ Classifier: Programming Language :: Python :: 3.13
19
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
20
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
21
+ Requires-Python: >=3.10
22
+ Description-Content-Type: text/markdown
23
+
24
+ # memoryhub
25
+
26
+ Centralized, governed memory for AI agents.
27
+
28
+ MemoryHub provides a persistent memory layer for AI agents running on OpenShift AI, with scope-based access control, multi-tenant isolation, and an immutable audit trail. It works with any agent framework — LlamaStack, LangChain, Claude Code, Cursor, and more.
29
+
30
+ **Status:** Pre-alpha. The SDK is under active development.
31
+
32
+ ## Quick start
33
+
34
+ ```python
35
+ from memoryhub import MemoryHubClient
36
+
37
+ client = MemoryHubClient(
38
+ url="https://memoryhub.apps.example.com",
39
+ api_key="your-api-key",
40
+ )
41
+
42
+ # Search memories
43
+ results = await client.search("deployment patterns")
44
+
45
+ # Write a memory
46
+ await client.write("FastAPI is the preferred web framework", scope="project")
47
+ ```
48
+
49
+ ## Links
50
+
51
+ - [GitHub](https://github.com/rdwj/memory-hub)
52
+ - [Architecture](https://github.com/rdwj/memory-hub/blob/main/docs/ARCHITECTURE.md)
@@ -0,0 +1,29 @@
1
+ # memoryhub
2
+
3
+ Centralized, governed memory for AI agents.
4
+
5
+ MemoryHub provides a persistent memory layer for AI agents running on OpenShift AI, with scope-based access control, multi-tenant isolation, and an immutable audit trail. It works with any agent framework — LlamaStack, LangChain, Claude Code, Cursor, and more.
6
+
7
+ **Status:** Pre-alpha. The SDK is under active development.
8
+
9
+ ## Quick start
10
+
11
+ ```python
12
+ from memoryhub import MemoryHubClient
13
+
14
+ client = MemoryHubClient(
15
+ url="https://memoryhub.apps.example.com",
16
+ api_key="your-api-key",
17
+ )
18
+
19
+ # Search memories
20
+ results = await client.search("deployment patterns")
21
+
22
+ # Write a memory
23
+ await client.write("FastAPI is the preferred web framework", scope="project")
24
+ ```
25
+
26
+ ## Links
27
+
28
+ - [GitHub](https://github.com/rdwj/memory-hub)
29
+ - [Architecture](https://github.com/rdwj/memory-hub/blob/main/docs/ARCHITECTURE.md)
@@ -0,0 +1,35 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "memoryhub"
7
+ version = "0.1.0.dev1"
8
+ description = "Centralized, governed memory for AI agents"
9
+ readme = "README.md"
10
+ license = "Apache-2.0"
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ { name = "William Jackson" },
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 2 - Pre-Alpha",
17
+ "Intended Audience :: Developers",
18
+ "License :: OSI Approved :: Apache Software License",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
25
+ "Topic :: Software Development :: Libraries :: Python Modules",
26
+ ]
27
+ keywords = ["ai", "agents", "memory", "mcp", "openshift", "kubernetes"]
28
+
29
+ [project.urls]
30
+ Homepage = "https://github.com/rdwj/memory-hub"
31
+ Repository = "https://github.com/rdwj/memory-hub"
32
+ Issues = "https://github.com/rdwj/memory-hub/issues"
33
+
34
+ [tool.hatch.build.targets.wheel]
35
+ packages = ["src/memoryhub"]
@@ -0,0 +1,3 @@
1
+ """MemoryHub — Centralized, governed memory for AI agents."""
2
+
3
+ __version__ = "0.1.0.dev1"