@dreb/coding-agent 2.61.0 → 2.61.2

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.
Files changed (63) hide show
  1. package/README.md +5 -3
  2. package/dist/cli/args.d.ts +1 -1
  3. package/dist/cli/args.d.ts.map +1 -1
  4. package/dist/cli/args.js +2 -2
  5. package/dist/cli/args.js.map +1 -1
  6. package/dist/core/agent-session.d.ts +2 -0
  7. package/dist/core/agent-session.d.ts.map +1 -1
  8. package/dist/core/agent-session.js +11 -3
  9. package/dist/core/agent-session.js.map +1 -1
  10. package/dist/core/dispatch-arbiter.d.ts.map +1 -1
  11. package/dist/core/dispatch-arbiter.js +2 -2
  12. package/dist/core/dispatch-arbiter.js.map +1 -1
  13. package/dist/core/model-registry.d.ts.map +1 -1
  14. package/dist/core/model-registry.js +1 -0
  15. package/dist/core/model-registry.js.map +1 -1
  16. package/dist/core/settings-manager.d.ts +4 -4
  17. package/dist/core/settings-manager.d.ts.map +1 -1
  18. package/dist/core/settings-manager.js.map +1 -1
  19. package/dist/core/thinking.d.ts.map +1 -1
  20. package/dist/core/thinking.js +9 -1
  21. package/dist/core/thinking.js.map +1 -1
  22. package/dist/core/tools/index.d.ts +6 -6
  23. package/dist/core/tools/subagent.d.ts +9 -9
  24. package/dist/core/tools/subagent.d.ts.map +1 -1
  25. package/dist/core/tools/subagent.js +4 -2
  26. package/dist/core/tools/subagent.js.map +1 -1
  27. package/dist/core/tools/watch-github-ci.d.ts.map +1 -1
  28. package/dist/core/tools/watch-github-ci.js +110 -67
  29. package/dist/core/tools/watch-github-ci.js.map +1 -1
  30. package/dist/main.d.ts.map +1 -1
  31. package/dist/main.js +6 -1
  32. package/dist/main.js.map +1 -1
  33. package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -1
  34. package/dist/modes/interactive/components/settings-selector.js +3 -2
  35. package/dist/modes/interactive/components/settings-selector.js.map +1 -1
  36. package/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -1
  37. package/dist/modes/interactive/components/thinking-selector.js +2 -1
  38. package/dist/modes/interactive/components/thinking-selector.js.map +1 -1
  39. package/dist/modes/interactive/theme/dark.json +1 -6
  40. package/dist/modes/interactive/theme/light.json +1 -6
  41. package/dist/modes/interactive/theme/theme-schema.json +10 -2
  42. package/dist/modes/interactive/theme/theme.d.ts +2 -2
  43. package/dist/modes/interactive/theme/theme.d.ts.map +1 -1
  44. package/dist/modes/interactive/theme/theme.js +9 -3
  45. package/dist/modes/interactive/theme/theme.js.map +1 -1
  46. package/dist/modes/rpc/rpc-mode.d.ts.map +1 -1
  47. package/dist/modes/rpc/rpc-mode.js +1 -0
  48. package/dist/modes/rpc/rpc-mode.js.map +1 -1
  49. package/dist/modes/rpc/rpc-types.d.ts +2 -0
  50. package/dist/modes/rpc/rpc-types.d.ts.map +1 -1
  51. package/dist/modes/rpc/rpc-types.js.map +1 -1
  52. package/docs/agent-models.md +1 -1
  53. package/docs/custom-provider.md +2 -2
  54. package/docs/extensions.md +1 -1
  55. package/docs/models.md +3 -1
  56. package/docs/rpc.md +5 -4
  57. package/docs/sdk.md +1 -1
  58. package/docs/settings.md +2 -2
  59. package/docs/themes.md +3 -1
  60. package/docs/tui.md +1 -1
  61. package/examples/extensions/dynamic-resources/dynamic.json +1 -0
  62. package/examples/extensions/preset.ts +1 -1
  63. package/package.json +1 -1
package/docs/themes.md CHANGED
@@ -109,6 +109,7 @@ vim ~/.dreb/agent/themes/my-theme.json
109
109
  "thinkingMedium": "#00ffff",
110
110
  "thinkingHigh": "#ff00ff",
111
111
  "thinkingXhigh": "#ff0000",
112
+ "thinkingMax": "#ff1493",
112
113
  "bashMode": "#ffaa00"
113
114
  }
114
115
  }
@@ -216,7 +217,7 @@ Every theme must define all 51 color tokens. There are no optional colors.
216
217
  | `syntaxOperator` | Operators |
217
218
  | `syntaxPunctuation` | Punctuation |
218
219
 
219
- ### Thinking Level Borders (6 colors)
220
+ ### Thinking Level Borders (7 colors)
220
221
 
221
222
  Editor border colors indicating thinking level (visual hierarchy from subtle to prominent):
222
223
 
@@ -228,6 +229,7 @@ Editor border colors indicating thinking level (visual hierarchy from subtle to
228
229
  | `thinkingMedium` | Medium thinking |
229
230
  | `thinkingHigh` | High thinking |
230
231
  | `thinkingXhigh` | Extra high thinking |
232
+ | `thinkingMax` | Maximum thinking effort |
231
233
 
232
234
  ### Bash Mode (1 color)
233
235
 
package/docs/tui.md CHANGED
@@ -415,7 +415,7 @@ renderResult(result, options, theme, context) {
415
415
  | Diffs | `toolDiffAdded`, `toolDiffRemoved`, `toolDiffContext` |
416
416
  | Markdown | `mdHeading`, `mdLink`, `mdLinkUrl`, `mdCode`, `mdCodeBlock`, `mdCodeBlockBorder`, `mdQuote`, `mdQuoteBorder`, `mdHr`, `mdListBullet` |
417
417
  | Syntax | `syntaxComment`, `syntaxKeyword`, `syntaxFunction`, `syntaxVariable`, `syntaxString`, `syntaxNumber`, `syntaxType`, `syntaxOperator`, `syntaxPunctuation` |
418
- | Thinking | `thinkingOff`, `thinkingMinimal`, `thinkingLow`, `thinkingMedium`, `thinkingHigh`, `thinkingXhigh` |
418
+ | Thinking | `thinkingOff`, `thinkingMinimal`, `thinkingLow`, `thinkingMedium`, `thinkingHigh`, `thinkingXhigh`, `thinkingMax` |
419
419
  | Modes | `bashMode` |
420
420
 
421
421
  **Background colors** (`theme.bg(color, text)`):
@@ -69,6 +69,7 @@
69
69
  "thinkingMedium": "#81a2be",
70
70
  "thinkingHigh": "#b294bb",
71
71
  "thinkingXhigh": "#d183e8",
72
+ "thinkingMax": "#ff6b9d",
72
73
  "bashMode": "green"
73
74
  },
74
75
  "export": {
@@ -51,7 +51,7 @@ interface Preset {
51
51
  /** Model ID (e.g., "claude-sonnet-4-5") */
52
52
  model?: string;
53
53
  /** Thinking level */
54
- thinkingLevel?: "off" | "minimal" | "low" | "medium" | "high" | "xhigh";
54
+ thinkingLevel?: "off" | "minimal" | "low" | "medium" | "high" | "xhigh" | "max";
55
55
  /** Tools to enable (replaces default set) */
56
56
  tools?: string[];
57
57
  /** Instructions to append to system prompt */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dreb/coding-agent",
3
- "version": "2.61.0",
3
+ "version": "2.61.2",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "drebConfig": {