diff --git a/memory/memories.db-shm b/memory/memories.db-shm index 33bd67d39..42d2cfce0 100644 Binary files a/memory/memories.db-shm and b/memory/memories.db-shm differ diff --git a/memory/memories.db-wal b/memory/memories.db-wal index a621fc44d..cd271a609 100644 Binary files a/memory/memories.db-wal and b/memory/memories.db-wal differ diff --git a/skills/memory-debug/SKILL.md b/skills/memory-debug/SKILL.md index c612ea318..f75c2bcfd 100644 --- a/skills/memory-debug/SKILL.md +++ b/skills/memory-debug/SKILL.md @@ -35,11 +35,30 @@ signet status curl -s http://localhost:3850/health ``` -If daemon is down, run: +If daemon is down or unresponsive, restart it: ```bash +# preferred: CLI commands +signet start # start if not running +signet restart # stop + start (graceful) + +# if CLI restart doesn't work, kill and restart manually +signet stop +pkill -f "signet.*daemon" # force kill if stop hangs signet start -signet restart + +# if installed as a system service (launchd on macOS, systemd on Linux) +# macOS: +launchctl kickstart -k gui/$(id -u)/com.signet.daemon +# Linux: +systemctl --user restart signet-daemon +``` + +After restart, confirm daemon is healthy: + +```bash +signet status +curl -s http://localhost:3850/health ``` Then verify key files exist: