sqlite-graphrag 1.0.99

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 24+ AI agents in a single 19 MiB Rust binary. LLM-only and one-shot in v1.0.78: every `remember` / `ingest` spawns a headless claude code or codex subprocess (OAuth, no MCP, no hooks). v1.0.93: optional OpenRouter API embedding backend (~100-500ms vs 20-60s subprocess). No daemon. No ONNX runtime. No model download. Graph-native retrieval with FTS5 + cosine + multi-hop traversal. OAuth-only enforcement for LLM backends: API keys ABORT the spawn.
Documentation
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/embedding-status.schema.json",
  "title": "embedding status",
  "description": "Output of `sqlite-graphrag embedding status` for the pending-embeddings queue health (GAP-005, v1.0.82; backend_invoked added in v1.0.84 by ADR-0042).",
  "type": "object",
  "additionalProperties": false,
  "required": ["action", "counts", "coverage", "elapsed_ms"],
  "properties": {
    "action": { "const": "embedding_status" },
    "backend_invoked": {
      "description": "v1.0.84 (ADR-0042): backend LLM resolved for this embedding pass. One of claude, codex, or none. Omitted when no backend has been resolved yet.",
      "type": "string",
      "enum": ["claude", "codex", "opencode", "openrouter", "none", "auto"]
    },
    "counts": {
      "type": "object",
      "additionalProperties": false,
      "required": ["pending", "in_progress", "done", "abandoned"],
      "properties": {
        "pending": { "type": "integer", "minimum": 0 },
        "in_progress": { "type": "integer", "minimum": 0 },
        "done": { "type": "integer", "minimum": 0 },
        "abandoned": { "type": "integer", "minimum": 0 }
      }
    },
    "elapsed_ms": { "type": "integer", "minimum": 0 },
    "coverage": {
      "description": "GAP-SG-41 (v1.0.97): real persisted-vector coverage queried from the vector tables, distinct from the always-empty async `counts` queue. Always present.",
      "type": "object",
      "additionalProperties": false,
      "required": ["memories_total", "memories_with_vec", "entities_total", "entities_with_vec", "chunks_total", "chunks_with_vec"],
      "properties": {
        "memories_total": { "type": "integer", "minimum": 0 },
        "memories_with_vec": { "type": "integer", "minimum": 0 },
        "entities_total": { "type": "integer", "minimum": 0 },
        "entities_with_vec": { "type": "integer", "minimum": 0 },
        "chunks_total": { "type": "integer", "minimum": 0 },
        "chunks_with_vec": { "type": "integer", "minimum": 0 }
      }
    }
  }
}