sqlite-graphrag 1.0.77

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 24+ AI agents in a single 6 MB Rust binary. LLM-only and one-shot in v1.0.77: 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
{
  "$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/optimize.schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "additionalProperties": false,
  "description": "Response emitted by `sqlite-graphrag optimize` on stdout as a single JSON line.",
  "properties": {
    "db_path": {
      "type": "string"
    },
    "elapsed_ms": {
      "description": "Handler wall-clock time in milliseconds.",
      "minimum": 0,
      "type": "integer"
    },
    "fts_rebuilt": {
      "description": "Whether the FTS5 index was rebuilt during optimization.",
      "type": "boolean"
    },
    "fts_rows_indexed": {
      "type": [
        "string",
        "number",
        "boolean",
        "null"
      ]
    },
    "fts_skipped_functional": {
      "type": [
        "string",
        "number",
        "boolean",
        "null"
      ]
    },
    "fts_unhealthy": {
      "type": [
        "string",
        "number",
        "boolean",
        "null"
      ]
    },
    "status": {
      "enum": [
        "ok"
      ],
      "type": "string"
    }
  },
  "required": [
    "db_path",
    "status",
    "fts_rebuilt",
    "elapsed_ms"
  ],
  "title": "OptimizeResponse",
  "type": "object"
}