npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@datacules/agentdb

v0.7.0

Published

Single-file embedded database for AI agents. SQL + Vector Search + Full-Text Search + Hybrid Queries + Memory Graphs.

Readme

AgentDB Node.js SDK

Single-file embedded database for AI agents. SQL + Vector Search + Full-Text Search + Hybrid Queries + Memory Graphs — all in one .agentdb file.

Installation

npm install @datacules/agentdb

Requires Node.js 18+. No external database server needed. Ships with prebuilt native addons for Linux, macOS, and Windows (x64 + arm64).

Quick Start

import { AgentDB } from '@datacules/agentdb';

// Open or create a database (use ':memory:' for in-process only)
const db = AgentDB.open('agent.agentdb');

// SQL — full SQLite syntax
db.execute('CREATE TABLE IF NOT EXISTS sessions (id TEXT PRIMARY KEY, ts TEXT)');
db.execute("INSERT INTO sessions VALUES ('s1', '2026-06-19')");
const rows = db.query('SELECT * FROM sessions');
console.log(rows); // [{ id: 's1', ts: '2026-06-19' }]

// Vector search — HNSW index, cosine similarity
const col = db.collection('thoughts', 4);
col.upsert('t1', [0.9, 0.1, 0.0, 0.0], { topic: 'memory' });
col.upsert('t2', [0.1, 0.9, 0.0, 0.0], { topic: 'reasoning' });
const results = col.search([0.85, 0.15, 0.0, 0.0], { topK: 1 });
console.log(results[0].id); // 't1'

// Full-text search
db.ftsIndex('docs', 'd1', 's1', 'AgentDB stores agent memory efficiently');
const hits = db.ftsSearch('docs', 'memory', 5);

// Memory graph — associative knowledge store
db.addNode('s1', 'session');
db.addNode('t1', 'thought');
db.addEdge('s1', 't1', 'recalled', 0.9);
const neighbors = db.neighbors('s1', 2);

// Hybrid graph + vector query
const hybrid = db.hybridQuery('s1', [0.9, 0.1, 0.0, 0.0], 'thoughts', { topK: 5 });

// Stats
console.log(db.stats());
// { collections: 1, vectors: 2, nodes: 2, edges: 1 }

TypeScript Support

Full TypeScript types are included. Import types directly:

import type { SearchResult, FtsResult, HybridResult, DbStats } from '@datacules/agentdb';

API Reference

See the full documentation in the main README.

License

Unlicense — public domain. See LICENSE.