Replace Codex-specific server guidance with per-platform launch instructions

The visual companion docs now give concrete launch commands per platform:
Claude Code (default mode), Codex (auto-foreground via CODEX_CI), Gemini CLI
(--foreground with is_background), and a fallback for other environments.
This commit is contained in:
Jesse Vincent
2026-03-09 20:29:15 -07:00
parent c070e6bd45
commit 81acbcd51e
2 changed files with 19 additions and 5 deletions

View File

@@ -59,7 +59,7 @@ if [[ -z "$URL_HOST" ]]; then
fi
fi
# Codex environments may reap detached/background processes. Prefer foreground by default.
# Some environments reap detached/background processes. Auto-foreground when detected.
if [[ -n "${CODEX_CI:-}" && "$FOREGROUND" != "true" && "$FORCE_BACKGROUND" != "true" ]]; then
FOREGROUND="true"
fi