fix(skills): resolve session resolution, add cancelled event status, and scope mqtt topic

This commit is contained in:
2026-08-05 09:11:35 +09:00
parent 68eff79810
commit ea36e81624
8 changed files with 71 additions and 44 deletions
@@ -147,6 +147,9 @@ except Exception:
elif [ "$status" = "error" ]; then
log_error "Job '$job_id' finished with errors."
return 1
elif [ "$status" = "cancelled" ]; then
log_error "Job '$job_id' was cancelled."
return 1
fi
sleep "$check_interval"
done