# Shared helpers for the POC host scripts. Not a documented entry point. MOSAIC_DEV_DIR="/home/jwoltje/.mosaic-dev" POC_ROOT_MARKER=".mosaic-poc-root" # Ensure the runtime state directory exists and carries this project's # ownership marker. The marker is what scripts/reset.sh requires before # it will delete anything. bootstrap_runtime_dir() { if [ ! -d "$MOSAIC_DEV_DIR" ]; then mkdir -p "$MOSAIC_DEV_DIR" echo "bootstrap: created $MOSAIC_DEV_DIR" fi touch "$MOSAIC_DEV_DIR/$POC_ROOT_MARKER" }