sqlite-graphrag 1.1.3

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 24+ AI agents — one self-contained 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
{
  "$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/enrich-phase.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Phase event emitted by `sqlite-graphrag enrich` on stdout (NDJSON). Two events per run: 'validate' (checks LLM provider binary) and 'scan' (discovers items to enrich). Fields beyond 'phase' are present only when relevant to the phase.",
  "properties": {
    "binary_path": {
      "description": "Filesystem path of the detected LLM provider binary. Present in validate phase.",
      "type": [
        "string",
        "null"
      ]
    },
    "items_pending": {
      "description": "Items still pending processing. Present in scan phase.",
      "minimum": 0,
      "type": [
        "integer",
        "null"
      ]
    },
    "items_total": {
      "description": "Total items found by the scan. Present in scan phase.",
      "minimum": 0,
      "type": [
        "integer",
        "null"
      ]
    },
    "llm_parallelism": {
      "type": [
        "integer",
        "null"
      ]
    },
    "phase": {
      "description": "Phase name: validate (checks LLM provider) or scan (counts pending items).",
      "enum": [
        "validate",
        "scan"
      ],
      "type": "string"
    },
    "version": {
      "description": "Detected LLM provider version string. Present in validate phase for Claude Code; null for Codex.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "phase"
  ],
  "title": "EnrichPhaseEvent",
  "type": "object"
}