personal memory agent
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Makefile: use sol service restart in install-service

sol service start is a no-op when the service is already running, so
make install-service used to ship new code without actually reloading
the Python process — today's gemini-tokens fix needed a separate
sol service restart after the install to go live. sol service restart
is a superset of start on both platforms (systemctl restart activates
inactive units; launchctl kill SIGTERM is best-effort followed by
kickstart), so swapping it in picks up code changes without regressing
the fresh-install path.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+1 -1
+1 -1
Makefile
··· 426 426 $(PYTHON) -m think.install_guard install; \ 427 427 npx skills add ./skills/solstone -g -a claude-code -y; \ 428 428 $(VENV_BIN)/sol service install --port $(or $(PORT),5015); \ 429 - $(VENV_BIN)/sol service start; \ 429 + $(VENV_BIN)/sol service restart; \ 430 430 echo "Waiting for service readiness..."; \ 431 431 READY=false; \ 432 432 for i in $$(seq 1 20); do \