55<p align =" center " >
66 <a href =" https://www.rust-lang.org/ " ><img src =" https://img.shields.io/badge/rust-1.92%2B-orange.svg " alt =" Rust " /></a >
77 <a href =" https://www.apache.org/licenses/LICENSE-2.0 " ><img src =" https://img.shields.io/badge/license-Apache%202.0-blue.svg " alt =" License " /></a >
8- <a href =" https://github.com/jamals86 /KalamDB/actions/workflows/ci.yml " ><img src =" https://github.com/jamals86 /KalamDB/actions/workflows/ci.yml/badge.svg " alt =" CI " /></a >
9- <a href =" https://github.com/jamals86 /KalamDB/actions/workflows/ci.yml " ><img src =" https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jamals86 /KalamDB/main/.github/badges/tests.json " alt =" Overall Tests " /></a >
10- <a href =" https://github.com/jamals86 /KalamDB/releases " ><img src =" https://img.shields.io/github/v/release/jamals86 /KalamDB?display_name=tag " alt =" Release " /></a >
8+ <a href =" https://github.com/kalamstack /KalamDB/actions/workflows/ci.yml " ><img src =" https://github.com/kalamstack /KalamDB/actions/workflows/ci.yml/badge.svg " alt =" CI " /></a >
9+ <a href =" https://github.com/kalamstack /KalamDB/actions/workflows/ci.yml " ><img src =" https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/kalamstack /KalamDB/main/.github/badges/tests.json " alt =" Overall Tests " /></a >
10+ <a href =" https://github.com/kalamstack /KalamDB/releases " ><img src =" https://img.shields.io/github/v/release/kalamstack /KalamDB?display_name=tag " alt =" Release " /></a >
1111 <a href =" https://hub.docker.com/r/jamals86/kalamdb " ><img src =" https://img.shields.io/docker/pulls/jamals86/kalamdb " alt =" Docker Pulls " /></a >
1212 <a href =" https://hub.docker.com/r/jamals86/pg-kalam " ><img src =" https://img.shields.io/docker/pulls/jamals86/pg-kalam?label=pg-kalam%20docker " alt =" pg-kalam Docker Pulls " /></a >
1313</p >
1414
1515<p align =" center " ><strong >SDKs</strong ></p >
1616
1717<p align =" center " >
18- <a href =" https://github.com/jamals86 /KalamDB/actions/workflows/sdks.yml " ><img src =" https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jamals86 /KalamDB/main/.github/badges/sdk-typescript-tests.json " alt =" TypeScript SDK Tests " /></a >
19- <a href =" https://github.com/jamals86 /KalamDB/actions/workflows/sdks.yml " ><img src =" https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jamals86 /KalamDB/main/.github/badges/sdk-dart-tests.json " alt =" Dart SDK Tests " /></a >
18+ <a href =" https://github.com/kalamstack /KalamDB/actions/workflows/sdks.yml " ><img src =" https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/kalamstack /KalamDB/main/.github/badges/sdk-typescript-tests.json " alt =" TypeScript SDK Tests " /></a >
19+ <a href =" https://github.com/kalamstack /KalamDB/actions/workflows/sdks.yml " ><img src =" https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/kalamstack /KalamDB/main/.github/badges/sdk-dart-tests.json " alt =" Dart SDK Tests " /></a >
2020 <a href =" https://www.npmjs.com/package/@kalamdb/client " ><img src =" https://img.shields.io/npm/v/%40kalamdb%2Fclient?label=typescript%20sdk " alt =" TypeScript SDK " /></a >
2121 <a href =" https://pub.dev/packages/kalam_link " ><img src =" https://img.shields.io/pub/v/kalam_link?label=dart%20sdk " alt =" Dart SDK " /></a >
2222</p >
@@ -54,15 +54,6 @@ This is what lets chat UIs and agent apps read/write state directly and receive
5454
5555## Feature & Status
5656
57- - ** User Tables** : First-class ` USER ` tables provide per-user isolation so the same SQL can safely serve frontend and backend clients.
58- - ** Shared Tables and SQL Storage** : Standard SQL tables support application state, relational data modeling, and transactional reads and writes.
59- - ** Streams and Pub/Sub** : Built-in topics, consumer groups, ` CONSUME ` , and ` ACK ` support event-driven backends and AI agent workflows.
60- - ** Live Queries** : WebSocket-backed subscriptions keep clients synchronized in realtime without polling.
61- - ** Cluster Replication** : Multi-Raft clustering enables multi-node deployments, failover, and replicated state.
62- - ** Vector Workloads** : Native ` EMBEDDING(dimension) ` support enables vector storage and semantic retrieval workflows.
63- - ** PostgreSQL Extension** : ` pg_kalam ` integrates PostgreSQL with a running KalamDB instance through the bundled FDW.
64- - ** Admin and Developer Tooling** : KalamDB ships with an Admin UI, the ` kalam ` CLI, and official TypeScript and Dart SDKs.
65-
6657| Feature | Status | Feature | Status |
6758| :-------------------------- | :----------- | :---------------------- | :----------- |
6859| ** User Tables** | ✅ Available | ** Shared Tables** | ✅ Available |
@@ -79,20 +70,20 @@ This is what lets chat UIs and agent apps read/write state directly and receive
7970
8071``` bash
8172KALAMDB_JWT_SECRET=" $( openssl rand -base64 32) " \
82- curl -sSL https://raw.githubusercontent.com/jamals86 /KalamDB/main/docker/run/single/docker-compose.yml | docker-compose -f - up -d
73+ curl -sSL https://raw.githubusercontent.com/kalamstack /KalamDB/main/docker/run/single/docker-compose.yml | docker-compose -f - up -d
8374```
8475
8576### 3-node cluster
8677
8778``` bash
8879KALAMDB_JWT_SECRET=" $( openssl rand -base64 32) " \
89- curl -sSL https://raw.githubusercontent.com/jamals86 /KalamDB/main/docker/run/cluster/docker-compose.yml | docker-compose -f - up -d
80+ curl -sSL https://raw.githubusercontent.com/kalamstack /KalamDB/main/docker/run/cluster/docker-compose.yml | docker-compose -f - up -d
9081```
9182
9283### Local run
9384
9485``` bash
95- git clone https://github.com/jamals86 /KalamDB.git
86+ git clone https://github.com/kalamstack /KalamDB.git
9687cd KalamDB/backend
9788cargo run --bin kalamdb-server
9889```
0 commit comments