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

memory-forge

v0.13.7

Published

Forge persistent memories for your AI agent. 9 MCP tools + 5 auto-engines. Powered by Shelby decentralized cloud.

Readme

MemoryForge

Persistent memory engine for AI agents. 10 MCP tools + 5 auto-engines. Free tier runs locally. Pro tier adds Shelby decentralized cloud sync.

Install

npx memory-forge setup

Auto-configures Claude Code hooks (SessionStart / Stop / PreCompact) and imports existing rules as memories.

Free tier has no external service dependencies. Pro tier requires a SHELBY_API_KEY for Shelby cloud sync.

Core Capabilities

10 MCP Tools (invoked by agent directly):

| Tool | Description | | ------------------- | ----------------------------------------------------------- | | memory_store | Store memories with auto-embedding, naming, and dedup merge | | memory_search | Semantic search (vector + keyword dual-mode) | | memory_recall | Exact recall by memory ID | | memory_list | List memories with category/tag filtering + local timezone | | memory_forget | Delete a memory (local + Shelby tombstone) | | memory_context | Load current session context | | memory_export | Export as JSON or Markdown | | memory_share | Package a memory for teammate import | | memory_update | Update existing memory with re-embedding | | memory_model_info | Show embedding model status, dims, and health |

5 Auto-Engines (zero user awareness):

| Engine | Description | | ------------ | ------------------------------------------------------------------ | | autoName | Extract name from content automatically | | autoMerge | Detect >80% overlap and merge duplicates | | autoPriority | Priority scoring via access frequency + recency (Ebbinghaus curve) | | autoDecay | Auto-archive at 90 days of inactivity | | autoCapture | Session-end priority recalc + PreCompact save reminders |

Pricing

| Tier | Description | | -------- | ----------------------------------------------- | | Free | 9 tools, local storage, unlimited memories | | Pro | + Shelby decentralized cloud sync, cross-device |

Pro is currently on Shelbynet testnet.

Tech Stack

  • MCP Protocol: @modelcontextprotocol/sdk (stdio transport)
  • Embeddings: Transformers.js / Xenova all-MiniLM-L6-v2 (23MB, local, auto-fallback to keyword)
  • Cloud (Pro): @shelby-protocol/sdk (Shelbynet / Aptos)
  • Runtime: Node.js 18+, TypeScript

Docs

| Document | Content | | ---------------------------------- | ---------------------------------------------------- | | TECHNICAL.md | API reference, data model, architecture, security | | TUTORIAL.md | Install guide, daily use, Pro setup, troubleshooting | | SPEC.md | Product specification and roadmap | | ARCHITECTURE.md | System architecture and data flow | | MARKET.md | Competitive analysis |

Security

  • Free tier is fully local — zero network requests (except one-time 23MB model download)
  • Pro tier uploads to Shelby blockchain storage with Aptos transaction proofs
  • API key via environment variable; secrets never stored in plaintext
  • GDPR right-to-erasure via memory_forget (local + on-chain tombstone)

Tests

npm test   # 319 tests, 31 files, 100% pass