@dreb/coding-agent 2.32.0 → 2.33.0

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.
@@ -2344,6 +2344,13 @@ export class InteractiveMode {
2344
2344
  this.updateBackgroundAgentStatus();
2345
2345
  break;
2346
2346
  }
2347
+ case "parent_paused_for_background_agents": {
2348
+ const count = event.runningAgentCount;
2349
+ const agentWord = count === 1 ? "agent" : "agents";
2350
+ this.showStatus(`Paused automatically — ${count} background ${agentWord} still working. dreb will resume when they report back, or send a message to continue. (configure via backgroundAgents settings)`);
2351
+ this.updateBackgroundAgentStatus();
2352
+ break;
2353
+ }
2347
2354
  case "tasks_update": {
2348
2355
  this.tasksPanel.update(event.tasks);
2349
2356
  this.ui.requestRender();