cel-memory-sqlite 0.0.0

SQLite + sqlite-vec implementation of cel-memory's MemoryProvider trait. Local-first, single-file storage with optional FastEmbed-powered embeddings.
Documentation
# Changelog

All notable changes to `cel-memory-sqlite` will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

Pre-`0.1.0` versions develop in-workspace as part of [Cellar](https://github.com/dilipod/cellar);
the first published release on crates.io will be `0.1.0`. See
[`plans/cellar-oss-extraction-prep.md`](../../plans/cellar-oss-extraction-prep.md)
for the extraction roadmap.

## [Unreleased]

## [0.1.0-pre] — 2026-05-23

### Added
- `SqliteMemoryProvider` — SQLite + [`sqlite-vec`]https://github.com/asg017/sqlite-vec
  implementation of `cel_memory::MemoryProvider`. One file on disk, no
  separate vector daemon. Writes, gets, deletes, sessions, pinning,
  purge, stats, aging sweep, batched writes, exports, importance updates,
  superseding, access logging — all real.
- `Embedder` trait + `MockEmbedder` (always available, deterministic
  384-dim vectors derived from the content hash).
- `FastEmbedEmbedder` behind the `fastembed` feature — local ONNX runtime
  + `bge-small-en-v1.5`. Off by default to avoid the ~130 MB model
  download in dev workflows.
- Schema migrations for `memory_chunks`, `memory_vec` (sqlite-vec virtual
  table), `memory_fts` (FTS5), `memory_sessions`, `memory_summary_members`,
  `memory_access_log`, `memory_eviction_log`.
- Hybrid retrieval (vector + FTS + recency, weighted by `RetrievalProfile`).
- TTL+LRU `retrieve` cache with eager invalidation on writes and deletes.
- `examples/basic.rs` — round-trips 10 chunks through a tempfile DB with
  `MockEmbedder`. Builds with only this crate's declared deps.
- `SqliteMemoryError` — self-contained `thiserror` enum.

### Notes
- Imports only `cel-memory` from the workspace — verified by
  `scripts/lint-guard-extraction-crates.sh` (added 2026-05-23).
- Dev-deps on `cel-act-gateway` / `cellar-types` are deliberately absent
  here. Daemon-level integration tests live in
  `cel-cortex-daemon/tests/scenario_4_sqlite.rs` where those deps are
  first-class. See `plans/cellar-oss-extraction-prep.md` §D2.