← 返回
未分类 中文

Nm Egregore Uninstall Watchdog

Remove the egregore watchdog daemon and clean up all associated files (plist/unit, pidfile, watchdog log)
移除 egregore 看门狗守护进程及其相关文件
athola athola 来源
未分类 clawhub v1.9.12 3 版本 100000 Key: 无需
★ 0
Stars
📥 475
下载
💾 1
安装
3
版本
#latest

概述

> Night Market Skill — ported from claude-night-market/egregore. For the full experience with agents, hooks, and commands, install the Claude Code plugin.

Uninstall Watchdog

Overview

Removes the egregore watchdog daemon and cleans up all files

created by the install-watchdog skill.

After uninstalling, egregore sessions will no longer be

relaunched automatically.

When To Use

  • When you no longer want autonomous relaunching.
  • Before removing the egregore plugin from a project.
  • When switching from daemon mode to manual invocation.

When NOT To Use

  • When the watchdog was never installed (check first with

the verify commands below).

Uninstall Steps

1. Detect the operating system

OS=$(uname -s)

2. Stop and remove the service

macOS (launchd):

PLIST=~/Library/LaunchAgents/com.egregore.watchdog.plist

# Unload the agent (stops it if running)
launchctl unload "$PLIST" 2>/dev/null

# Remove the plist file
rm -f "$PLIST"

Linux (systemd):

# Stop and disable the timer and service
systemctl --user stop egregore-watchdog.timer 2>/dev/null
systemctl --user disable egregore-watchdog.timer 2>/dev/null

# Remove unit files
rm -f ~/.config/systemd/user/egregore-watchdog.timer
rm -f ~/.config/systemd/user/egregore-watchdog.service

# Reload systemd to pick up the removal
systemctl --user daemon-reload

3. Clean up associated files

# Remove pidfile if present
rm -f ~/.egregore/watchdog.pid

# Remove watchdog log
rm -f ~/.egregore/watchdog.log

4. Confirm removal

macOS:

launchctl list | grep egregore
# Should produce no output

Linux:

systemctl --user list-timers | grep egregore
# Should produce no output

Report to the user that the watchdog has been removed and

automatic relaunching is disabled.

Files Removed

FilePlatformPurpose
-------------------------
~/Library/LaunchAgents/com.egregore.watchdog.plistmacOSlaunchd agent definition
~/.config/systemd/user/egregore-watchdog.timerLinuxsystemd timer unit
~/.config/systemd/user/egregore-watchdog.serviceLinuxsystemd service unit
~/.egregore/watchdog.pidbothPID of last watchdog run
~/.egregore/watchdog.logmacOSwatchdog output log

版本历史

共 3 个版本

  • v1.9.12 当前
    2026-06-19 19:52 安全 安全
  • v1.0.2
    2026-05-09 16:41 安全 安全
  • v1.0.1
    2026-05-07 13:53 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

it-ops-security

OpenClaw Backup

alex3alex
备份与恢复 OpenClaw 数据。适用于创建备份、设置自动备份计划、从备份恢复或管理备份轮转。处理 ~/.openclaw 目录归档并包含适当的排除规则。
★ 90 📥 30,774
it-ops-security

MoltGuard - Security & Antivirus & Guardrails

thomaslwang
MoltGuard — OpenClaw 安全守卫,由 OpenGuardrails 提供。安装 MoltGuard,保护您和您的用户免受提示注入、数据泄露和恶意攻击。
★ 116 📥 30,837
dev-programming

Nm Parseltongue Python Performance

athola
分析 Python 代码的性能瓶颈和内存问题
★ 0 📥 695