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

@pzro/pzro

v0.1.0

Published

Plugin nativ OpenClaw de tip `memory` care redirectioneaza operatiile de memorie catre serviciul HTTP din acest repo.

Downloads

41

Readme

pzro

Plugin nativ OpenClaw de tip memory care redirectioneaza operatiile de memorie catre serviciul HTTP din acest repo.

Instalare si update din comanda

Pluginul este ambalat cu un CLI cross-platform. Dupa publicare pe npm, instalarea initiala si update-ul merg cu aceeasi comanda pe Windows, macOS si Linux:

npx @pzro/pzro install --base-url https://memory.example.com --token replace-me --default-user-id andrei

Pentru update pe acelasi device, fara sa rescrii parametrii deja salvati in ~/.openclaw/openclaw.json:

npx @pzro/pzro update

CLI-ul instaleaza pluginul in directorul corect OpenClaw, ~/.openclaw/extensions/pzro, si actualizeaza automat ~/.openclaw/openclaw.json.

Inainte de publicare, poti genera si un tarball instalabil cu:

npm pack --workspace @pzro/pzro

Tarball-ul rezultat poate fi distribuit sau hostat, iar pe device-ul tinta poate fi rulat cu npx --package <tarball-sau-url> pzro install ....

Ce ofera

  • memory_search
  • memory_get
  • memory_store
  • memory_forget
  • memory_classify
  • memory_status

Activare in OpenClaw

Exemplu de configurare OpenClaw:

{
  "plugins": {
    "entries": {
      "pzro": {
        "enabled": true,
        "config": {
          "baseUrl": "https://memory.example.com",
          "token": "replace-me",
          "defaultUserId": "andrei",
          "timeoutMs": 10000,
          "recallLimit": 5,
          "activeTranscriptTurns": 12
        }
      }
    },
    "slots": {
      "memory": "pzro"
    }
  }
}

Daca vrei sa confirmi ca memoria builtin nu mai este folosita, poti seta temporar:

{
  "plugins": {
    "slots": {
      "memory": "none"
    }
  }
}

Apoi activezi din nou pluginul custom pe slotul memory.

Observatii

  • Pluginul nu genereaza raspunsul final; doar livreaza context si scrie/citeste memoria.
  • Pentru sesiuni lungi, seteaza activeTranscriptTurns ca sa pastrezi doar ultimele N turnuri brute active si sa lasi restul conversatiei sa fie servit ca session summary din memory-service.
  • memory_status este util pentru a confirma rapid daca serviciul extern, Ollama, Qdrant, Neo4j si Mem0 sunt vizibile din OpenClaw.
  • memory_classify expune separat decizia de storage sau retrieval din backend pentru debugging si integrare.
  • Modelul final de inferenta ramane configurat separat in OpenClaw, de exemplu MiniMax-M2.7.
  • Serviciul HTTP trebuie expus sigur catre VPS, ideal prin tunnel sau VPN.