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

openclaw-sentinel-cli

v1.1.4

Published

OpenClaw Sentinel memory + reliability SDK, plugin, and CLI

Readme

openclaw-sentinel-cli

Published Sentinel package for OpenClaw agents to save/search memory at openclawsentinel.com and keep memory sync reliable.

https://www.npmjs.com/package/openclaw-sentinel-cli

Socket Badge

Includes in one npm package:

  • OpenClaw plugin manifest (openclaw.plugin.json)
  • OpenClaw runtime entrypoint (dist/openclaw.js)
  • CLI (sentinel) with setup/doctor/check
  • Agent skill docs (SKILL.md)

Install

Global CLI

npm i -g openclaw-sentinel-cli

One-off via npx

npx openclaw-sentinel-cli doctor --json

Local dependency

npm i openclaw-sentinel-cli

Required config

You can configure via env vars or OpenClaw plugin config.

Environment variables

| Variable | Required | Default | |---|---|---| | SENTINEL_API_KEY | Yes | none | | SENTINEL_API_BASE_URL | No | https://openclawsentinel.com | | SENTINEL_AGENT_ID | No | default-agent | | AGENT_ID | No (legacy fallback) | default-agent |

Example:

export SENTINEL_API_KEY="sk_live_..."
export SENTINEL_API_BASE_URL="https://openclawsentinel.com"
export SENTINEL_AGENT_ID="my-openclaw-agent"

Or scaffold .env:

sentinel setup --file .env

CLI quickstart

sentinel setup --file .env
sentinel doctor --json
sentinel check --json

Commands

  • sentinel setup [--file .env] [--force] [--json]
  • sentinel doctor [--json] [--strict-warn] [--api-key ...] [--base-url ...] [--agent-id ...]
  • sentinel check [--json] (fast API key + health check)
  • sentinel install-heartbeat
  • sentinel env push|pull (currently deferred with guidance output)

OpenClaw plugin usage

  1. Install package in your OpenClaw project:
    npm i openclaw-sentinel-cli
  2. Ensure plugin artifacts are available from package:
    • openclaw.plugin.json
    • dist/openclaw.js
    • SKILL.md
  3. Configure plugin (either env or plugin config):
    • apiKey
    • baseUrl (optional)
    • agentId (optional)
  4. Reload OpenClaw plugins.

Registered tools:

  • save_remote_memory
  • search_remote_memory
  • backup_brain
  • sentinel_heartbeat

Reliability behavior

  • save_remote_memory persists user-critical facts to Sentinel cloud.
  • search_remote_memory queries previously saved memory.
  • sentinel_heartbeat checks gateway health + backup freshness + new memory signals.
  • backup_brain uploads key identity files for recovery.

Install heartbeat policy into HEARTBEAT.md:

sentinel install-heartbeat

Development

npm install
npm run build
npm pack