subagent-cli 0.2.3 → 0.2.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "subagent-cli",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "sa — Morph Code CLI (Claude Code fork with multi-provider LLM, WarpGrep, and subagent support)",
5
5
  "type": "module",
6
6
  "bin": {
@@ -65,10 +65,9 @@ export function getBuiltInAgents(): AgentDefinition[] {
65
65
  agents.push(VERIFICATION_AGENT)
66
66
  }
67
67
 
68
- // WarpGrep semantic code search agent (requires MORPH_API_KEY)
69
- if (isWarpGrepAvailable()) {
70
- agents.push(WARP_GREP_AGENT)
71
- }
68
+ // WarpGrep semantic code search agent always registered.
69
+ // If MORPH_API_KEY is missing at runtime, the tool returns a helpful error.
70
+ agents.push(WARP_GREP_AGENT)
72
71
 
73
72
  return agents
74
73
  }
@@ -115,8 +115,8 @@ export type ThemeSetting = (typeof THEME_SETTINGS)[number]
115
115
  const lightTheme: Theme = {
116
116
  autoAccept: 'rgb(135,0,255)', // Electric violet
117
117
  bashBorder: 'rgb(255,0,135)', // Vibrant pink
118
- claude: 'rgb(215,119,87)', // Claude orange
119
- claudeShimmer: 'rgb(245,149,117)', // Lighter claude orange for shimmer effect
118
+ claude: 'rgb(0,235,129)', // Morph green
119
+ claudeShimmer: 'rgb(50,255,159)', // Lighter Morph green for shimmer effect
120
120
  claudeBlue_FOR_SYSTEM_SPINNER: 'rgb(87,105,247)', // Medium blue for system spinner
121
121
  claudeBlueShimmer_FOR_SYSTEM_SPINNER: 'rgb(117,135,255)', // Lighter blue for system spinner shimmer
122
122
  permission: 'rgb(87,105,247)', // Medium blue
@@ -158,7 +158,7 @@ const lightTheme: Theme = {
158
158
  // Chrome colors
159
159
  chromeYellow: 'rgb(251,188,4)', // Chrome yellow
160
160
  // TUI V2 colors
161
- clawd_body: 'rgb(215,119,87)',
161
+ clawd_body: 'rgb(0,235,129)',
162
162
  clawd_background: 'rgb(0,0,0)',
163
163
  userMessageBackground: 'rgb(240, 240, 240)', // Slightly darker grey for optimal contrast
164
164
  userMessageBackgroundHover: 'rgb(252, 252, 252)', // ≥250 to quantize distinct from base at 256-color level
@@ -169,11 +169,11 @@ const lightTheme: Theme = {
169
169
  memoryBackgroundColor: 'rgb(230, 245, 250)',
170
170
  rate_limit_fill: 'rgb(87,105,247)', // Medium blue
171
171
  rate_limit_empty: 'rgb(39,47,111)', // Dark blue
172
- fastMode: 'rgb(255,106,0)', // Electric orange
173
- fastModeShimmer: 'rgb(255,150,50)', // Lighter orange for shimmer
172
+ fastMode: 'rgb(0,200,110)', // Morph green
173
+ fastModeShimmer: 'rgb(50,230,140)', // Lighter green for shimmer
174
174
  // Brief/assistant mode
175
175
  briefLabelYou: 'rgb(37,99,235)', // Blue
176
- briefLabelClaude: 'rgb(215,119,87)', // Brand orange
176
+ briefLabelClaude: 'rgb(0,235,129)', // Morph green
177
177
  rainbow_red: 'rgb(235,95,87)',
178
178
  rainbow_orange: 'rgb(245,139,87)',
179
179
  rainbow_yellow: 'rgb(250,195,95)',
@@ -359,8 +359,8 @@ const darkAnsiTheme: Theme = {
359
359
  const lightDaltonizedTheme: Theme = {
360
360
  autoAccept: 'rgb(135,0,255)', // Electric violet
361
361
  bashBorder: 'rgb(0,102,204)', // Blue instead of pink
362
- claude: 'rgb(255,153,51)', // Orange adjusted for deuteranopia
363
- claudeShimmer: 'rgb(255,183,101)', // Lighter orange for shimmer effect
362
+ claude: 'rgb(0,235,129)', // Orange adjusted for deuteranopia
363
+ claudeShimmer: 'rgb(50,255,159)', // Lighter green for shimmer effect
364
364
  claudeBlue_FOR_SYSTEM_SPINNER: 'rgb(51,102,255)', // Bright blue for system spinner
365
365
  claudeBlueShimmer_FOR_SYSTEM_SPINNER: 'rgb(101,152,255)', // Lighter bright blue for system spinner shimmer
366
366
  permission: 'rgb(51,102,255)', // Bright blue
@@ -381,7 +381,7 @@ const lightDaltonizedTheme: Theme = {
381
381
  error: 'rgb(204,0,0)', // Pure red for better distinction
382
382
  warning: 'rgb(255,153,0)', // Orange adjusted for deuteranopia
383
383
  merged: 'rgb(135,0,255)', // Electric violet (matches autoAccept)
384
- warningShimmer: 'rgb(255,183,50)', // Lighter orange for shimmer
384
+ warningShimmer: 'rgb(255,183,50)', // Lighter green for shimmer
385
385
  diffAdded: 'rgb(153,204,255)', // Light blue instead of green
386
386
  diffRemoved: 'rgb(255,204,204)', // Light red
387
387
  diffAddedDimmed: 'rgb(209,231,253)', // Very light blue
@@ -402,7 +402,7 @@ const lightDaltonizedTheme: Theme = {
402
402
  // Chrome colors
403
403
  chromeYellow: 'rgb(251,188,4)', // Chrome yellow
404
404
  // TUI V2 colors
405
- clawd_body: 'rgb(215,119,87)',
405
+ clawd_body: 'rgb(0,235,129)',
406
406
  clawd_background: 'rgb(0,0,0)',
407
407
  userMessageBackground: 'rgb(220, 220, 220)', // Slightly darker grey for optimal contrast
408
408
  userMessageBackgroundHover: 'rgb(232, 232, 232)', // ≥230 to quantize distinct from base at 256-color level
@@ -413,10 +413,10 @@ const lightDaltonizedTheme: Theme = {
413
413
  memoryBackgroundColor: 'rgb(230, 245, 250)',
414
414
  rate_limit_fill: 'rgb(51,102,255)', // Bright blue
415
415
  rate_limit_empty: 'rgb(23,46,114)', // Dark blue
416
- fastMode: 'rgb(255,106,0)', // Electric orange (color-blind safe)
417
- fastModeShimmer: 'rgb(255,150,50)', // Lighter orange for shimmer
416
+ fastMode: 'rgb(0,200,110)', // Morph green (color-blind safe)
417
+ fastModeShimmer: 'rgb(50,230,140)', // Lighter green for shimmer
418
418
  briefLabelYou: 'rgb(37,99,235)', // Blue
419
- briefLabelClaude: 'rgb(255,153,51)', // Orange adjusted for deuteranopia (matches claude)
419
+ briefLabelClaude: 'rgb(0,235,129)', // Orange adjusted for deuteranopia (matches claude)
420
420
  rainbow_red: 'rgb(235,95,87)',
421
421
  rainbow_orange: 'rgb(245,139,87)',
422
422
  rainbow_yellow: 'rgb(250,195,95)',
@@ -440,8 +440,8 @@ const lightDaltonizedTheme: Theme = {
440
440
  const darkTheme: Theme = {
441
441
  autoAccept: 'rgb(175,135,255)', // Electric violet
442
442
  bashBorder: 'rgb(253,93,177)', // Bright pink
443
- claude: 'rgb(215,119,87)', // Claude orange
444
- claudeShimmer: 'rgb(235,159,127)', // Lighter claude orange for shimmer effect
443
+ claude: 'rgb(0,235,129)', // Morph green
444
+ claudeShimmer: 'rgb(50,255,159)', // Lighter Morph green for shimmer effect
445
445
  claudeBlue_FOR_SYSTEM_SPINNER: 'rgb(147,165,255)', // Blue for system spinner
446
446
  claudeBlueShimmer_FOR_SYSTEM_SPINNER: 'rgb(177,195,255)', // Lighter blue for system spinner shimmer
447
447
  permission: 'rgb(177,185,249)', // Light blue-purple
@@ -483,7 +483,7 @@ const darkTheme: Theme = {
483
483
  // Chrome colors
484
484
  chromeYellow: 'rgb(251,188,4)', // Chrome yellow
485
485
  // TUI V2 colors
486
- clawd_body: 'rgb(215,119,87)',
486
+ clawd_body: 'rgb(0,235,129)',
487
487
  clawd_background: 'rgb(0,0,0)',
488
488
  userMessageBackground: 'rgb(55, 55, 55)', // Lighter grey for better visual contrast
489
489
  userMessageBackgroundHover: 'rgb(70, 70, 70)',
@@ -494,10 +494,10 @@ const darkTheme: Theme = {
494
494
  memoryBackgroundColor: 'rgb(55, 65, 70)',
495
495
  rate_limit_fill: 'rgb(177,185,249)', // Light blue-purple
496
496
  rate_limit_empty: 'rgb(80,83,112)', // Medium blue-purple
497
- fastMode: 'rgb(255,120,20)', // Electric orange for dark bg
498
- fastModeShimmer: 'rgb(255,165,70)', // Lighter orange for shimmer
497
+ fastMode: 'rgb(255,120,20)', // Morph green for dark bg
498
+ fastModeShimmer: 'rgb(255,165,70)', // Lighter green for shimmer
499
499
  briefLabelYou: 'rgb(122,180,232)', // Light blue
500
- briefLabelClaude: 'rgb(215,119,87)', // Brand orange
500
+ briefLabelClaude: 'rgb(0,235,129)', // Morph green
501
501
  rainbow_red: 'rgb(235,95,87)',
502
502
  rainbow_orange: 'rgb(245,139,87)',
503
503
  rainbow_yellow: 'rgb(250,195,95)',
@@ -521,8 +521,8 @@ const darkTheme: Theme = {
521
521
  const darkDaltonizedTheme: Theme = {
522
522
  autoAccept: 'rgb(175,135,255)', // Electric violet
523
523
  bashBorder: 'rgb(51,153,255)', // Bright blue
524
- claude: 'rgb(255,153,51)', // Orange adjusted for deuteranopia
525
- claudeShimmer: 'rgb(255,183,101)', // Lighter orange for shimmer effect
524
+ claude: 'rgb(0,235,129)', // Orange adjusted for deuteranopia
525
+ claudeShimmer: 'rgb(50,255,159)', // Lighter green for shimmer effect
526
526
  claudeBlue_FOR_SYSTEM_SPINNER: 'rgb(153,204,255)', // Light blue for system spinner
527
527
  claudeBlueShimmer_FOR_SYSTEM_SPINNER: 'rgb(183,224,255)', // Lighter blue for system spinner shimmer
528
528
  permission: 'rgb(153,204,255)', // Light blue
@@ -564,7 +564,7 @@ const darkDaltonizedTheme: Theme = {
564
564
  // Chrome colors
565
565
  chromeYellow: 'rgb(251,188,4)', // Chrome yellow
566
566
  // TUI V2 colors
567
- clawd_body: 'rgb(215,119,87)',
567
+ clawd_body: 'rgb(0,235,129)',
568
568
  clawd_background: 'rgb(0,0,0)',
569
569
  userMessageBackground: 'rgb(55, 55, 55)', // Lighter grey for better visual contrast
570
570
  userMessageBackgroundHover: 'rgb(70, 70, 70)',
@@ -575,10 +575,10 @@ const darkDaltonizedTheme: Theme = {
575
575
  memoryBackgroundColor: 'rgb(55, 65, 70)',
576
576
  rate_limit_fill: 'rgb(153,204,255)', // Light blue
577
577
  rate_limit_empty: 'rgb(69,92,115)', // Dark blue
578
- fastMode: 'rgb(255,120,20)', // Electric orange for dark bg (color-blind safe)
579
- fastModeShimmer: 'rgb(255,165,70)', // Lighter orange for shimmer
578
+ fastMode: 'rgb(255,120,20)', // Morph green for dark bg (color-blind safe)
579
+ fastModeShimmer: 'rgb(255,165,70)', // Lighter green for shimmer
580
580
  briefLabelYou: 'rgb(122,180,232)', // Light blue
581
- briefLabelClaude: 'rgb(255,153,51)', // Orange adjusted for deuteranopia (matches claude)
581
+ briefLabelClaude: 'rgb(0,235,129)', // Orange adjusted for deuteranopia (matches claude)
582
582
  rainbow_red: 'rgb(235,95,87)',
583
583
  rainbow_orange: 'rgb(245,139,87)',
584
584
  rainbow_yellow: 'rgb(250,195,95)',