🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

clude-local

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clude-local

Local-first providers for Clude — SQLite storage + GTE-Small embeddings, fully offline

latest
Source
npmnpm
Version
0.1.0
Version published
Maintainers
1
Created
Source

clude-local

Local-first providers for Clude — SQLite storage + GTE-Small embeddings. Fully offline, zero API keys.

Install

npm install clude-local

Usage

import { SqliteProvider, GteSmallEmbeddings } from 'clude-local';

const storage = new SqliteProvider('./my-agent-memory.db');
const embeddings = new GteSmallEmbeddings(); // ~30MB download on first run

// Use with clude-brain
import { CludeEngine } from 'clude-brain';

const engine = new CludeEngine({ storage, embeddings });
await engine.store({ content: "User prefers dark mode", type: "semantic" });
const memories = await engine.recall({ query: "theme preferences" });

Why local?

  • Zero API keys — no Supabase, no Voyage, no nothing
  • Fully offline — works on a plane, in a bunker, wherever
  • Fast — no network latency, sub-millisecond reads
  • Private — your data never leaves your machine
  • Free — no usage costs, no rate limits

Providers

SqliteProvider

SQLite-backed storage with in-memory vector index. Implements StorageProvider from clude-brain.

GteSmallEmbeddings

Local ONNX runtime using Xenova/gte-small (384 dimensions). Downloads ~30MB model on first run, fully offline after.

Part of the Clude ecosystem

  • clude-brain — Core memory engine
  • clude-cloud — Supabase + Voyage providers
  • clude-local — This package. SQLite + local embeddings.
  • clude — Python SDK

License

MIT — Pixl64 LLP

Keywords

ai

FAQs

Package last updated on 11 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts