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

mneme-cli

v0.8.0

Published

Terminal client for Mneme — the agent-native database on Base. Text-to-SQL, schema-aware chat, live Base ecosystem data, Mneme Live chain streams, Mneme Graph (entities + relations + hybrid retrieval), Mneme Dreams (async LLM reflection), Mneme Beam (real

Readme

mneme-cli

Terminal client for Mneme — the agent-native database on Base.

Talk to your schema in plain English. The CLI uses the gateway's LLM proxy to translate your prompts into SQL, runs them against your schema, and renders the results as a proper terminal table.

$ mneme

 ███╗   ███╗ ███╗   ██╗ ███████╗ ███╗   ███╗ ███████╗
 ████╗ ████║ ████╗  ██║ ██╔════╝ ████╗ ████║ ██╔════╝
 ██╔████╔██║ ██╔██╗ ██║ █████╗   ██╔████╔██║ █████╗
 ██║╚██╔╝██║ ██║╚██╗██║ ██╔══╝   ██║╚██╔╝██║ ██╔══╝
 ██║ ╚═╝ ██║ ██║ ╚████║ ███████╗ ██║ ╚═╝ ██║ ███████╗
 ╚═╝     ╚═╝ ╚═╝  ╚═══╝ ╚══════╝ ╚═╝     ╚═╝ ╚══════╝

  memory you can hold in your terminal

✦ mneme · agentdemo.mneme
› show me my 5 most recent memories

────────────────────────────────────────────────────────────
  SELECT id, text, created_at FROM memories ORDER BY created_at DESC LIMIT 5
────────────────────────────────────────────────────────────
┌────┬──────────────────────────────────────────────┬─────────────────────┐
│ id │ text                                         │ created_at          │
├────┼──────────────────────────────────────────────┼─────────────────────┤
│ 42 │ shipped the storage subsystem today          │ 2026-05-25 14:01:33 │
│ 41 │ Mneme is the goddess of memory               │ 2026-05-24 09:12:08 │
│ ...│ ...                                          │ ...                 │
└────┴──────────────────────────────────────────────┴─────────────────────┘
✓ 5 rows · 18ms query · 412ms llm

Install

bun add -g mneme-cli      # or npm install -g mneme-cli

First-time setup

  1. Sign in at mnemedb.dev
  2. Open API keysCreate new key → scope * for full access
  3. Copy the mneme_sk_… value (shown only once)
  4. Run mneme and paste the key when asked

The key is saved to ~/.config/mneme/config.json (file mode 600 on POSIX).

Commands inside the REPL

| Command | What it does | | ---------------- | ------------------------------------------------------- | | anything else | natural language → SQL → executed | | /tables | list every table in your schema | | /schema <name> | show columns + types of a single table | | /sql <query> | skip the LLM and run raw SQL directly | | /quota | current storage quota + bonus expiry | | /whoami | show your handle, wallet, gateway | | /clear | clear the terminal | | /help | show this list | | /exit | quit (also Ctrl+D) |

Examples

› count memories grouped by month
› show me the 10 most popular authors in books
› create a table called todos with title (text) and done (bool)
› insert a todo: title="ship mneme cli", done=false
› what's the schema of the events table?
› find books rated 5 stars by Frank Herbert
› vector search the memories table for "agent-native database"

Privacy

  • The LLM (Claude Sonnet 4.5 via fal.ai) runs on Mneme's gateway, not in the CLI. Your API key never leaves your machine.
  • Prompts and generated SQL are not logged on our side beyond basic rate-limit accounting.
  • The CLI never writes your data anywhere except your schema on Mneme.

License

MIT