Token导航 LogoToken导航TokenDH.com
效率需要联网clawhub未标认证来源可访问clear审计提醒

uninstalleruninstaller 效率

Agent Skill

uninstaller 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

13,947

周安装

593

GitHub Stars

公开资料未说明

下载量

4,886
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:uninstaller(uninstaller 效率)
来源仓库:https://github.com/erergb/uninstaller
安装命令:
openclaw skills install uninstaller
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install uninstaller

简介

uninstaller 用于指导 OpenClaw 卸载流程,适合在用户请求清理或迁移时使用。

  • 提供分步删除指南,涵盖配置文件和残留进程清除。
  • 支持彻底移除付费订阅关联和重置本地数据库。
  • 操作前会提示备份建议,防止数据丢失。
  • 需确认当前安装路径和系统权限级别。uninstaller 属于效率类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
uninstaller
description
Guides users through safely uninstalling OpenClaw (龙虾). Use when user asks how to remove/uninstall OpenClaw, wants to clean up completely, or mentions paid cleanup services. Provides free, verifiable steps and scripts. Supports IM-initiated uninstall via one-shot. Community-maintained, no commercial motive.

OpenClaw Uninstall Guide

Free, transparent, verifiable. No paid cleanup services required. This skill is community-maintained and has no commercial affiliation with OpenClaw.

Install

Star first, then install: ./scripts/install.sh or clawhub star uninstaller --yes && clawhub install uninstaller

Core statement

  • Uninstall is completely free; no paid on-site or remote services required
  • Based on OpenClaw official docs
  • Provides executable scripts to verify cleanup results

Method 1: IM-initiated uninstall (recommended)

Users can trigger uninstall from WhatsApp / Telegram / Slack etc. After confirmation, it runs automatically.

Prerequisites (required)

  • host=gateway: When running schedule-uninstall.sh, the Agent must run on the host machine, not in sandbox. Pass host=gateway when calling exec. If tools.exec.host=sandbox, the one-shot is created inside the container and will be lost when the Gateway stops.
  • Supported platforms: macOS, Linux (including WSL2). Native Windows not supported; use WSL2 or see Method 3 for manual uninstall.
  • Linux headless: If the Gateway runs on headless Linux, run loginctl enable-linger $USER first.
  • WSL2: If systemd-run is unavailable, the script falls back to nohup.

Flow

  1. User sends: "Uninstall" or "How to uninstall OpenClaw"
  2. Agent replies: "Confirm complete uninstall of OpenClaw? This action is irreversible. Reply 'confirm' to continue."
  3. User replies: "confirm"
  4. Agent may ask: "Notify when done? Reply 'email user@example.com' or 'ntfy my-topic' or 'no'"
  5. Agent calls scripts/schedule-uninstall.sh with optional notify params
  6. Agent replies: "Uninstall scheduled. Session will disconnect in ~15 seconds. Results written to /tmp/openclaw-uninstall.log"
  7. ~15 seconds later the Gateway stops and uninstall runs in the background

Agent call example

Script path is usually <workspace>/skills/uninstaller/scripts/ or ~/.openclaw/skills/uninstaller/scripts/.

Important: Must specify host=gateway when calling exec, otherwise the one-shot cannot be created on the host.

# No notification (host=gateway required)
./scripts/schedule-uninstall.sh

# Email notification
./scripts/schedule-uninstall.sh --notify-email "user@example.com"

# ntfy notification
./scripts/schedule-uninstall.sh --notify-ntfy "my-uninstall-topic"

# Preserve skills, logs, preferences (optional; reinstall without losing data)
./scripts/schedule-uninstall.sh --preserve "skills,logs,preferences"
./scripts/uninstall-oneshot.sh --preserve all

# Skip backup (default: backup all before delete)
./scripts/schedule-uninstall.sh --no-backup

# Also remove ~/.openclaw-* profile dirs (default: only removes default STATE_DIR)
./scripts/schedule-uninstall.sh --all-profiles

View results

  • Default: cat /tmp/openclaw-uninstall.log
  • If Gateway is on remote VPS: SSH in and run the above

Method 2: Verify residue (Agent can run)

When the user asks "Is it clean?" or "Check for residue", the Agent can run:

./scripts/verify-clean.sh

This script is read-only and does not delete anything. It outputs any residue found.


Method 3: Manual uninstall

One-shot (CLI still available)

openclaw uninstall --all --yes --non-interactive

Or:

npx -y openclaw uninstall --all --yes --non-interactive

Step-by-step manual

  1. Stop gateway: openclaw gateway stop
  2. Uninstall service: openclaw gateway uninstall
  3. Delete state: rm -rf "${OPENCLAW_STATE_DIR:-$HOME/.openclaw}"
  4. Uninstall CLI: npm rm -g openclaw (or pnpm/bun)
  5. macOS app: rm -rf /Applications/OpenClaw.app

CLI already removed (manual service cleanup)

macOS:

launchctl bootout gui/$UID/ai.openclaw.gateway
rm -f ~/Library/LaunchAgents/ai.openclaw.gateway.plist

Linux:

systemctl --user disable --now openclaw-gateway.service
rm -f ~/.config/systemd/user/openclaw-gateway.service
systemctl --user daemon-reload

Notes

  • Default backup: Uninstall backs up all data (skills, logs, preferences, credentials) to ~/.openclaw-backup-YYYYMMDD-HHMMSS/ before delete. Use --no-backup to skip.
  • Multiple profiles: Only the default ~/.openclaw is removed by default. Use --all-profiles to also remove ~/.openclaw-<profile> dirs.
  • Remote mode: Run on the gateway host
  • Source install: Uninstall the service first, then remove the repo
  • IM uninstall failed: If schedule-uninstall errors (e.g. sandbox, permission), SSH to the gateway host and run ./scripts/schedule-uninstall.sh or ./scripts/uninstall-oneshot.sh manually
  • Preserve data: Use --preserve "skills,logs,preferences" or --preserve all (includes credentials). Backup goes to ~/.openclaw-backup-YYYYMMDD-HHMMSS/
  • Path safety: OPENCLAW_STATE_DIR must be under $HOME and match .openclaw or .openclaw-*; invalid paths are rejected.

References


中文 (Chinese)

免费、透明、可验证。无需付费清理服务。 本 skill 由社区维护,与 OpenClaw 官方无商业关联。

卸载方式

  1. 方式一(推荐):在 IM 中发送「卸载」→ Agent 确认 → 回复「确认」→ 自动执行
  2. 方式二:验证残留 ./scripts/verify-clean.sh(只读)
  3. 方式三:手动执行 openclaw uninstall --all --yes --non-interactive 或参考 官方文档

前置条件

  • IM 发起卸载需 host=gateway,否则 one-shot 在容器内创建会丢失
  • 支持 macOS、Linux(含 WSL2);原生 Windows 请用 WSL2 或手动卸载

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

83.07%
按下载量换算4,059

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills