Skip to content

v1.11.0

Choose a tag to compare

@github-actions github-actions released this 24 May 12:47
· 6 commits to main since this release

Added

  • Claude Code adapter: wire Memoria into Anthropic's Claude Code via its hook system without writing any code. One CLI command (memoria adapter claude-code) handles both UserPromptSubmit (injects recall as additionalContext) and Stop (writes the just-completed turn from the transcript). Both fail-open so a Memoria outage never disrupts the agent loop.
  • scripts/test-claude-code-adapter.sh end-to-end test, wired into ci.yml.

Changed

  • HTTP server hot path (recall, recallTelemetry, stats) now reuses a cached SQLite connection across requests instead of opening + closing per call. Server SIGINT/SIGTERM handlers drain the pool via closeAllConnections().
  • initDatabase() no longer inlines ALTER TABLE patches. Schema upgrades are tracked in a new schema_migrations table, with three numbered migrations corresponding to the previous inline patches.
  • dist/ is now gitignored. Build artifacts (dist/cli.mjs, dist/install/memoria) are regenerated by pnpm run build and pnpm run release:package; prepublishOnly ensures npm publish still works. Removes ~21 k lines of binary-shaped diff from every commit.