alice-memory 0.0.1__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.
@@ -0,0 +1,19 @@
1
+ """Alice — the continuity layer for AI agents.
2
+
3
+ This is an early name-holding release. The packaged runtime (including the
4
+ zero-infrastructure SQLite on-ramp and the MCP server) ships from the main
5
+ repository until it lands on PyPI under this name.
6
+ """
7
+
8
+ from __future__ import annotations
9
+
10
+ __version__ = "0.0.1"
11
+
12
+ REPOSITORY = "https://github.com/samrusani/AliceBot"
13
+
14
+
15
+ def main() -> None:
16
+ print("Alice — the continuity layer for AI agents.")
17
+ print(f"This is a pre-alpha placeholder release ({__version__}).")
18
+ print(f"Install and run Alice from the repository for now: {REPOSITORY}")
19
+ print("The packaged runtime and MCP server will ship under this name.")
@@ -0,0 +1,34 @@
1
+ Metadata-Version: 2.4
2
+ Name: alice-memory
3
+ Version: 0.0.1
4
+ Summary: Alice — the continuity layer for AI agents. Memory, open loops, resumption, and provenance over MCP and HTTP.
5
+ Project-URL: Homepage, https://github.com/samrusani/AliceBot
6
+ Project-URL: Repository, https://github.com/samrusani/AliceBot
7
+ Author: Sami Rusani
8
+ License: MIT
9
+ Keywords: agent-memory,agents,ai,continuity,mcp,memory
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
15
+ Requires-Python: >=3.12
16
+ Description-Content-Type: text/markdown
17
+
18
+ # alice-memory
19
+
20
+ **Alice — the continuity layer for AI agents.**
21
+
22
+ Alice is a local-first memory service that lets AI agents resume interrupted
23
+ work, track open loops, recall decisions with provenance, and improve when
24
+ corrected. Agents connect over MCP, HTTP API, or CLI; hybrid retrieval fuses
25
+ Postgres full-text and pgvector similarity with reciprocal-rank fusion.
26
+
27
+ This is an early name-holding release while the packaged runtime is prepared.
28
+ Until then, install and run Alice from the repository:
29
+
30
+ <https://github.com/samrusani/AliceBot>
31
+
32
+ Planned for this package: the zero-infrastructure SQLite on-ramp
33
+ (`uvx alice-memory` → a working MCP memory server in under a minute) and the
34
+ full Postgres-backed runtime.
@@ -0,0 +1,5 @@
1
+ alice_memory/__init__.py,sha256=mYM0e96ZqGKrmZA6s5GfmdBSG6EHH1AsTBAqZCg6LK8,674
2
+ alice_memory-0.0.1.dist-info/METADATA,sha256=gijn9P59SFTQ5lbqe0nlFHbsOutxn8yFuO4H2W2GPjQ,1437
3
+ alice_memory-0.0.1.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
4
+ alice_memory-0.0.1.dist-info/entry_points.txt,sha256=3yt41Ds7y-WuxAE5dttrsJb23P73B5xJc7xAAwTR4JY,51
5
+ alice_memory-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ alice-memory = alice_memory:main