@adhdev/daemon-standalone 0.9.82-rc.365 → 0.9.82-rc.366

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/daemon-standalone",
3
- "version": "0.9.82-rc.365",
3
+ "version": "0.9.82-rc.366",
4
4
  "description": "ADHDev standalone daemon — embedded HTTP/WS server for local dashboard",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
@@ -1042,6 +1042,13 @@ function buildQueueTriggerGuidance(queueTrigger) {
1042
1042
  nextAction: "Do not assume the queued task is running. Check mesh_view_queue and daemon connectivity before redispatching."
1043
1043
  };
1044
1044
  }
1045
+ if (queueTrigger.autoLaunchPending === true) {
1046
+ return {
1047
+ queueClaimed: false,
1048
+ queueDispatchState: "pending_waiting_for_autolaunch",
1049
+ nextAction: "A worker session was just auto-launched for this task and is booting; it will claim the task shortly. Wait for it to claim \u2014 do NOT launch another session. Use mesh_view_queue to confirm the assignment lands."
1050
+ };
1051
+ }
1045
1052
  if (queueTrigger.noIdleMeshSessionAvailable === true) {
1046
1053
  return {
1047
1054
  queueClaimed: false,