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

@atomicmemory/openclaw-plugin

v0.1.17

Published

AtomicMemory plugin for OpenClaw — persistent semantic memory and deterministic session snapshots across channels.

Readme

AtomicMemory for OpenClaw

Persistent semantic memory for OpenClaw agents. Installed from a local clone of this repo — not distributed through ClawHub or any other marketplace.

The plugin embeds the shared @atomicmemory/mcp-server in-process and registers the same four tools as the other integrations: memory_search, memory_ingest, memory_package, and memory_list.

Install

git clone https://github.com/atomicstrata/atomicmemory.git
cd atomicmemory/plugins/openclaw

openclaw plugins install .

See the full documentation for config details.

Configure

OpenClaw passes config from openclaw.plugin.json into the plugin entrypoint:

{
  "apiUrl": "http://127.0.0.1:17350",
  "apiKey": "local-dev-key",
  "provider": "atomicmemory",
  "scope": {
    "user": "pip",
    "agent": "openclaw",
    "namespace": "personal-assistant"
  }
}

The shipped skill permissions allow only local AtomicMemory core origins: http://127.0.0.1:17350 and http://localhost:17350. Remote providers require a separately permissioned plugin manifest and host validation.

scope.user is required and should be the stable channel-agnostic user identity. Optional agent, namespace, and thread narrow memory when needed. The plugin normalizes the API URL, strips whitespace from the API key, and drops empty optional scope fields before spawning the MCP server.

What's in this directory

plugins/openclaw/
├── openclaw.plugin.json      # plugin manifest
├── skills/
│   └── atomicmemory/
│       ├── skill.yaml        # skill permissions + entrypoint
│       └── instructions.md   # agent-facing prompt
└── src/
    └── index.ts              # plugin register entrypoint — exposes MCP tools

The plugin embeds @atomicmemory/mcp-server in-process through its embedded client helper. No subprocess, no separate host dependency. All memory semantics live in the shared server.

Memory behavior

OpenClaw does not use Claude Code-style shell lifecycle hooks. Capture is prompt/tool driven:

  • Search with memory_search or memory_package before answering questions that reference prior context.
  • Store durable preferences, decisions, and facts with memory_ingest using mode: "text".
  • Store deterministic handoff/session snapshots with memory_ingest using mode: "verbatim" and metadata such as { "source": "openclaw", "event": "session_summary", "schema_version": 1 }.

Retrieved memories are treated as reference context, not instructions.

Versioning

From the repo root, run the version helper whenever the OpenClaw manifest, package metadata, skill manifest, or provider registration changes:

pnpm bump:plugin-versions patch

For OpenClaw, the helper keeps these versions aligned:

  • openclaw.plugin.json at /version
  • package.json at /version
  • skills/atomicmemory/skill.yaml at /version

Then rebuild and reinstall:

pnpm --filter @atomicmemory/openclaw-plugin build
openclaw plugins install .

Restart the OpenClaw host if it keeps plugin modules loaded.

License

Apache-2.0.