From 120fc913f4591accec7e094f92e28f0dc8e0165c Mon Sep 17 00:00:00 2001 From: Karamelmar Date: Mon, 9 Mar 2026 12:34:08 +0100 Subject: [PATCH] Warn user that first start.sh run builds the image and takes time Co-Authored-By: Claude Sonnet 4.6 --- wizard.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/wizard.sh b/wizard.sh index 82595cd..6ec131d 100755 --- a/wizard.sh +++ b/wizard.sh @@ -127,8 +127,12 @@ print_next_steps() { echo "" echo -e "${BOLD}Start everything:${RESET}" echo -e " ${CYAN}./start.sh${RESET}" - echo -e " Builds the image (first time), starts the agents container," - echo -e " then launches Context Studio Core on your host." + echo -e " Starts the agents container, then launches Context Studio Core on your host." + echo "" + echo -e " ${YELLOW}⚠ First run only:${RESET} the container image needs to be built." + echo -e " This downloads Node.js, Rust, Claude Code and all build tools." + echo -e " ${BOLD}Expect 5–15 minutes depending on your connection.${RESET}" + echo -e " Subsequent starts are instant — the image is cached." echo "" echo -e "${BOLD}Stop the container:${RESET}" echo -e " ${CYAN}./stop.sh${RESET}"