@dreb/coding-agent 2.19.3 → 2.21.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 CHANGED
@@ -23,6 +23,7 @@ What you get in exchange: a skill system, an extension API, custom agent definit
23
23
  - [Sessions](#sessions)
24
24
  - [Branching](#branching)
25
25
  - [Compaction](#compaction)
26
+ - [Tab Title](#tab-title)
26
27
  - [Settings](#settings)
27
28
  - [Context Files](#context-files)
28
29
  - [Memory](#memory)
@@ -245,6 +246,16 @@ Long sessions can exhaust context windows. Compaction summarizes older messages
245
246
 
246
247
  Compaction is lossy. The full history remains in the JSONL file; use `/tree` to revisit. Customize compaction behavior via [extensions](#extensions). See [docs/compaction.md](docs/compaction.md) for internals.
247
248
 
249
+ ### Tab Title
250
+
251
+ After a few tool calls, dreb auto-generates a short terminal tab title describing the session's task. Useful when multiple tabs are open. Fires once per session via a background LLM call; failures are silent.
252
+
253
+ Disable or adjust the trigger threshold in [settings](docs/settings.md):
254
+
255
+ ```json
256
+ { "tabTitle": { "enabled": false } }
257
+ ```
258
+
248
259
  ---
249
260
 
250
261
  ## Settings