personal memory agent
0
fork

Configure Feed

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

Makefile: drop sail target; hopper no longer invokes it

The `sail` target was a one-line wrapper around
`sol service restart --if-installed` that existed solely so hopper
could auto-restart the installed service after shipping a lode.

Hopper is dropping that auto-invocation, so the target is dead.
`sol service restart --if-installed` remains the direct path.

+1 -6
-1
AGENTS.md
··· 99 99 | `make dev` | Start the full stack (supervisor + callosum + sense + cortex + convey) against `tests/fixtures/journal/`, no observers, no daily processing. Primary inner-loop for UI work. Ctrl-C to stop. | 100 100 | `make sandbox` | Ephemeral background sandbox: copies fixtures to a temp journal, starts supervisor in the background, waits for readiness, writes `.sandbox.pid` / `.sandbox.journal`. Pair with verify targets below. Always follow with `make sandbox-stop`. | 101 101 | `make sandbox-stop` | Terminate the backgrounded sandbox and clean up state files. | 102 - | `make sail` | Restart the **installed** solstone service via `sol service restart --if-installed`. No-op when no service is installed (typical in a dev worktree). | 103 102 104 103 ### Format, lint, test 105 104
+1 -5
Makefile
··· 7 7 # all runs to one path and pytest wipes it on startup, destroying concurrent state. 8 8 export TMPDIR := /var/tmp 9 9 10 - .PHONY: install uninstall test test-apps test-app test-only test-integration test-integration-only test-all format format-check install-checks ci clean clean-install coverage watch versions update update-prices pre-commit skills dev all sail sandbox sandbox-stop install-pinchtab verify-browser update-browser-baselines review verify verify-api update-api-baselines install-service uninstall-service service-logs gate-agents-rename check-layer-hygiene 10 + .PHONY: install uninstall test test-apps test-app test-only test-integration test-integration-only test-all format format-check install-checks ci clean clean-install coverage watch versions update update-prices pre-commit skills dev all sandbox sandbox-stop install-pinchtab verify-browser update-browser-baselines review verify verify-api update-api-baselines install-service uninstall-service service-logs gate-agents-rename check-layer-hygiene 11 11 12 12 # Default target - install package in editable mode 13 13 all: install ··· 107 107 # Start local dev stack against fixture journal (no observers, no daily processing) 108 108 dev: .installed 109 109 $(TEST_ENV) PATH=$(CURDIR)/$(VENV_BIN):$$PATH $(VENV_BIN)/sol supervisor 0 --no-daily 110 - 111 - # Restart solstone service (noop in dev mode) 112 - sail: .installed 113 - $(VENV_BIN)/sol service restart --if-installed 114 110 115 111 # Start sandbox stack: fixture copy + background supervisor + readiness wait 116 112 sandbox: .installed