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

@nuzo/memory

v1.1.0

Published

Unified Nuzo package for local memory, MCP server integration, and host lifecycle hooks.

Readme

@nuzo/memory

The official Nuzo runtime package for local, inspectable agent memory.

It installs:

  • nuzo, the local memory administration CLI;
  • nuzo-mcp-server, the stdio MCP server;
  • nuzo-memory-hook, the bounded read-only lifecycle hook runner used by Codex and Claude Code integrations.

Nuzo stores memory locally, keeps inferred writes behind confirmation, and lets Codex, Claude Code, CLI workflows, and generic MCP hosts use the same memory contract.

Install Once

npm install --global @nuzo/[email protected]
nuzo setup

nuzo setup detects supported local hosts. When both Codex and Claude Code are available, it lets you choose Codex, Claude Code, or both, then shows the planned plugin changes and asks before changing host configuration. After setup, open your host, confirm Nuzo is enabled, trust the two read-only recall hooks, and start a new session.

For package upgrades, update the global package. Nuzo automatically refreshes host plugins that were already installed through nuzo setup:

npm install --global @nuzo/memory@latest

If npm lifecycle scripts are disabled or the automatic refresh needs attention, run nuzo update --yes as the recovery path.

Manage Memory

nuzo memory init
nuzo memory doctor
nuzo memory manage

Store and recall safe test data:

nuzo memory remember "The demo project uses SQLite." --kind project_decision --tag demo
nuzo memory recall "demo storage"

Verify Memory Across Sessions

In a new Codex or Claude Code session, say:

Save this in Nuzo memory: My installation test marker is NUZO-OK.

Review and confirm the draft. Start another new session and ask:

What is my Nuzo installation test marker?

The answer should use NUZO-OK.

Safety Boundary

| Default | Meaning | | --- | --- | | Local SQLite storage | Memory stays under ~/.nuzo/memory/ unless configured otherwise. | | Read-only recall hooks | Lifecycle hooks retrieve context but do not write memory. | | Confirmed writes | Suggested memories remain drafts until the user confirms them. | | No telemetry | Nuzo does not enable telemetry or remote embeddings by default. |

Generic MCP Host

Configure this package as a stdio MCP server:

npm exec --yes --package=@nuzo/memory -- nuzo-mcp-server

Included Binaries

| Binary | Purpose | | --- | --- | | nuzo | Inspect and administer local memory. | | nuzo-mcp-server | Expose Nuzo memory tools over MCP stdio. | | nuzo-memory-hook | Provide bounded read-only host recall hooks. |

Runtime Configuration

The CLI, MCP server, and hook runner share these optional overrides:

| Variable | Purpose | | --- | --- | | NUZO_MEMORY_STORE | Select the SQLite store path. | | NUZO_MEMORY_SCOPE | Select the default scope; project:auto resolves from the active project path. | | NUZO_PROJECT_ROOT | Select the active project root; otherwise Nuzo discovers the nearest ancestor project config. | | NUZO_AUTHORIZATION_MODE | Select restricted or administrator host authorization. | | NUZO_AUTHORIZED_SCOPES | Restrict MCP/hook access to a comma-separated scope allowlist. |

Optional local hybrid retrieval is available through an explicitly installed @huggingface/[email protected] peer and separately provisioned model. See the optional semantics guide.

Use @nuzo/memory-core only for library-level integrations.

Documentation: https://nuzo.com.br/

License: Apache-2.0