Skip to main content

Personal memory engine for AI agents — zero Docker, SQLite-everything (BM25 + sqlite-vec + SQLite graph)

Project description

kioku-lite

Personal memory engine for AI agents. Tri-hybrid search, zero Docker, single SQLite file.

PyPI Downloads Python License: MIT

kioku-litekioku (記憶) means "memory" in Japanese: 記 (ki) to record, 憶 (oku) to remember. A lightweight, fully local memory engine that gives AI agents long-term memory with causal reasoning, using tri-hybrid search (BM25 + Vector + Knowledge Graph) in a single SQLite file.

Homepage · Docs · The Story · PyPI

Read the intro: Why I built a Knowledge Graph memory engine for my AI agents — also in 日本語 and Tiếng Việt

kioku-lite


Why kioku-lite

Most agent memory systems store flat text or vectors. They can't answer "Why was I stressed last month?" because they don't track how events, emotions, and decisions connect. kioku-lite solves this with a Knowledge Graph on top of traditional search — running 100% local with no LLM calls.

System Infrastructure LLM required Search Knowledge Graph
Mem0 Cloud-managed Yes (every write) Vector + Graph ✅ Managed
Claude Code Flat markdown files No Context window only
OpenClaw SQLite per-agent No Semantic (embedding)
kioku-lite Single SQLite file Agent-driven, zero extra Tri-hybrid (BM25 + vector + KG) ✅ Agent-driven

vs Mem0: Mem0 targets production apps — managed cloud infra, automatic LLM extraction on every write. kioku-lite targets personal use — fully local, fully offline, the agent is already an LLM so no extra call needed. Full comparison: docs

Features

  • Tri-hybrid search — BM25 (FTS5) + Vector (sqlite-vec) + Knowledge Graph (PPR for entity-focused queries)
  • Temporal fact management — mark facts as superseded, track validity windows with --include-historical flag
  • Memory consolidation — detect stale edges via confidence decay, surface old memories for summarization
  • Entity resolution — auto-dedup via dual-threshold (vector + name similarity), manual merge with audit trail
  • Community detection — cluster detection and analysis integrated into consolidation pipeline
  • Zero infrastructure — no Docker, no ChromaDB, no external servers
  • Fully offline — FastEmbed ONNX embedding, no API keys needed
  • Agent-driven KG — agent extracts entities and indexes them (no built-in LLM)
  • CLI + Python API — works with any agent that runs shell commands
  • Built-in personas — companion (emotion tracking) and mentor (decision tracking)
  • Multilingual — 100+ languages via multilingual-e5-large

Getting started

Install and connect to your agent in 3 commands:

pipx install "kioku-lite[cli]"
kioku-lite init --global
kioku-lite install-profile companion

That's it. Your agent now has long-term memory with Knowledge Graph.

Full setup guides for each agent type:

Architecture

Agent (Claude Code, Cursor, …)
  │
  ├─ save "..."                ──→  SQLite FTS5 + sqlite-vec + Markdown backup
  ├─ kg-index <hash>           ──→  GraphStore (nodes, edges, aliases, temporal validity)
  ├─ kg-invalidate / merge      ──→  Temporal tracking, entity resolution audit
  ├─ search "..."              ──→  BM25 ∪ Vector ∪ PPR(entities) → RRF rerank
  ├─ consolidate               ──→  Decay stale edges, detect duplicates, surface old memories
  └─ clusters / cluster        ──→  Community detection & analysis

Temporal & Dedup Layers:

  • Temporal validity: kg_edges.valid_from / valid_until — query with --include-historical
  • Entity consolidation: auto-dedup via dual threshold (0.98 vector sim + 0.85 name sim)
  • Confidence decay: weight * 0.5^(days/half_life) for stale edge detection
  • Cluster-aware consolidation: groups related entities during dedup

kioku-lite never calls an LLM. The agent extracts entities from its own context, keeping the memory engine 100% local and LLM-agnostic.

Deep dive: System Architecture · Write Pipeline · Search Pipeline · KG Open Schema

Development

git clone https://github.com/phuc-nt/kioku-agent-kit-lite
cd kioku-agent-kit-lite
pip install -e ".[cli,dev]"
pytest

License

MIT © 2026 Phuc Nguyen

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kioku_lite-0.2.0.tar.gz (600.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kioku_lite-0.2.0-py3-none-any.whl (74.3 kB view details)

Uploaded Python 3

File details

Details for the file kioku_lite-0.2.0.tar.gz.

File metadata

  • Download URL: kioku_lite-0.2.0.tar.gz
  • Upload date:
  • Size: 600.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for kioku_lite-0.2.0.tar.gz
Algorithm Hash digest
SHA256 55af640d136f38f443f03a9d29c58cd463adaccda47ed5b68a2f35f669afbaa9
MD5 4e8aa52afb92523d1268e858f11e9472
BLAKE2b-256 d61fe80f3f7f4b457ee66cd37190fef3ca17d0812ddd525dfdf4c99701ee9a94

See more details on using hashes here.

File details

Details for the file kioku_lite-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: kioku_lite-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 74.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.12

File hashes

Hashes for kioku_lite-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 3cf434d78ef33ddb2d7fdedbc8f3fc61c41575a3e4612da75e2aa544b3ca3aa1
MD5 3fadae93cd983178e9a0f24eb55f1e82
BLAKE2b-256 ccf3f3e095c4fd11f7e32c08dd81fd3067226cc891ffdd047aff06e9d43e3f26

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page