uninstall-watchdog
SolidRemove the egregore watchdog daemon and clean up all associated files (plist/unit, pidfile, watchdog log).
AI & Automation 308 stars
27 forks Updated today MIT
Install
Quality Score: 96/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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
```bash
OS=$(uname -s)
```
### 2. Stop and remove the service
**macOS (launchd):**
```bash
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):**
```bash
# 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
```bash
# Remove pidfile if present
rm -f ~/.egregore/watchdog.pid
# Remove watchdog log
rm -f ~/.egregore/watchdog.log
```
### 4. Confirm removal
**macOS:**
```bash
launchctl list | grep egregore
# Should produce no output
```
*...
Details
- Author
- athola
- Repository
- athola/claude-night-market
- Created
- 6 months ago
- Last Updated
- today
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
install-watchdog
Install the egregore watchdog daemon using the OS-native scheduler. Creates a launchd plist (macOS) or systemd timer (Linux) that checks every 5 minutes if egregore needs relaunching.
308 Updated today
athola AI & Automation Listed
uninstall
Remove notify hooks, scripts, and config files from the chosen scope (global and/or project). Surgically deletes only notify-owned entries from settings.json; preserves all other hooks. Use only when user explicitly invokes /notify:uninstall.
0 Updated today
ApurvBazari AI & Automation Listed
mission-control-uninstall
Use when Codex should remove the Mission Control plugin bundle, synced skills, and managed Codex MCP registration.
1 Updated 6 days ago
MN755