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

@unerase/cli

v0.1.2

Published

Backup, version, and restore the brain of any AI agent. Phase 0 CLI for OpenClaw safe restore.

Downloads

30

Readme

@unerase/cli

Backup, version, and restore the brain of any AI agent.

Unerase is a local-first backup tool for the parts of an AI agent that are yours — the memory, skills, principles, and configs you've taught it about your business, your family, your work-in-progress. When a session resets, a machine swaps, or an agent overwrites its own files, Unerase gets you back to the version that knows you.

This package ships the Phase 0 CLI: a single unerase command you run on your own machine, against your own OpenClaw workspaces. No cloud, no auth, no billing.

Install

npm install -g @unerase/cli
unerase --version
unerase --help

Requires Node 20 or later, macOS or Linux, and restic on your PATH.

Quickstart

The full user walkthrough — prerequisites, unerase init, unerase serve, agent skill install, first backup, list versions, restore preview, and the restore-apply safety contract — lives in the project root README:

👉 github.com/kengwei/unerase#readme

The root README is the canonical Phase 0 walkthrough. This package-local README is a stub that points at it.

What this package contains

The published tarball is a single bundled JavaScript file (dist/cli.js) plus this README, the LICENSE, and the package manifest. It has zero runtime npm dependencies — the schema package (@unerase/shared-schema) is bundled into the CLI at build time.

Building from source

If you've cloned the unerase repo and want to run the CLI locally:

# from repo root
npm install
npm run cli:build       # produces apps/cli/dist/cli.js (tsup bundle)
node apps/cli/dist/cli.js --help

# or install globally from a packed tarball:
npm pack -w apps/cli --pack-destination=/tmp
npm install -g /tmp/unerase-cli-0.1.1.tgz
unerase --help

To run the test suite:

npm run cli:test        # tsc-builds tests under dist/test/, runs node --test

License

MIT. See LICENSE.

Project links

  • Source / issues: https://github.com/kengwei/unerase
  • PRD, system design, architecture decisions: in the repo root
  • Phase 0 user walkthrough: root README.md