oghma 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.
oghma-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: oghma
3
+ Version: 0.0.1
4
+ Summary: Unified AI memory layer — aggregate context across coding tools
5
+ Project-URL: Homepage, https://github.com/terry-li-hm/oghma
6
+ Project-URL: Repository, https://github.com/terry-li-hm/oghma
7
+ Author-email: Terry Li <terry.li.hm@gmail.com>
8
+ License-Expression: MIT
9
+ Keywords: ai,claude,coding-assistant,context,llm,memory
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Environment :: Console
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Software Development :: Libraries
16
+ Requires-Python: >=3.10
17
+ Description-Content-Type: text/markdown
18
+
19
+ # Oghma
20
+
21
+ Unified AI memory layer — aggregate context across coding tools.
22
+
23
+ 🚧 **Coming soon** — package name reserved.
24
+
25
+ ## Vision
26
+
27
+ AI memory should be user-owned and tool-agnostic, not locked into provider silos.
28
+
29
+ Oghma passively watches conversation transcripts from multiple AI coding tools (Claude Code, Codex, OpenClaw, OpenCode, Cursor) and extracts memories, so any tool can access your full context.
30
+
31
+ ## Links
32
+
33
+ - [GitHub](https://github.com/terry-li-hm/oghma)
oghma-0.0.1/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # Oghma
2
+
3
+ Unified AI memory layer — aggregate context across coding tools.
4
+
5
+ 🚧 **Coming soon** — package name reserved.
6
+
7
+ ## Vision
8
+
9
+ AI memory should be user-owned and tool-agnostic, not locked into provider silos.
10
+
11
+ Oghma passively watches conversation transcripts from multiple AI coding tools (Claude Code, Codex, OpenClaw, OpenCode, Cursor) and extracts memories, so any tool can access your full context.
12
+
13
+ ## Links
14
+
15
+ - [GitHub](https://github.com/terry-li-hm/oghma)
@@ -0,0 +1,25 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "oghma"
7
+ version = "0.0.1"
8
+ description = "Unified AI memory layer — aggregate context across coding tools"
9
+ readme = "README.md"
10
+ license = "MIT"
11
+ authors = [{ name = "Terry Li", email = "terry.li.hm@gmail.com" }]
12
+ keywords = ["ai", "memory", "context", "claude", "llm", "coding-assistant"]
13
+ classifiers = [
14
+ "Development Status :: 1 - Planning",
15
+ "Environment :: Console",
16
+ "Intended Audience :: Developers",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Programming Language :: Python :: 3",
19
+ "Topic :: Software Development :: Libraries",
20
+ ]
21
+ requires-python = ">=3.10"
22
+
23
+ [project.urls]
24
+ Homepage = "https://github.com/terry-li-hm/oghma"
25
+ Repository = "https://github.com/terry-li-hm/oghma"
@@ -0,0 +1,3 @@
1
+ """Oghma — Unified AI memory layer."""
2
+
3
+ __version__ = "0.0.1"