memoryhub 0.0.1__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,57 @@
1
+ Metadata-Version: 2.4
2
+ Name: memoryhub
3
+ Version: 0.0.1
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: Wes 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
+ Provides-Extra: dev
23
+ Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
24
+ Requires-Dist: pytest-cov>=5.0; extra == 'dev'
25
+ Requires-Dist: pytest>=8.0; extra == 'dev'
26
+ Requires-Dist: ruff>=0.4; extra == 'dev'
27
+ Description-Content-Type: text/markdown
28
+
29
+ # memoryhub
30
+
31
+ Centralized, governed memory for AI agents.
32
+
33
+ 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.
34
+
35
+ **Status:** Pre-alpha. The SDK is under active development.
36
+
37
+ ## Quick start
38
+
39
+ ```python
40
+ from memoryhub import MemoryHubClient
41
+
42
+ client = MemoryHubClient(
43
+ url="https://memoryhub.apps.example.com",
44
+ api_key="your-api-key",
45
+ )
46
+
47
+ # Search memories
48
+ results = await client.search("deployment patterns")
49
+
50
+ # Write a memory
51
+ await client.write("FastAPI is the preferred web framework", scope="project")
52
+ ```
53
+
54
+ ## Links
55
+
56
+ - [GitHub](https://github.com/rdwj/memory-hub)
57
+ - [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,55 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "memoryhub"
7
+ version = "0.0.1"
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 = "Wes 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.optional-dependencies]
30
+ dev = [
31
+ "pytest>=8.0",
32
+ "pytest-cov>=5.0",
33
+ "pytest-asyncio>=0.23",
34
+ "ruff>=0.4",
35
+ ]
36
+
37
+ [project.urls]
38
+ Homepage = "https://github.com/rdwj/memory-hub"
39
+ Repository = "https://github.com/rdwj/memory-hub"
40
+ Issues = "https://github.com/rdwj/memory-hub/issues"
41
+
42
+ [tool.hatch.build.targets.wheel]
43
+ packages = ["src/memoryhub"]
44
+
45
+ [tool.pytest.ini_options]
46
+ testpaths = ["tests"]
47
+ pythonpath = ["src"]
48
+ asyncio_mode = "auto"
49
+
50
+ [tool.ruff]
51
+ target-version = "py310"
52
+ line-length = 99
53
+
54
+ [tool.ruff.lint]
55
+ select = ["E", "F", "I", "N", "W", "UP"]
@@ -0,0 +1,3 @@
1
+ """MemoryHub — Centralized, governed memory for AI agents."""
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1,7 @@
1
+ from memoryhub import __version__
2
+
3
+
4
+ def test_version_is_set():
5
+ assert __version__
6
+ parts = __version__.split(".")
7
+ assert len(parts) >= 2