sqlite-graphrag 1.0.79

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.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/memory-entities.schema.json",
  "title": "MemoryEntitiesResponse",
  "description": "Response emitted by `sqlite-graphrag memory-entities --json` on stdout as a single JSON line, listing all entities bound to a given memory.",
  "type": "object",
  "required": ["memory_name", "entities", "count", "elapsed_ms"],
  "additionalProperties": false,
  "properties": {
    "memory_name": { "type": "string", "description": "Kebab-case name of the memory whose entities are listed." },
    "entities": {
      "type": "array",
      "description": "Entities bound to this memory.",
      "items": {
        "type": "object",
        "required": ["entity_id", "name", "entity_type"],
        "additionalProperties": false,
        "properties": {
          "entity_id":   { "type": "integer", "description": "Primary key of the entity row." },
          "name":        { "type": "string", "description": "Human-readable name of the entity." },
          "entity_type": { "type": "string", "description": "Type of the entity, e.g. 'concept', 'tool', 'person'." }
        }
      }
    },
    "count":      { "type": "integer", "minimum": 0, "description": "Total number of entities in the response array." },
    "elapsed_ms": { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
  }
}