Help us improve
Share bugs, ideas, or general feedback.
From egregore
Uninstalls egregore watchdog daemon on macOS/Linux: stops launchd/systemd services, removes plist/unit files, pidfile, and logs. Use to disable auto-session relaunching.
npx claudepluginhub athola/claude-night-market --plugin egregoreHow this skill is triggered — by the user, by Claude, or both
Slash command
/egregore:uninstall-watchdogThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Removes the egregore watchdog daemon and cleans up all files
Installs egregore watchdog daemon using launchd (macOS) or systemd (Linux) to check every 5 minutes and relaunch sessions when conditions met. For persistent operation post-init.
Stops and removes the ClaudeClaw background service for the current instance. Preserves data while removing the service unit.
Removes aweek heartbeat (launchd on macOS or crontab on Linux) and/or .aweek/ data directory from projects, with mandatory user confirmations for destructive actions.
Share bugs, ideas, or general feedback.
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.
OS=$(uname -s)
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
# Remove pidfile if present
rm -f ~/.egregore/watchdog.pid
# Remove watchdog log
rm -f ~/.egregore/watchdog.log
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.
| File | Platform | Purpose |
|---|---|---|
~/Library/LaunchAgents/com.egregore.watchdog.plist | macOS | launchd agent definition |
~/.config/systemd/user/egregore-watchdog.timer | Linux | systemd timer unit |
~/.config/systemd/user/egregore-watchdog.service | Linux | systemd service unit |
~/.egregore/watchdog.pid | both | PID of last watchdog run |
~/.egregore/watchdog.log | macOS | watchdog output log |