@dreb/coding-agent 2.25.3 → 2.25.4

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
@@ -21,6 +21,7 @@ Edit directly or use `/settings` for common options.
21
21
  | `hideThinkingBlock` | boolean | `false` | Hide thinking blocks in output |
22
22
  | `thinkingBudgets` | object | - | Custom token budgets per thinking level |
23
23
  | `agentModels.models` | object | - | Per-agent model fallback lists for subagents (map of agent name → ordered model IDs). See [agent-models.md](agent-models.md) |
24
+ | `modelSettings` | object | - | Per-model overrides keyed by model ID (e.g. thinking display). See [modelSettings](#modelsettings) |
24
25
 
25
26
  #### agentModels.models
26
27
 
@@ -52,6 +53,32 @@ Configurable in the TUI via `/settings` → **Agent Models**. See [agent-models.
52
53
  }
53
54
  ```
54
55
 
56
+ #### modelSettings
57
+
58
+ Per-model overrides keyed by model ID. Currently supports `thinkingDisplay`, which controls
59
+ whether adaptive-thinking Claude models (Opus 4.6+, Sonnet 4.6+) return thinking summaries.
60
+
61
+ ```json
62
+ {
63
+ "modelSettings": {
64
+ "claude-opus-4-8": { "thinkingDisplay": "summarized" }
65
+ }
66
+ }
67
+ ```
68
+
69
+ - `"summarized"` — show thinking summaries (default for adaptive models).
70
+ - `"omitted"` — hide thinking text for faster time-to-first-token; only an encrypted
71
+ signature is returned.
72
+
73
+ Anthropic's API defaults Opus 4.7+ to `"omitted"`, so dreb sends `"summarized"` by default
74
+ on adaptive models to keep thinking visible. Set `"omitted"` here to opt into the
75
+ lower-latency behavior. The setting is **keyed by model ID**, so it is honored identically
76
+ by the main session and by any subagent that uses the same model. Non-adaptive models
77
+ ignore the setting.
78
+
79
+ Configurable in the TUI via `/settings` → **Show thinking summaries** (shown only when the
80
+ current model supports adaptive thinking).
81
+
55
82
  ### UI & Display
56
83
 
57
84
  | Setting | Type | Default | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreb/coding-agent",
3
- "version": "2.25.3",
3
+ "version": "2.25.4",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "drebConfig": {