sqlite-graphrag 1.1.4

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 24+ AI agents — one self-contained ~16 MiB Rust binary, zero daemon. Never re-explain your codebase again. Hybrid retrieval (FTS5 BM25 + cosine similarity + multi-hop graph traversal) surfaces the right memory in milliseconds. Embedding and entity enrichment run as parallel REST calls against your cloud LLM — no fragile headless subprocesses, no ONNX runtime, no model downloads. Soft-delete with full version history, transactional atomic writes, BLAKE3-tracked mutations. OAuth-only: raw API keys ABORT the spawn.
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/read.schema.json",
  "title": "ReadResponse",
  "description": "Response emitted by `sqlite-graphrag read` on stdout as a single JSON line.",
  "type": "object",
  "required": [
    "id", "memory_id", "namespace", "name", "type", "memory_type",
    "description", "body", "body_hash", "source", "metadata",
    "version", "created_at", "created_at_iso", "updated_at", "updated_at_iso",
    "elapsed_ms"
  ],
  "additionalProperties": false,
  "properties": {
    "id":             { "type": "integer" },
    "memory_id":      { "type": "integer" },
    "namespace":      { "type": "string" },
    "name":           { "type": "string" },
    "type":           { "type": "string", "description": "Enum: user|feedback|project|reference|decision|incident|skill" },
    "memory_type":    { "type": "string", "description": "Alias of `type`." },
    "description":    { "type": "string" },
    "body":           { "type": "string" },
    "body_hash":      { "type": "string", "description": "BLAKE3 hex digest of the body." },
    "session_id":     { "type": ["string", "null"] },
    "source":         { "type": "string" },
    "metadata":       { "type": "object", "description": "Arbitrary metadata object." },
    "version":        { "type": "integer", "minimum": 1 },
    "created_at":     { "type": "integer", "description": "Unix epoch seconds." },
    "created_at_iso": { "type": "string",  "format": "date-time" },
    "updated_at":     { "type": "integer", "description": "Unix epoch seconds." },
    "updated_at_iso": { "type": "string",  "format": "date-time" },
    "elapsed_ms":     { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
  }
}