wadachi 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.
wadachi-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,24 @@
1
+ Metadata-Version: 2.4
2
+ Name: wadachi
3
+ Version: 0.0.1
4
+ Summary: Wadachi (轍) — persistent semantic memory for AI agents via MCP. Name reserved; full release coming soon.
5
+ Project-URL: Homepage, https://github.com/EliaCinti/engram
6
+ Author-email: Elia Cinti <cintielia21@gmail.com>
7
+ License: MIT
8
+ Keywords: agents,ai,mcp,memory,semantic-search
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ # wadachi 轍
16
+
17
+ > The tracks left by wheels on the road — the traces of what passed, guiding those who follow.
18
+
19
+ **Wadachi** is a persistent semantic memory server for AI agents (MCP).
20
+ Your sessions leave tracks; future sessions follow them.
21
+
22
+ 🚧 This name is reserved. The full release is coming soon.
23
+
24
+ — [Elia Cinti](https://eliacinti.dev)
@@ -0,0 +1,10 @@
1
+ # wadachi 轍
2
+
3
+ > The tracks left by wheels on the road — the traces of what passed, guiding those who follow.
4
+
5
+ **Wadachi** is a persistent semantic memory server for AI agents (MCP).
6
+ Your sessions leave tracks; future sessions follow them.
7
+
8
+ 🚧 This name is reserved. The full release is coming soon.
9
+
10
+ — [Elia Cinti](https://eliacinti.dev)
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "wadachi"
7
+ version = "0.0.1"
8
+ description = "Wadachi (轍) — persistent semantic memory for AI agents via MCP. Name reserved; full release coming soon."
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = { text = "MIT" }
12
+ authors = [{ name = "Elia Cinti", email = "cintielia21@gmail.com" }]
13
+ keywords = ["mcp", "memory", "ai", "agents", "semantic-search"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "License :: OSI Approved :: MIT License",
17
+ "Programming Language :: Python :: 3",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://github.com/EliaCinti/engram"
22
+
23
+ [tool.hatch.build.targets.wheel]
24
+ packages = ["src/wadachi"]
@@ -0,0 +1,3 @@
1
+ """Wadachi (轍) — persistent semantic memory for AI agents. Name reserved."""
2
+
3
+ __version__ = "0.0.1"