sqlite-graphrag 1.2.0

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 27 AI agents — one self-contained ~19 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/danilo-aguiar-br/sqlite-graphrag/schemas/config-list.schema.json",
  "title": "ConfigListResponse",
  "description": "Response emitted by `sqlite-graphrag config list` (and `config list --effective`) as a single JSON object of operational settings (no secrets).",
  "type": "object",
  "required": [
    "settings",
    "effective"
  ],
  "additionalProperties": false,
  "properties": {
    "settings": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Map of operational setting keys to string values stored in XDG config (plus defaults when --effective)."
    },
    "effective": {
      "type": "boolean",
      "description": "True when well-known defaults were merged into settings via --effective."
    }
  }
}