sqlite-graphrag 1.0.89

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 24+ AI agents in a single 14.6 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). No daemon. No ONNX runtime. No model download. Graph-native retrieval with FTS5 + cosine + multi-hop traversal. OAuth-only enforcement: 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", "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", "none"]
    },
    "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 }
  }
}