Skip to content

Commit eafc5d8

Browse files
authored
Update README.md
1 parent bbb7c36 commit eafc5d8

1 file changed

Lines changed: 62 additions & 12 deletions

File tree

README.md

Lines changed: 62 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
<div align="center">
2+
<a href="https://sqlite.ai">
3+
<img src="https://www.sqlite.ai/social/logo-ai.png" alt="SQLite AI" height="56">
4+
</a>
5+
6+
<h1>SQLite-Memory</h1>
7+
<p><strong>Persistent, searchable memory for AI agents.</strong><br>
8+
Markdown-based memory with semantic search, hybrid retrieval, and offline-first sync between agents. Drop-in memory layer for any LLM workflow.</p>
9+
10+
<p>
11+
<a href="https://dashboard.sqlitecloud.io/auth/sign-in"><strong>Free managed instance →</strong></a> ·
12+
<a href="https://docs.sqlitecloud.io/docs/ai-overview">Docs</a> ·
13+
<a href="https://sqlite.ai">Website</a> ·
14+
<a href="https://blog.sqlite.ai">Blog</a>
15+
</p>
16+
17+
<p>
18+
<sub><strong>Data:</strong>
19+
<a href="https://github.com/sqliteai/sqlite-vector">Vector</a> ·
20+
<a href="https://github.com/sqliteai/sqlite-sync">Sync</a> ·
21+
<a href="https://github.com/sqliteai/sqlite-columnar">Columnar</a> ·
22+
<a href="https://github.com/sqliteai/sqlite-js">JS</a>
23+
<br>
24+
<strong>AI:</strong>
25+
<a href="https://github.com/sqliteai/sqlite-ai">AI</a> ·
26+
<a href="https://github.com/sqliteai/sqlite-agent">Agent</a> ·
27+
<a href="https://github.com/sqliteai/sqlite-memory">Memory</a> ·
28+
<a href="https://github.com/sqliteai/sqlite-mcp">MCP</a>
29+
</sub>
30+
</p>
31+
</div>
32+
33+
<br>
34+
35+
> **Multiple agents need shared memory?** SQLite-Memory syncs locally via CRDTs; pair it with **[SQLite Cloud](https://dashboard.sqlitecloud.io/auth/sign-in)** (or your own Postgres/Supabase) to coordinate memory across machines, users, and workers. Free tier available.
36+
37+
---
38+
139
# SQLite Memory
240

341
A SQLite extension that gives AI agents persistent, searchable memory, optimized for markdown content. Features hybrid semantic search (vector similarity + FTS5), markdown-aware chunking, and local embedding via llama.cpp.
@@ -333,19 +371,31 @@ MIT License - see [LICENSE](LICENSE) for details.
333371

334372
---
335373

336-
## Part of the SQLite AI Ecosystem
374+
## ☁️ Hosted version
375+
376+
Need to share agent memory across devices, users, or workers? **[SQLite Cloud](https://sqlite.ai)** is the managed backend for SQLite-Memory — sync memory across a fleet of agents with auth, ACL, and observability.
377+
378+
[**Start free →**](https://dashboard.sqlitecloud.io/auth/sign-in)
379+
380+
---
381+
382+
## Part of the SQLite AI stack
383+
384+
SQLite-Memory is one piece of a larger ecosystem that turns SQLite into a runtime for intelligent, distributed data:
337385

338-
This project is part of the **SQLite AI** ecosystem, a collection of extensions that bring modern AI capabilities to the world's most widely deployed database. The goal is to make SQLite the default data and inference engine for Edge AI applications.
386+
**Data layer**
387+
- [sqlite-vector](https://github.com/sqliteai/sqlite-vector) — ANN vector search inside SQLite
388+
- [sqlite-sync](https://github.com/sqliteai/sqlite-sync) — Offline-first CRDT sync across devices
389+
- [sqlite-columnar](https://github.com/sqliteai/sqlite-columnar) — Column-oriented analytics for OLAP queries
390+
- [sqlite-js](https://github.com/sqliteai/sqlite-js) — Custom SQLite functions written in JavaScript
339391

340-
Other projects in the ecosystem include:
392+
**AI layer**
393+
- [sqlite-ai](https://github.com/sqliteai/sqlite-ai) — On-device LLM inference and embeddings
394+
- [sqlite-agent](https://github.com/sqliteai/sqlite-agent) — Autonomous AI agents running inside SQLite
395+
- [**sqlite-memory**](https://github.com/sqliteai/sqlite-memory) — Persistent, searchable memory for agents *(you are here)*
396+
- [sqlite-mcp](https://github.com/sqliteai/sqlite-mcp) — Call MCP tools directly from SQL queries
341397

342-
- **[SQLite-AI](https://github.com/sqliteai/sqlite-ai)** - On-device inference and embedding generation directly inside SQLite.
343-
- **[SQLite-Memory](https://github.com/sqliteai/sqlite-memory)** - Markdown-based AI agent memory with semantic search.
344-
- **[SQLite-Vector](https://github.com/sqliteai/sqlite-vector)** - Ultra-efficient vector search for embeddings stored as BLOBs in standard SQLite tables.
345-
- **[SQLite-Sync](https://github.com/sqliteai/sqlite-sync)** - Local-first CRDT-based synchronization for seamless, conflict-free data sync and real-time collaboration across devices.
346-
- **[SQLite-Agent](https://github.com/sqliteai/sqlite-agent)** - Run autonomous AI agents directly from within SQLite databases.
347-
- **[SQLite-MCP](https://github.com/sqliteai/sqlite-mcp)** - Connect SQLite databases to MCP servers and invoke their tools.
348-
- **[SQLite-JS](https://github.com/sqliteai/sqlite-js)** - Create custom SQLite functions using JavaScript.
349-
- **[Liteparser](https://github.com/sqliteai/liteparser)** - A highly efficient and fully compliant SQLite SQL parser.
398+
**Managed platform**
399+
- [SQLite Cloud](https://sqlite.ai) — Hosted SQLite with sync, auth, edge functions, and analytics. [Free tier →](https://dashboard.sqlitecloud.io/auth/sign-in)
350400

351-
Learn more at **[SQLite AI](https://sqlite.ai)**.
401+
Built by [SQLite AI](https://sqlite.ai). Questions? [Open a discussion](https://github.com/sqliteai/sqlite-memory/discussions) or [contact us](https://sqlite.ai/support).

0 commit comments

Comments
 (0)