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

@ctxovrflw/memory-ctxovrflw

v0.4.0

Published

ctxovrflw memory plugin for OpenClaw — shared AI memory layer with semantic search, knowledge graph, and cross-tool recall

Downloads

596

Readme

ctxovrflw Memory Plugin for OpenClaw

Replace OpenClaw's built-in memory with ctxovrflw — a local-first, privacy-focused AI memory layer with semantic search, knowledge graph, and cross-tool recall.

What It Does

  • Replaces memory_search / memory_get with ctxovrflw's semantic search (hybrid keyword + vector)
  • Adds memory_store to persist important context across sessions
  • Auto-recall: Automatically injects relevant memories into agent context before each turn
  • Auto-capture: Optionally stores important user messages as memories
  • Knowledge graph: Graph-boosted recall surfaces related entities and connections
  • Cross-tool: Memories stored by Cursor, Claude Code, Cline, or any MCP-connected tool are available in OpenClaw
  • /ctxovrflw command: Quick status check without invoking the LLM

Prerequisites

  1. Install ctxovrflw: curl -fsSL https://ctxovrflw.dev/install.sh | bash
  2. Run init: ctxovrflw init
  3. Start daemon: ctxovrflw start

Install

openclaw plugins install @ctxovrflw/memory-ctxovrflw

Tip: ctxovrflw init detects OpenClaw automatically and offers to install the plugin, skill, and agent rules for you via an interactive TUI.

Configure

Add to your OpenClaw config:

{
  plugins: {
    slots: {
      memory: "memory-ctxovrflw"  // Replace built-in memory
    },
    entries: {
      "memory-ctxovrflw": {
        enabled: true,
        config: {
          authToken: "<from ~/.ctxovrflw/config.toml>",
          // Optional:
          daemonUrl: "http://127.0.0.1:7437",  // default
          agentId: "openclaw",                   // default
          autoRecall: true,                      // default
          autoCapture: false,                    // default
          recallLimit: 5,                        // default
          recallMinScore: 0.3,                   // default
          captureMaxChars: 500,                  // default
        }
      }
    }
  }
}

Then restart the gateway:

openclaw gateway restart

How It Works

Auto-Recall (default: on)

Before each agent turn, the plugin searches ctxovrflw for memories relevant to the user's message and injects them as context. The agent sees these automatically — no tool call needed.

Auto-Capture (default: off)

After each agent turn, the plugin scans user messages for important content (preferences, decisions, facts) and stores them automatically. Enable with autoCapture: true.

Tool-Based Access

The agent can also use tools explicitly:

  • memory_search — Semantic search with optional subject filter
  • memory_store — Store new memories with type, tags, subject
  • memory_forget — Delete a memory by ID
  • memory_status — Check daemon status, memory count, tier

CLI

openclaw memory status    # Daemon status
openclaw memory search "deployment preferences"
openclaw memory store "Max prefers Railway" --type preference
openclaw memory subjects  # List all subjects

vs Built-in Memory

| Feature | memory-core | memory-lancedb | memory-ctxovrflw | |---|---|---|---| | Storage | Markdown files | LanceDB + OpenAI | SQLite + local ONNX | | Embeddings | None | OpenAI API ($) | Local ONNX (free) | | Privacy | Files on disk | API calls to OpenAI | Everything local | | Cross-tool | No | No | Yes (MCP server) | | Knowledge graph | No | No | Yes (Pro) | | Hybrid search | No | Vector only | Semantic + keyword | | Auto-recall | No | Yes | Yes | | Auto-capture | No | Yes | Yes | | Cloud sync | No | No | Yes (E2E encrypted) |

License

MIT