@dreb/coding-agent 2.32.1 → 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/docs/settings.md CHANGED
@@ -175,6 +175,26 @@ When a provider requests a retry delay longer than `maxDelayMs` (e.g., Google's
175
175
  }
176
176
  ```
177
177
 
178
+ ### Background Agents
179
+
180
+ | Setting | Type | Default | Description |
181
+ |---------|------|---------|-------------|
182
+ | `backgroundAgents.parentTurnGuardrail` | boolean | `true` | Pause the parent agent after `parentTurnLimit` turns while background subagents are still running |
183
+ | `backgroundAgents.parentTurnLimit` | number | `3` | Parent turns allowed while background agents run before pausing |
184
+
185
+ When you launch background subagents, the parent agent keeps working and returns control to you while subagents run. The guardrail pauses the parent after `parentTurnLimit` turns so it doesn't spin ahead of results — when this happens, dreb surfaces a friendly, non-error notification in the TUI and Telegram explaining that background agents are still working and the parent paused intentionally (it resumes when they report back, or you can send a message to steer it).
186
+
187
+ Set `parentTurnGuardrail` to `false` to let the parent keep running with no turn limit while subagents work — an advanced opt-out with no upper bound on parent turns. Raise `parentTurnLimit` to relax the guardrail without fully disabling it.
188
+
189
+ ```json
190
+ {
191
+ "backgroundAgents": {
192
+ "parentTurnGuardrail": true,
193
+ "parentTurnLimit": 3
194
+ }
195
+ }
196
+ ```
197
+
178
198
  ### Message Delivery
179
199
 
180
200
  | Setting | Type | Default | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreb/coding-agent",
3
- "version": "2.32.1",
3
+ "version": "2.33.0",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "drebConfig": {