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

@ponderdb/cli

v0.3.0

Published

PonderDB CLI — terminal interface for memory management

Readme


Install

npm install -g @ponderdb/cli

Requires a running PonderDB server.

Setup

export PONDER_URL=http://127.0.0.1:7437   # default
export PONDER_API_KEY=pndr_YOUR_KEY

Commands

Core Memory Operations

ponder remember — Store a memory

ponder remember <key> <content> [options]

# Examples
ponder remember "auth/jwt" "RS256, 15min expiry, refresh 7d"
ponder remember "deploy/aws" "Use t3.medium, us-east-1" --tags deploy,aws
ponder remember "db/schema" "Users table has soft delete" --category architecture
ponder remember "api/rate-limit" "100 req/min per key" --project my-api --global

| Option | Description | |--------|-------------| | -c, --category | Memory category | | -i, --importance | Importance level | | -t, --tags | Comma-separated tags | | -p, --project | Project ID | | -g, --global | Accessible across all projects |

ponder recall — Retrieve a memory by key

ponder recall <key> [options]

# Example
ponder recall "auth/jwt"
ponder recall "deploy/aws" --project my-api

ponder search — Semantic search

ponder search <query> [options]

# Examples
ponder search "how does authentication work"
ponder search "database migrations" --category code --limit 10
ponder search "deploy" --project my-api

| Option | Description | |--------|-------------| | -c, --category | Filter by category | | -l, --limit | Max results (default: 5) | | -p, --project | Project ID |

ponder list — List all memories

ponder list [options]

# Examples
ponder list
ponder list --category config --limit 50
ponder list --project my-api

ponder update — Update an existing memory

ponder update <key> [options]

# Examples
ponder update "auth/jwt" --content "RS256, 30min expiry, refresh 14d"
ponder update "deploy/aws" --tags deploy,aws,production
ponder update "db/schema" --category architecture --importance high

| Option | Description | |--------|-------------| | -C, --content | New content | | -c, --category | New category | | -i, --importance | New importance level | | -t, --tags | New comma-separated tags | | -p, --project | Project ID |

ponder forget — Delete a memory

ponder forget <key> [options]

# Example
ponder forget "old/outdated-info"
ponder forget "temp/scratch" --project my-api

Version History

ponder history — View version history

ponder history <key> [options]

# Example
ponder history "auth/jwt"

Shows all previous versions of a memory with timestamps and content previews.

ponder restore — Restore a previous version

ponder restore <key> <version> [options]

# Example
ponder restore "auth/jwt" 2
ponder restore "deploy/aws" 1 --project my-api

Export

ponder export — Export memories

ponder export [options]

# Examples
ponder export                                    # JSON to stdout
ponder export --format markdown --output backup.md
ponder export --project my-api --format json -o api-memories.json
ponder export --category code --format markdown

| Option | Description | |--------|-------------| | -f, --format | json or markdown (default: json) | | -p, --project | Project ID | | -c, --category | Filter by category | | -o, --output | Write to file |


Projects

ponder projects list                             # List all projects
ponder projects create "My API" --slug my-api    # Create project
ponder projects delete <id>                      # Delete project + memories

Categories

ponder categories                                # List categories with counts
ponder categories --project my-api               # Per-project categories

API Keys

ponder keys list                                 # List keys (prefix only)
ponder keys create "laptop"                      # Create new key
ponder keys delete <id>                          # Delete a key

Server Info

ponder stats                                     # Memory count + server version
ponder --version                                 # CLI version

Sync

ponder sync                                      # Pull from cloud
ponder sync --status                             # Show sync status

Import

ponder import <file> [options]

# Examples
ponder import CLAUDE.md --project my-api
ponder import .cursorrules --dry-run              # Preview without saving

All Commands at a Glance

| Command | Description | |---------|-------------| | remember | Store a memory | | recall | Get memory by key | | search | Semantic search | | list | List all memories | | update | Update existing memory | | forget | Delete a memory | | history | View version history | | restore | Restore previous version | | export | Export as JSON/Markdown | | projects | Manage projects | | categories | List categories | | keys | Manage API keys | | stats | Server info | | sync | Cloud sync | | import | Import from files | | --version | CLI version |

Getting API Key & Project ID

  1. Run ponderdb-server and open http://127.0.0.1:7437
  2. API key shown on first start — or create one via ponder keys create "my-key"
  3. Create a project via ponder projects create "My Project" — the slug is your project ID

License

MIT — PonderDB