···106106107107# Start local dev stack against fixture journal (no observers, no daily processing)
108108dev: .installed
109109- $(TEST_ENV) PATH=$(CURDIR)/$(VENV_BIN):$$PATH $(VENV_BIN)/sol supervisor 0 --no-observers --no-daily
109109+ $(TEST_ENV) PATH=$(CURDIR)/$(VENV_BIN):$$PATH $(VENV_BIN)/sol supervisor 0 --no-daily
110110111111# Restart solstone service (noop in dev mode)
112112sail: .installed
···132132 echo "Sandbox journal: $$SANDBOX_JOURNAL"; \
133133 # Boot supervisor in background \
134134 _SOLSTONE_JOURNAL_OVERRIDE="$$SANDBOX_JOURNAL" PATH=$(CURDIR)/$(VENV_BIN):$$PATH \
135135- $(VENV_BIN)/sol supervisor 0 --no-observers --no-daily \
135135+ $(VENV_BIN)/sol supervisor 0 --no-daily \
136136 > "$$SANDBOX_JOURNAL/health/supervisor.log" 2>&1 & \
137137 echo $$! > .sandbox.pid; \
138138 echo "Supervisor PID: $$(cat .sandbox.pid)"; \
+2-2
docs/THINK.md
···1818 `--length` to limit the report to a specific time range. See `sol call transcripts --help` for additional commands.
1919- `sol think` runs generators and agents for a single day via Cortex.
2020- `python -m think.talents` is the unified execution module for tool talents and generators spawned by Cortex (NDJSON protocol).
2121-- `sol supervisor` monitors observation heartbeats. Use `--no-observers` to disable local capture (sense still runs for observer uploads and imports).
2121+- `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.
2222- `sol cortex` starts a Callosum-based service for managing AI agent instances and generators.
2323- `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.
24242525```bash
2626sol call transcripts read YYYYMMDD [--start HHMMSS --length MINUTES]
2727sol think [--day YYYYMMDD] [--segment HHMMSS_LEN] [--stream NAME] [--refresh] [--flush]
2828-sol supervisor [--no-observers]
2828+sol supervisor [--no-daily] [--no-cortex] [--no-link] [--no-convey] [--no-schedule]
2929sol cortex [--host HOST] [--port PORT] [--path PATH]
3030sol talent list [--schedule daily|segment] [--json]
3131sol talent show <name> [--prompt] [--day YYYYMMDD] [--segment HHMMSS_LEN] [--full]