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

goldhold

v0.3.0

Published

Thin client SDK for the GoldHold relay API -- persistent memory for AI agents.

Readme

goldhold

Thin client SDK for the GoldHold relay API -- persistent memory for AI agents.

Zero dependencies. Works in Node 18+, Deno, Bun, Cloudflare Workers, and browsers.

Patent Pending -- All Auto Tunes LLC. U.S. #63/988,484.

Install

npm install goldhold

Quickstart

Node / Bun

import { GoldHold } from 'goldhold';

const gh = new GoldHold({ apiKey: process.env.GOLDHOLD_API_KEY! });

// Store a memory
await gh.store('User prefers dark mode', 'Confirmed in settings review', 'FACT', 'high');

// Search memories
const results = await gh.search('dark mode preference');

// Compound turn -- search + store in one call
const turn = await gh.turn({
  search: { query: 'onboarding status' },
  store: [{ subject: 'Onboarding complete', body: 'All steps finished.' }],
});

// Session resume
const session = await gh.auto();

// Check account status
const info = await gh.status();

Deno

import { GoldHold } from 'npm:goldhold';

const gh = new GoldHold({ apiKey: Deno.env.get('GOLDHOLD_API_KEY')! });
const memories = await gh.search('project goals');

Cloudflare Workers

import { GoldHold } from 'goldhold';

export default {
  async fetch(request: Request, env: { GOLDHOLD_API_KEY: string }) {
    const gh = new GoldHold({ apiKey: env.GOLDHOLD_API_KEY });
    const memories = await gh.search('user context');
    return Response.json(memories);
  },
};

API

| Method | Description | |--------|-------------| | turn(params) | Compound search + store + send in one call | | auto(params?) | Session resume -- get capability card and context | | batch(operations) | Execute multiple operations in one request | | close(summary?) | Graceful session close with optional summary | | search(query, limit?, filters?) | Search memories | | store(subject, body, type?, confidence?) | Store a memory packet | | status() | Account and namespace info |

Error Handling

import { GoldHold, AuthError, RateLimitError, VectorLimitError } from 'goldhold';

try {
  await gh.store('test', 'test');
} catch (e) {
  if (e instanceof VectorLimitError) console.log('Upgrade to Vault Pro');
  if (e instanceof RateLimitError) console.log('Slow down');
  if (e instanceof AuthError) console.log('Check your API key');
}

Tiers

| | Lite (free) | Vault Pro ($9/mo) | |---|---|---| | Vectors | 1,000 | Unlimited | | Agents | 1 | Unlimited | | Namespaces | 1 | Unlimited | | Tasks | 10 | Unlimited | | Messages | 50/month | Unlimited |

Get your API key at goldhold.ai/account.

License

Proprietary -- All Auto Tunes LLC. See LICENSE.