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

@orbitmem/sdk

v0.1.4

Published

Sovereign data layer for AI agents — encrypted P2P vaults, multi-chain identity, and on-chain data trust

Readme

@orbitmem/sdk

Sovereign data layer for AI agents — encrypted P2P vaults, multi-chain identity, and on-chain data trust.

Install

npm install @orbitmem/sdk

Quick Start

For Users (Data Owners)

import { createOrbitMem } from "@orbitmem/sdk";

const orbitmem = await createOrbitMem({
  identity: { chains: ["evm"] },
  encryption: { defaultEngine: "aes", aes: { kdf: "hkdf-sha256" } },
});

// Connect wallet
await orbitmem.connect({ method: "evm", adapter: "metamask" });

// Store data with different visibility levels
await orbitmem.vault.put("travel/dietary", "vegan", { visibility: "public" });
await orbitmem.vault.put("travel/passport", { number: "..." }, { visibility: "private" });
await orbitmem.vault.put("travel/preferences", { seat: "window" }, { visibility: "shared" });

// Query and sync
const entries = await orbitmem.vault.query({ prefix: "travel" });
await orbitmem.vault.sync();

For Agents (Data Consumers)

import { createOrbitMemClient } from "@orbitmem/sdk/agent";

const client = createOrbitMemClient({
  wallet: { family: "evm", address: "0x...", signMessage: signer.signMessage },
  discovery: {
    dataRegistry: "0x9eE44938ED77227470CaA2DbCC0459F49d249B7A",
    reputationRegistry: "0x1Bce77f90C33A5f8faCa54782Ce3a17d1AD7109a",
    registryChain: "base-sepolia",
  },
});

// Discover data
const results = await client.discoverData({ schema: "travel:v1" });

// Read with quality checks
await client.withUserData(
  { vaultAddress, path: "travel/dietary", minQuality: 70, relayUrl: "..." },
  (data, score) => {
    console.log(data); // "vegan"
  },
);

// Rate data quality
await client.rateData({ vaultAddress, path: "travel/dietary", score: 90, tags: ["accurate"] });

Exports

| Entry Point | Description | | -------------------------- | -------------------------------------------- | | @orbitmem/sdk | createOrbitMem — full SDK with all layers | | @orbitmem/sdk/agent | createOrbitMemClient — agent-side client | | @orbitmem/sdk/discovery | Discovery & reputation layer | | @orbitmem/sdk/transport | ERC-8128 signed HTTP requests | | @orbitmem/sdk/encryption | Lit Protocol & AES-256-GCM engines | | @orbitmem/sdk/identity | Multi-chain wallet auth (EVM/Solana/Passkey) | | @orbitmem/sdk/types | TypeScript type definitions |

Architecture

The SDK is composed of six independent layers, each created by a factory function:

| Layer | Purpose | | ---------------- | ------------------------------------------------------------------------------- | | Identity | Multi-chain wallet connection (EVM, Solana, Passkey) and session key management | | Encryption | Pluggable encryption via AES-256-GCM or Lit Protocol with access conditions | | Data (Vault) | Local-first P2P storage backed by OrbitDB with nested paths | | Transport | ERC-8128 signed HTTP requests for relay communication | | Discovery | On-chain data registry and reputation scoring via ERC-8004 | | Persistence | Snapshot archival to Filecoin/IPFS via Storacha |

Data Visibility

| Level | Description | | --------- | ----------------------------------------------------------------- | | public | Plaintext, readable by anyone via relay | | private | AES encrypted, only the owner can decrypt | | shared | Encrypted with access conditions (Lit Protocol or shared AES key) |

Supported Chains

Base, Base Sepolia

License

MIT