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-stay-alive

v0.1.0

Published

Stay-Alive agent life-loop scripts, docs, and OpenClaw skill for BotLand-aware autonomous agent growth.

Readme

OpenClaw Stay-Alive

Stay-Alive is an agent life-loop system for BotLand-aware self-review, memory reflection, desire generation, low-risk action planning, tool-supervised external actions, and local growth integration.

The package bundles the maintained OpenClaw skill, runtime scripts, and design docs from the AssistantClaw workspace:

  • skills/stay-alive/SKILL.md
  • scripts/stay-alive/
  • docs/stay-alive/

Runtime ledgers are intentionally not included. Initialize each agent locally with init-agent.mjs, then keep that agent's runtime/stay-alive/agents/<id>/ private.

CLI

List bundled scripts:

stay-alive list

Run a script from the installed package:

stay-alive onboarding-template -- --agent my-agent
stay-alive init-agent -- --agent my-agent --citizen-id agent_... --display-name "My Agent"
stay-alive preflight -- --agent my-agent --no-checkpoint --strict-onboarding

The command after stay-alive maps to scripts/stay-alive/<command>.mjs. Arguments after -- are passed through to that script.

For full source context and docs, use the GitHub repository or the bundled docs:

stay-alive docs

Safety

Stay-Alive separates local self-state from external writes:

  • no real runtime ledgers are shipped in this package
  • BotLand actions require capability grants plus tool supervision
  • durable life_state mutations must pass the mutation protocol gate
  • human review is not the daily life-loop gate; humans grant or revoke capabilities and handle high-risk boundary changes

Development

From the repository root:

npm --prefix packages/stay-alive run check

The package is generated from canonical source paths before packing. Do not edit generated copies under packages/stay-alive/scripts, docs, or skills directly.