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"