@dreb/coding-agent 2.53.0 → 2.54.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
@@ -336,14 +336,18 @@ When multiple sources specify a session directory, `--session-dir` CLI flag take
336
336
 
337
337
  | Setting | Type | Default | Description |
338
338
  |---------|------|---------|-------------|
339
- | `enabledModels` | string[] | - | Model patterns for cycling (same format as `--models` CLI flag) |
339
+ | `enabledModels` | string[] | - | Ordered model-cycling scope. When absent, all registry models are available in registry order, including future additions. A non-empty explicit list uses canonical `provider/model` references. |
340
340
 
341
341
  ```json
342
342
  {
343
- "enabledModels": ["claude-*", "gpt-4o", "gemini-2*"]
343
+ "enabledModels": ["anthropic/claude-sonnet-4-5", "openai/gpt-5"]
344
344
  }
345
345
  ```
346
346
 
347
+ An absent value is the future-inclusive implicit-all scope, not an empty list, and is not reorderable. An explicit scope must contain at least one model. Existing configurations may use glob, fuzzy, or thinking-suffix patterns like the `--models` CLI flag; the Dashboard scoped-models editor resolves those legacy values and saves an edited scope as exact canonical references in its selected order.
348
+
349
+ Dashboard Settings provides a responsive scoped-models editor with provider-grouped search, model/provider/all toggles, accessible up/down ordering controls, and save/reset. It reads the effective global + selected-project value, but saves `enabledModels` to global settings; it warns when `.dreb/settings.json` shadows that global value. Scoped-model changes seed new sessions and do not mutate a running session. See [dashboard.md](dashboard.md) and the [`get_settings` / `set_settings` RPC contract](rpc.md#settings).
350
+
347
351
  ### Markdown
348
352
 
349
353
  | Setting | Type | Default | Description |
@@ -410,7 +414,7 @@ See [packages.md](packages.md) for package management details.
410
414
  "enabled": true,
411
415
  "maxRetries": 3
412
416
  },
413
- "enabledModels": ["claude-*", "gpt-4o"],
417
+ "enabledModels": ["anthropic/claude-sonnet-4-5", "openai/gpt-5"],
414
418
  "packages": ["dreb-skills"]
415
419
  }
416
420
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreb/coding-agent",
3
- "version": "2.53.0",
3
+ "version": "2.54.0",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "drebConfig": {