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

@wazionapps/openclaw-memory-nexo-brain

v1.1.0

Published

OpenClaw native memory plugin powered by NEXO Brain — Atkinson-Shiffrin cognitive memory, semantic RAG, trust scoring, and metacognitive guard.

Downloads

548

Readme

@wazionapps/openclaw-memory-nexo-brain

Native OpenClaw memory plugin powered by NEXO Brain — a cognitive memory system modeled after human cognition.

What It Does

Replaces OpenClaw's default memory with a full cognitive architecture:

  • Atkinson-Shiffrin Memory Model — Sensory register → Short-term → Long-term, with natural decay
  • Semantic RAG — Finds memories by meaning, not keywords (fastembed, 384-dim vectors)
  • Trust Scoring — Calibrates verification rigor based on alignment history
  • Guard System — Checks past errors before every code change
  • Cognitive Dissonance — Detects conflicts between new instructions and established knowledge
  • Session Continuity — Resumes from where the last session left off via session diaries

Install

# 1. Install NEXO Brain cognitive engine
npx nexo-brain

# 2. Install the OpenClaw plugin
npm install @wazionapps/openclaw-memory-nexo-brain

Configure

In ~/.openclaw/openclaw.json:

{
  "plugins": {
    "slots": {
      "memory": "memory-nexo-brain"
    },
    "memory-nexo-brain": {
      "nexoHome": "~/.nexo",
      "autoRecall": true,
      "autoCapture": true,
      "guardEnabled": true,
      "trustScoring": true
    }
  }
}

Tools Provided

| Tool | Description | |------|------------| | memory_recall | Semantic search across all memories (STM + LTM) | | memory_store | Store error patterns and lessons learned | | memory_forget | Archive or delete outdated memories (GDPR-compliant) | | memory_pin | Pin a memory so it never decays | | memory_guard | Check past errors before editing code | | memory_trust | Update trust score based on user feedback | | memory_dissonance | Detect conflicts with established knowledge | | memory_sentiment | Analyze user's emotional state | | memory_diary_write | Write session summary for continuity | | memory_diary_read | Read recent diaries to resume context | | memory_startup | Register a new session | | memory_heartbeat | Update session task, check inbox |

CLI Commands

openclaw nexo status     # Show cognitive memory statistics
openclaw nexo recall "deployment issues"  # Semantic search
openclaw nexo guard --area shopify        # Check past errors
openclaw nexo trust                       # Show trust score

Architecture

OpenClaw Agent
    ↓ (tool calls)
TypeScript Adapter (this plugin)
    ↓ (JSON-RPC over stdio)
Python MCP Server (NEXO Brain)
    ↓
SQLite (nexo.db + cognitive.db)
    ↓
fastembed vectors (BAAI/bge-small-en-v1.5, CPU)

Requirements

  • macOS (Linux planned)
  • Python 3 with fastembed
  • OpenClaw >= 2026.3.0
  • Run npx nexo-brain first to install the cognitive engine

License

MIT