@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.
- package/README.md +2 -0
- package/dist/core/agent-session.d.ts +14 -1
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +59 -8
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/settings-manager.d.ts +18 -0
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +22 -0
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +7 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/settings.md +20 -0
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/custom-provider-qwen-cli/package.json +1 -1
- package/examples/extensions/with-deps/package.json +1 -1
- package/package.json +2 -2
|
@@ -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();
|