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

@clawtools/openclaw-uninstall

v0.1.1

Published

Deep cleanup uninstaller for OpenClaw on macOS, runnable via npx.

Readme

openclaw-uninstall

An OpenClaw deep-clean uninstaller you can run directly with npx (macOS-first). It removes leftover services, state directories, and app files that common uninstall methods often miss.

Quick Start

1) Run with confirmation prompt

npx @clawtools/openclaw-uninstall

The command asks for confirmation before any destructive actions.

2) Run without prompt (CI/non-interactive)

npx @clawtools/openclaw-uninstall -y

--yes and --non-interactive both skip the prompt.

Local Development

npm install
npm run help
node bin/openclaw-uninstall.js -y

What Gets Removed

  1. Built-in OpenClaw CLI uninstall path
    • openclaw uninstall --all --yes --non-interactive
    • openclaw gateway stop
    • openclaw gateway uninstall
  2. launchd gateway services (macOS)
    • bot.molt.gateway
    • com.openclaw.gateway
    • Also attempts cleanup of profile-suffixed labels and matching ~/Library/LaunchAgents/*.plist
  3. Config and state directories
    • ${OPENCLAW_STATE_DIR:-~/.openclaw}
    • ~/.openclaw-*
    • ~/.openclaw/workspace
  4. Global CLI removal attempts
    • npm rm -g openclaw
    • pnpm remove -g openclaw
    • bun remove -g openclaw
  5. Application cleanup (macOS)
    • /Applications/OpenClaw.app

CLI Options

  • --yes / -y: skip confirmation prompt and uninstall immediately
  • --non-interactive: compatibility alias for --yes
  • --verbose: print detailed execution logs
  • --help: show help

Recommended Usage After Publish

If this package is published to npm (for example as @clawtools/openclaw-uninstall), end users can run:

npx @clawtools/openclaw-uninstall

To pin a specific version:

npx @clawtools/[email protected]