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

@kovamind/openclaw-memory

v0.3.0

Published

OpenClaw memory plugin — Kova Mind as your agent's memory backend

Downloads

30

Readme

@kovamind/openclaw-memory

OpenClaw memory plugin — use Kova Mind as your agent's memory backend.

Replaces OpenClaw's local file-based memory with Kova Mind's cloud API. Your agent gets persistent, learning memory with pattern extraction, surprise scoring, and reinforcement — no local embeddings or SQLite needed.

Install

openclaw plugins install @kovamind/openclaw-memory

Configure

Set the memory slot to use Kova Mind:

openclaw config set plugins.slots.memory memory-kovamind

Configure your API key and user ID:

openclaw config set plugins.entries.memory-kovamind.apiKey "km_live_xxx"
openclaw config set plugins.entries.memory-kovamind.userId "axiom"

Or add to your openclaw.json:

{
  "plugins": {
    "slots": {
      "memory": "memory-kovamind"
    },
    "entries": {
      "memory-kovamind": {
        "apiKey": "km_live_xxx",
        "userId": "axiom",
        "autoRecall": true,
        "autoCapture": true
      }
    }
  }
}

Restart the gateway:

openclaw gateway restart

What It Does

| Feature | How | |---------|-----| | Auto-Recall | Before each agent turn, searches Kova Mind for relevant memories and injects them into context | | Auto-Capture | After each turn, extracts patterns from user messages and stores them in Kova Mind | | memory_recall | Agent tool — search memories by natural language query | | memory_store | Agent tool — extract and store patterns from text | | memory_forget | Agent tool — deny a stored pattern (GDPR-friendly) | | memory_surprise | Agent tool — score how novel content is vs existing memory | | memory_reinforce | Agent tool — confirm or strengthen a validated pattern |

Config Options

| Option | Default | Description | |--------|---------|-------------| | apiKey | required | Your km_live_xxx API key | | userId | required | Default user ID for memory operations | | apiUrl | https://api.kovamind.ai | API base URL | | autoRecall | true | Inject memories before each turn | | autoCapture | true | Extract patterns after each turn | | maxRecallPatterns | 5 | Max memories injected per turn |

CLI

openclaw kovamind status              # Check API health
openclaw kovamind search "dark mode"  # Search memories
openclaw kovamind surprise "new info" # Score novelty

How It Compares

| Feature | memory-core | memory-lancedb | memory-kovamind | |---------|-------------|----------------|-----------------| | Storage | Local SQLite + files | Local LanceDB | Cloud API | | Embeddings | Local/OpenAI/Gemini | OpenAI | Server-side (zero local) | | Pattern extraction | None (raw text) | Rule-based triggers | LLM-powered | | Surprise scoring | No | No | Yes | | Reinforcement | No | No | Yes (confirm/deny/strengthen/weaken) | | Cross-device | No | No | Yes | | Dependencies | None | LanceDB + OpenAI | None (just HTTP) |

Get an API key

Sign up at kovamind.ai.

License

MIT