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

memtap

v5.0.0

Published

MemTap — Graph-based long-term memory for AI agents. Knowledge graph with semantic recall, GraphRAG, entity management, decision tracking, auto-capture, document ingestion, onboarding, and multi-turn context.

Readme

MemTap — Graph-Based Agent Memory for OpenClaw

npm License: MIT

MemTap gives your OpenClaw agent a persistent, graph-based long-term memory.

Instead of simple vector recall, MemTap builds a knowledge graph — memories are connected through entities, relationships, and temporal context. Your agent remembers facts, tracks decisions, discovers connections through multi-hop graph traversal, and consolidates knowledge over time.

Quick Start

# Install the plugin
openclaw plugins install memtap

# Sign up and get your API key at https://memtap.ai

# Configure
openclaw config set plugins.entries.memtap.config.apiKey "mt_live_your_key_here"
openclaw config set plugins.entries.memtap.config.serverUrl "https://api.memtap.ai"

# Restart gateway
openclaw gateway restart

That's it. Your agent now has memory.

What It Does

14 Tools

| Tool | Description | |------|-------------| | memtap_recall | Semantic search across the knowledge graph | | memtap_remember | Store a new memory with auto-extracted entities | | memtap_bulletin | Context bulletin with graph expansion — agent "knows" related things | | memtap_graphrag | Multi-hop GraphRAG: vector/BM25 search + graph traversal | | memtap_maintenance | Memory hygiene: decay reports, contradiction detection, dedup | | memtap_graph | Graph analysis: overview, gaps, clusters, connections, traverse | | memtap_decide | Decision tracking: create, list, resolve, defer | | memtap_memory | CRUD operations on individual memories | | memtap_entities | Entity management: list, get linked memories, merge duplicates | | memtap_edges | Create relationships between memories | | memtap_health | Server health check and memory statistics | | memtap_monitor | Neural performance monitoring and analytics | | memtap_alerts | Anomaly detection and alerting system | | memtap_dashboard | Comprehensive system overview dashboard |

5 Hooks

  • Pre-message recall — Automatically loads relevant context before each conversation turn
  • Post-message capture — Extracts and stores important information from conversations
  • Bootstrap bulletin — Injects a memory context bulletin when an agent session starts
  • Periodic consolidation — Background memory maintenance and knowledge consolidation
  • Session analytics — Performance monitoring across sessions

Configuration

{
  "plugins": {
    "entries": {
      "memtap": {
        "enabled": true,
        "config": {
          "serverUrl": "https://api.memtap.ai",
          "apiKey": "mt_live_...",
          "agentId": "main",              // optional: scope memories per agent
          "autoCapture": true,            // auto-extract memories from conversations
          "bulletinOnBoot": true,         // inject memory context on session start
          "bulletinTopics": ["projects", "preferences"],
          "decayRate": 0.005              // memory importance decay per day
        }
      }
    }
  }
}

Optional: Embedding Support

For vector-enhanced GraphRAG search, configure an embedding provider:

{
  "embeddingUrl": "https://api.openai.com/v1/embeddings",
  "embeddingModel": "text-embedding-3-small",
  "embeddingApiKey": "sk-..."
}

Pricing

| Plan | Price | Memories | Agents | API Calls | |------|-------|----------|--------|-----------| | Free | $0/mo | 1,000 | 1 | 10,000 | | Starter | $13/mo | 50,000 | 3 | 500,000 | | Pro | $43/mo | 500,000 | 15 | 5,000,000 | | Team | $109/mo | 2,000,000 | Unlimited | 50,000,000 | | Enterprise | $1,299/mo | 10,000,000 | Custom | Custom |

Sign up at memtap.ai to get your API key.

Why MemTap?

  • Graph-based: Full knowledge graph, not just vector similarity
  • Cloud-native: Managed service — no database setup needed
  • GraphRAG: Multi-hop traversal discovers connections vector search misses
  • Decision tracking: Unique decision management for AI agents
  • Auto-capture: Learns from conversations without explicit commands
  • Memory decay: Natural forgetting keeps the graph relevant
  • 8x cheaper: $13/mo vs $99/mo (Mem0, Zep)

Links

License

MIT — psifactory LLC