refactor: remove memory/ backward-compat shim package

Delete the entire src/openjarvis/memory/ directory (11 files) which
was a pure re-export shim pointing to openjarvis.tools.storage.*.
Update all imports across src/ and tests/ to use the canonical
openjarvis.tools.storage imports directly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Jon Saad-Falcon
2026-03-02 22:33:57 +00:00
co-authored by Claude Opus 4.6
parent cf12b9b28c
commit 1e7d0fe1de
32 changed files with 67 additions and 163 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ from pathlib import Path
from openjarvis.core.events import EventBus, EventType
from openjarvis.core.registry import MemoryRegistry
from openjarvis.memory.sqlite import SQLiteMemory
from openjarvis.tools.storage.sqlite import SQLiteMemory
def _make_backend(tmp_path: Path) -> SQLiteMemory: