sqlite-graphrag 1.0.78

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-reverse.schema.json",
  "title": "EntityMemoriesResponse",
  "description": "Response emitted by `sqlite-graphrag memory-entities --entity <name> --json` on stdout as a single JSON line, listing all memories bound to a given entity.",
  "type": "object",
  "required": ["entity_name", "memories", "count", "elapsed_ms"],
  "additionalProperties": false,
  "properties": {
    "entity_name": { "type": "string", "description": "Name of the entity whose bound memories are listed." },
    "memories": {
      "type": "array",
      "description": "Memories bound to this entity.",
      "items": {
        "type": "object",
        "required": ["memory_id", "name", "description", "memory_type"],
        "additionalProperties": false,
        "properties": {
          "memory_id":   { "type": "integer", "description": "Primary key of the memory row." },
          "name":        { "type": "string", "description": "Kebab-case name of the memory." },
          "description": { "type": "string", "description": "One-line description of the memory." },
          "memory_type": { "type": "string", "description": "Type of the memory, e.g. 'decision', 'project', 'note'." }
        }
      }
    },
    "count":      { "type": "integer", "minimum": 0, "description": "Total number of memories in the response array." },
    "elapsed_ms": { "type": "integer", "minimum": 0, "description": "Handler wall-clock time in milliseconds." }
  }
}