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

llmory-palace

v0.0.1

Published

Memory Palace for Any LLM - Zero-infrastructure compressed memory keys that work with web chat, CLI, and local models

Readme

LLMory-palace

Memory Palace for Any LLM. Zero infrastructure. Works everywhere.

What is this?

A prompting technique that lets ANY LLM (web chat, CLI, local models) remember and navigate information using compressed keys - like the ancient Greek memory palace technique, but for AI.

How it works

Traditional approach (wasteful):

Context window filled with:
- Full conversation history (50K tokens)
- RAG results (20K tokens)  
- Instructions (5K tokens)
Space left: 125K tokens

LLMory-palace approach (efficient):

Context window:
- Compressed keys (500 tokens)
Space left: 199.5K tokens (99.75% FREE!)

Usage

# Install
npm install llmory-palace

# Create a compressed key
npx llmory create my-project planning "memory palace" "compressed keys"
# Output:
# @my-project|planning|2026-02-27
# → memory+palace+compressed+keys

# Generate index for any LLM
npx llmory index "@proj1|active|2026-02-27" "@proj2|planning|2026-02-26"

Works with ANY LLM

Web Chat (ChatGPT, Claude.ai, Gemini)

Paste this into any web chat:

# LLMORY PALACE INDEX
@my-project|active|2026-02-27 → memory+palace+compressed
@another-project|planning|2026-02-26 → keywords+here

What do you know about @my-project?

Claude Code CLI

import { createKey } from 'llmory-palace';

const key = createKey('my-feature', 'planning', ['hooks', 'capture', 'ollama']);
console.log(key);
// @my-feature|planning|2026-02-27
// → hooks+capture+ollama

Why it works

LLMs have vast knowledge in their parameters. We don't INJECT knowledge - we TRIGGER retrieval using compressed keys.

Like how "Eiffel Tower" triggers: Paris, iron, 1889, Gustave Eiffel, tower...

The compressed keys work the same way - they trigger associative retrieval from the model's training.

No infrastructure needed

  • No vector database
  • No embeddings
  • No server
  • No API keys
  • No setup

Just prompts that work anywhere.

License

MIT