sqlite-graphrag 1.1.4

Persistent GraphRAG memory for Claude Code, Codex, Cursor, and 24+ AI agents — one self-contained ~16 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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/daniloaguiarbr/sqlite-graphrag/schemas/graph-stats.schema.json",
  "title": "GraphStatsResponse",
  "description": "Response emitted by `sqlite-graphrag graph stats` on stdout as a single JSON line. Provides aggregate metrics for the entity/relationship graph. Both `--json` and `--format json` flags are accepted as equivalent invocation forms; neither changes the response shape.",
  "type": "object",
  "required": ["node_count", "edge_count", "avg_degree", "max_degree", "elapsed_ms"],
  "additionalProperties": false,
  "properties": {
    "namespace":  { "type": ["string", "null"], "description": "Namespace filter applied, or null when all namespaces are included." },
    "node_count": { "type": "integer", "minimum": 0, "description": "Total number of entity nodes in the selected scope." },
    "edge_count": { "type": "integer", "minimum": 0, "description": "Total number of relationship edges in the selected scope." },
    "avg_degree": { "type": "number",  "minimum": 0, "description": "Average degree (edge count per node) across all nodes." },
    "max_degree": { "type": "integer", "minimum": 0, "description": "Maximum degree observed across all nodes." },
    "elapsed_ms": { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
  }
}