- Fix bash pipe/exit status issue with set -euo pipefail - Change from: if ! cmd | grep -q pattern - Change to: OUTPUT=$(cmd || true); if echo "$OUTPUT" | grep -q pattern - Add test isolation cleanup (rm specific session, not all) - Add 'Using provided message:' output to kugetsu resume - Fix grep pattern: 'cannot be resumed' not 'not resumable'