Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions AGENTS.md
Original file line number Diff line number Diff line change
@@ -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
7 changes: 7 additions & 0 deletions CLAIMS-AUDIT.md
Original file line number Diff line number Diff line change
@@ -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 |
17 changes: 7 additions & 10 deletions executas/mimir-memory/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Loading