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

@engrm/openclaw-memory

v0.1.4

Published

OpenClaw memory plugin powered by Engrm - cloud-native encrypted memory with auto-recall and auto-capture

Downloads

256

Readme

Memory (Engrm) - OpenClaw Plugin

Cloud-native encrypted memory for OpenClaw agents. Install once, remember forever.

Why Engrm?

| Feature | memory-core | memory-lancedb | memory-engrm | |---------|-------------|----------------|------------------| | Storage | Local files | Local DB | Cloud (Turso) | | Encryption | ❌ | ❌ | AES-256-GCM | | Cross-device | ❌ | ❌ | | | Auto-recall | ❌ | ✅ | | | Auto-capture | ❌ | ✅ | | | Tiered memory | ❌ | ❌ | Critical/High/Normal |

Installation

# From npm (when published)
openclaw plugins install @engrm/openclaw-memory

# From local
openclaw plugins install ./extensions/memory-engrm

Configuration

# ~/.openclaw/config.yaml
plugins:
  slots:
    memory: memory-engrm  # Use Engrm instead of default
  entries:
    memory-engrm:
      enabled: true
      config:
        apiKey: mem_xxx  # Your Engrm API key
        autoRecall: true  # Inject memories automatically
        autoCapture: true # Store insights automatically

How It Works

Auto-Recall (before_agent_start)

When a conversation starts, Engrm automatically:

  1. Analyzes the user's first message
  2. Retrieves relevant memories (critical + matched)
  3. Injects them into the system prompt

Your agent knows the user's preferences, past decisions, and context — automatically.

Auto-Capture (agent_end)

After each conversation, Engrm automatically:

  1. Scans user messages for important content
  2. Detects preferences, decisions, facts, entities
  3. Stores them (with duplicate detection)

No manual "remember this" needed.

Tools

| Tool | Description | |------|-------------| | memory_recall | Search memories by query | | memory_store | Explicitly store a memory | | memory_forget | Delete a memory (GDPR) |

Security

  • Encrypted at rest: AES-256-GCM with per-user keys
  • Prompt injection protection: Filters malicious patterns
  • Self-poisoning prevention: Only captures user messages

Get Started

  1. Create account at engrm.xyz
  2. Get your API key from the dashboard
  3. Install the plugin
  4. Configure and restart OpenClaw

Your agent now has permanent memory.