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

@memorystack/clawdbot-memorystack

v1.3.0

Published

OpenClaw MemoryStack memory plugin - long-term memory for your AI assistant

Downloads

309

Readme

MemoryStack Plugin for OpenClaw

Long-term memory for OpenClaw (formerly Clawdbot). Automatically remembers conversations, recalls relevant context, and builds a persistent memory layer — all powered by MemoryStack cloud.

Install

openclaw plugins install @memorystack/clawdbot-memorystack

Restart OpenClaw after installing.

Configuration

The only required value is your MemoryStack API key. Get one at memorystack.app/dashboard/api-keys.

Set it as an environment variable:

export MEMORYSTACK_API_KEY="ms_proj_..."

Or configure it directly in openclaw.json (or moltbot.json):

{
  "plugins": {
    "entries": {
      "clawdbot-memorystack": {
        "enabled": true,
        "config": {
          "apiKey": "${MEMORYSTACK_API_KEY}",
          "autoRecall": true,
          "autoCapture": true
        }
      }
    }
  }
}

Advanced options

| Key | Type | Default | Description | |-----|------|---------|-------------| | apiKey | string | - | Your MemoryStack API key (required) | | baseUrl | string | https://memorystack.app | API endpoint URL | | autoRecall | boolean | true | Inject relevant memories before every AI turn | | autoCapture | boolean | true | Automatically store conversation content after every turn | | maxRecallResults | number | 5 | Max memories injected into context per turn (1-20) | | debug | boolean | false | Verbose debug logs for API calls and responses |

Slash Commands

Use these commands directly in chat:

| Command | Description | |---|---| | /add <text> | Save something to long-term memory | | /search <query> | Search your memories | | /stats | View memory usage statistics |

CLI Commands

Manage memories from the terminal:

openclaw memorystack search "project alpha"
openclaw memorystack stats
openclaw memorystack add "The server IP is 10.0.0.5"
openclaw memorystack deleteall   # Destructive!

How it works

Once installed, the plugin works automatically with zero interaction:

  • Auto-Recall — Before every AI turn, the plugin queries MemoryStack for relevant memories and injects them as context using semantic search.
  • Auto-Capture — After every AI turn, the last user/assistant exchange is sent to MemoryStack for extraction and long-term storage.

Everything runs in the cloud. MemoryStack handles importance scoring, contradiction detection, consolidation, and reflection on its end.

Features

  • Hybrid Search - Vector similarity + text search with RRF ranking
  • Importance Scoring - Automatic ranking of what matters
  • Contradiction Detection - Resolves conflicts and updates beliefs
  • Memory Consolidation - Deduplication and merging (runs server-side)
  • Temporal Decay - Simulates natural forgetting
  • Reflection - Discovers patterns and generates insights

Links

  • 🌐 Website: https://memorystack.app
  • 📚 Documentation: https://memorystack.app/docs
  • 🚀 Quick Start: https://memorystack.app/docs/quickstart
  • 🔑 Get API Key: https://memorystack.app/dashboard/api-keys
  • 💰 Pricing: https://memorystack.app/pricing

License

MIT