From 1f76552c6298d0cedd95338997d6078c59e096f2 Mon Sep 17 00:00:00 2001 From: perseus <51974392+tcconnally@users.noreply.github.com> Date: Mon, 15 Jun 2026 23:23:52 +0000 Subject: [PATCH] fix: add pyproject.toml, AGENTS.md, CLAIMS-AUDIT Closes #7 --- AGENTS.md | 7 +++++++ CLAIMS-AUDIT.md | 7 +++++++ executas/mimir-memory/pyproject.toml | 17 +++++++---------- 3 files changed, 21 insertions(+), 10 deletions(-) create mode 100644 AGENTS.md create mode 100644 CLAIMS-AUDIT.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..9582f2e --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,7 @@ +# Anna Recall + +Persistent memory plugin for Anna AI assistants. Backed by Mimir. + +## Structure +- `executas/mimir-memory/` — the Anna executa plugin +- `tests/` — plugin tests diff --git a/CLAIMS-AUDIT.md b/CLAIMS-AUDIT.md new file mode 100644 index 0000000..4876b89 --- /dev/null +++ b/CLAIMS-AUDIT.md @@ -0,0 +1,7 @@ +# Claims Audit + +| Claim | Status | Evidence | +|---|---|---| +| Persistent memory for Anna | ✅ | `mimir_memory_plugin.py` — MCP calls to Mimir | +| Cross-session recall | ✅ | Mimir SQLite persistence | +| Zero config | ✅ | Uses bundled Mimir binary | diff --git a/executas/mimir-memory/pyproject.toml b/executas/mimir-memory/pyproject.toml index 16ad24c..357ffe4 100644 --- a/executas/mimir-memory/pyproject.toml +++ b/executas/mimir-memory/pyproject.toml @@ -1,13 +1,10 @@ [project] -name = "mimir-memory" -version = "1.0.0" -description = "Recall — persistent memory Executa plugin for Anna" +name = "mimir-memory-plugin" +version = "0.1.0" +description = "Anna AI memory plugin backed by Mimir" requires-python = ">=3.10" -dependencies = [] +dependencies = ["httpx>=0.28"] -[project.scripts] -mimir-memory = "mimir_memory_plugin:main" - -[tool.executa] -entrypoint = "mimir_memory_plugin.py" -runtime = "python" +[build-system] +requires = ["setuptools>=75"] +build-backend = "setuptools.build_meta"