Skip to content

Commit 52231c6

Browse files
authored
Update README.md
1 parent 67c8a19 commit 52231c6

1 file changed

Lines changed: 69 additions & 14 deletions

File tree

README.md

Lines changed: 69 additions & 14 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-Sync</h1>
7+
<p><strong>Offline-first sync for SQLite, powered by CRDTs.</strong><br>
8+
Local writes, conflict-free merges, real-time collaboration across devices. Sync to SQLite Cloud, PostgreSQL, or Supabase — no central coordinator required.</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://www.sqlite.ai/sync-demo">Live Demo</a> ·
14+
<a href="https://sqlite.ai">Website</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+
> **Need a sync backend?** Plug into any PostgreSQL or Supabase instance, or use **[SQLite Cloud CloudSync](https://www.sqlite.ai/pricing)** — managed device sync with auth, ACL, and a free tier for up to 3 devices.
36+
37+
---
38+
139
# SQLite Sync
240

341
[![sqlite-sync coverage](https://img.shields.io/badge/dynamic/regex?url=https%3A%2F%2Fsqliteai.github.io%2Fsqlite-sync%2F&search=Functions%3A%3C%5C%2Ftd%3E%5Cs*%3Ctd%20class%3D%22headerCovTableEntry(?:Hi|Med|Lo)%22%3E(%5B%5Cd.%5D%2B)%26nbsp%3B%25&replace=%241%25&label=coverage&labelColor=rgb(85%2C%2085%2C%2085)%3B&color=rgb(167%2C%20252%2C%20157)%3B&link=https%3A%2F%2Fsqliteai.github.io%2Fsqlite-sync%2F)](https://sqliteai.github.io/sqlite-sync/)
@@ -198,20 +236,6 @@ See the full guide: **[Row-Level Security Documentation](./docs/row-level-securi
198236

199237
For token-based authentication (required for RLS), use `cloudsync_network_set_token()` instead of `cloudsync_network_set_apikey()`.
200238

201-
## Integrations
202-
203-
Part of the **[SQLite AI](https://sqlite.ai)** ecosystem:
204-
205-
| Extension | Description |
206-
|-----------|-------------|
207-
| **[SQLite-AI](https://github.com/sqliteai/sqlite-ai)** | On-device inference and embedding generation |
208-
| **[SQLite-Memory](https://github.com/sqliteai/sqlite-memory)** | Markdown-based AI agent memory with semantic search |
209-
| **[SQLite-Vector](https://github.com/sqliteai/sqlite-vector)** | Vector search for embeddings stored as BLOBs |
210-
| **[SQLite-Agent](https://github.com/sqliteai/sqlite-agent)** | Run autonomous AI agents from within SQLite |
211-
| **[SQLite-MCP](https://github.com/sqliteai/sqlite-mcp)** | Connect SQLite databases to MCP servers |
212-
| **[SQLite-JS](https://github.com/sqliteai/sqlite-js)** | Custom SQLite functions in JavaScript |
213-
| **[Liteparser](https://github.com/sqliteai/liteparser)** | Fully compliant SQLite SQL parser |
214-
215239
## Versioning
216240

217241
This project follows [semver](https://semver.org/). The single source of truth is `CLOUDSYNC_VERSION` in `src/cloudsync.h`; all packaged artifacts (NPM, Maven, pub.dev, Swift, Docker, native tarballs) inherit this version. PATCH releases never alter the exposed API — they ship bug fixes, performance improvements, and internal changes only.
@@ -221,3 +245,34 @@ The PostgreSQL extension differs only in how it surfaces the version: its catalo
221245
## License
222246

223247
This project is licensed under the [Elastic License 2.0](./LICENSE.md). For production or managed service use, [contact SQLite Cloud, Inc](mailto:info@sqlitecloud.io) for a commercial license.
248+
249+
---
250+
251+
## ☁️ Hosted version
252+
253+
Don't want to run a sync server yourself? **[SQLite Cloud CloudSync](https://sqlite.ai)** is the managed backend for SQLite-Sync — works with SQLite Cloud, PostgreSQL, or Supabase as your source of truth, with auth, ACL, and observability included.
254+
255+
[**Start free →**](https://dashboard.sqlitecloud.io/auth/sign-in)
256+
257+
---
258+
259+
## Part of the SQLite AI stack
260+
261+
SQLite-Sync is one piece of a larger ecosystem that turns SQLite into a runtime for intelligent, distributed data:
262+
263+
**Data layer**
264+
- [sqlite-vector](https://github.com/sqliteai/sqlite-vector) — ANN vector search inside SQLite
265+
- [**sqlite-sync**](https://github.com/sqliteai/sqlite-sync) — Offline-first CRDT sync across devices *(you are here)*
266+
- [sqlite-columnar](https://github.com/sqliteai/sqlite-columnar) — Column-oriented analytics for OLAP queries
267+
- [sqlite-js](https://github.com/sqliteai/sqlite-js) — Custom SQLite functions written in JavaScript
268+
269+
**AI layer**
270+
- [sqlite-ai](https://github.com/sqliteai/sqlite-ai) — On-device LLM inference and embeddings
271+
- [sqlite-agent](https://github.com/sqliteai/sqlite-agent) — Autonomous AI agents running inside SQLite
272+
- [sqlite-memory](https://github.com/sqliteai/sqlite-memory) — Persistent, searchable memory for agents
273+
- [sqlite-mcp](https://github.com/sqliteai/sqlite-mcp) — Call MCP tools directly from SQL queries
274+
275+
**Managed platform**
276+
- [SQLite Cloud](https://sqlite.ai) — Hosted SQLite with sync, auth, edge functions, and analytics. [Free tier →](https://dashboard.sqlitecloud.io/auth/sign-in)
277+
278+
Built by [SQLite AI](https://sqlite.ai). Questions? [Contact us](https://sqlite.ai/support).

0 commit comments

Comments
 (0)