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

@next-wiki/openclaw-memory-wiki

v0.2.0

Published

OpenClaw Memory Wiki and memory-core mirror and next-wiki retrieval plugin

Readme

@next-wiki/openclaw-memory-wiki

Native OpenClaw plugin that mirrors eligible .md files from the OpenClaw Memory Wiki vault into next-wiki's account-bound Raw space and adds a bundled Skill for account-wide Wiki/Raw/Generated retrieval.

Install the packed plugin with openclaw plugins install <tarball>. Configure baseUrl, vaultPath, and one OpenClaw SecretRef containing a generic Agent Memory provider API key. Set its agent identity to openclaw; the key's ordinary scopes independently control Agent Memory reads/writes and next-wiki search/page reads; Raw/Generated space access is an explicit administrator grant on that same key. Keep the key out of ordinary config files.

Configuration

Add the plugin entry to openclaw.json (or install first with openclaw plugins install @next-wiki/openclaw-memory-wiki):

{
  "plugins": {
    "entries": {
      "next-wiki-memory-wiki": {
        "enabled": true,
        "config": {
          "baseUrl": "https://kb.example.com",
          "apiKeyRef": { "source": "env", "provider": "default", "id": "NEXT_WIKI_API_KEY" },
          "vaultPath": "~/.openclaw/wiki/main",
          "memoryPath": "~/.openclaw/workspace/memory",
          "syncIntervalMinutes": 5
        }
      }
    }
  }
}

| Field | Value | Notes | | --- | --- | --- | | baseUrl | next-wiki origin | HTTPS (or loopback HTTP). Origin only — no /api/v1 suffix; a copied API base is auto-normalized. | | apiKeyRef | OpenClaw SecretRef | Plain strings and {source: "env"\|\"file\"\|\"exec\"} refs both work. The key needs the Agent Memory memory.write scope for sync; memory.read + view enable next_wiki_search/next_wiki_get. | | vaultPath | Memory Wiki vault dir | ~ is expanded; must already exist. | | memoryPath | memory-core dir override | Optional; defaults to the active OpenClaw workspace's memory/ directory. The workspace-root MEMORY.md is also mirrored automatically. A missing directory is treated as empty until memory-core creates it. | | syncIntervalMinutes | 11440, default 5 | How often the mirror scan runs. |

After changing config, restart the gateway (systemctl --user restart openclaw-gateway.service). Verify with the next_wiki_status tool, then check the gateway journal for [next-wiki-memory-wiki] lines — skip warnings with a reason, one-line sync complete: scanned=… uploaded=… unchanged=… failed=… skipped=… summaries on every successful run, and error-level lines on startup or sync failures.

Files larger than 512 KB are skipped with a warning (logged and counted as skipped in status) instead of aborting the run — move or shrink oversized notes and the next sync picks them up. Scan-level failures are logged with their cause rather than failing silently.

The scanner preserves each Markdown file's bytes, frontmatter, links, and relative source path in immutable next-wiki Revisions. It mirrors both the Memory Wiki vault and memory-core's MEMORY.md, memory/YYYY-MM-DD.md, and nested Markdown files; memory-core paths carry a memory-core/ source prefix and use a distinct Raw subtree. Content already represented by a sourceType: memory-bridge source, including duplicate root/nested MEMORY.md files, is mirrored only once; transient memory/working/ traces are excluded. Re-running a scan with the same digest is unchanged; changing a file creates one new current Revision. Attachments and .openclaw-wiki state are excluded. A failed upload is retried with bounded backoff and remains visible as degraded status for manual repair.

The plugin never modifies the local vault, OpenClaw active-memory records, or the Memory Wiki compiler.