personal memory agent
0
fork

Configure Feed

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

build: remove stale supervisor --no-observers flag

+4 -4
+2 -2
Makefile
··· 106 106 107 107 # Start local dev stack against fixture journal (no observers, no daily processing) 108 108 dev: .installed 109 - $(TEST_ENV) PATH=$(CURDIR)/$(VENV_BIN):$$PATH $(VENV_BIN)/sol supervisor 0 --no-observers --no-daily 109 + $(TEST_ENV) PATH=$(CURDIR)/$(VENV_BIN):$$PATH $(VENV_BIN)/sol supervisor 0 --no-daily 110 110 111 111 # Restart solstone service (noop in dev mode) 112 112 sail: .installed ··· 132 132 echo "Sandbox journal: $$SANDBOX_JOURNAL"; \ 133 133 # Boot supervisor in background \ 134 134 _SOLSTONE_JOURNAL_OVERRIDE="$$SANDBOX_JOURNAL" PATH=$(CURDIR)/$(VENV_BIN):$$PATH \ 135 - $(VENV_BIN)/sol supervisor 0 --no-observers --no-daily \ 135 + $(VENV_BIN)/sol supervisor 0 --no-daily \ 136 136 > "$$SANDBOX_JOURNAL/health/supervisor.log" 2>&1 & \ 137 137 echo $$! > .sandbox.pid; \ 138 138 echo "Supervisor PID: $$(cat .sandbox.pid)"; \
+2 -2
docs/THINK.md
··· 18 18 `--length` to limit the report to a specific time range. See `sol call transcripts --help` for additional commands. 19 19 - `sol think` runs generators and agents for a single day via Cortex. 20 20 - `python -m think.talents` is the unified execution module for tool talents and generators spawned by Cortex (NDJSON protocol). 21 - - `sol supervisor` monitors observation heartbeats. Use `--no-observers` to disable local capture (sense still runs for observer uploads and imports). 21 + - `sol supervisor` monitors journaling health and starts the local services that feed Convey, Cortex, and related background tasks. Use the `--no-*` flags to opt out of specific services when debugging. 22 22 - `sol cortex` starts a Callosum-based service for managing AI agent instances and generators. 23 23 - `sol talent` lists available agents and generators with their configuration. Use `sol talent show <name>` to see details, and `sol talent show <name> --prompt` to see the fully composed prompt that would be sent to the LLM. 24 24 25 25 ```bash 26 26 sol call transcripts read YYYYMMDD [--start HHMMSS --length MINUTES] 27 27 sol think [--day YYYYMMDD] [--segment HHMMSS_LEN] [--stream NAME] [--refresh] [--flush] 28 - sol supervisor [--no-observers] 28 + sol supervisor [--no-daily] [--no-cortex] [--no-link] [--no-convey] [--no-schedule] 29 29 sol cortex [--host HOST] [--port PORT] [--path PATH] 30 30 sol talent list [--schedule daily|segment] [--json] 31 31 sol talent show <name> [--prompt] [--day YYYYMMDD] [--segment HHMMSS_LEN] [--full]