@hasna/assistants 1.1.34 → 1.1.36

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/dist/index.js CHANGED
@@ -87176,7 +87176,7 @@ Not a git repository or git not available.
87176
87176
  context.setProjectContext(projectContext);
87177
87177
  }
87178
87178
  }
87179
- var VERSION2 = "1.1.34";
87179
+ var VERSION2 = "1.1.36";
87180
87180
  var init_builtin = __esm(async () => {
87181
87181
  init_src2();
87182
87182
  init_store();
@@ -213426,8 +213426,9 @@ function ActiveToolsPanel({ activityLog, now: now2, verboseTools }) {
213426
213426
  return /* @__PURE__ */ jsx_dev_runtime3.jsxDEV(Box_default, {
213427
213427
  flexDirection: "column",
213428
213428
  borderStyle: "round",
213429
- borderColor,
213430
- paddingX: 1,
213429
+ borderColor: "#d4d4d8",
213430
+ borderLeft: false,
213431
+ borderRight: false,
213431
213432
  width: panelWidth,
213432
213433
  marginY: 1,
213433
213434
  children: [
@@ -213575,8 +213576,9 @@ function ToolCallPanel({
213575
213576
  return /* @__PURE__ */ jsx_dev_runtime3.jsxDEV(Box_default, {
213576
213577
  flexDirection: "column",
213577
213578
  borderStyle: "round",
213578
- borderColor,
213579
- paddingX: 1,
213579
+ borderColor: "#d4d4d8",
213580
+ borderLeft: false,
213581
+ borderRight: false,
213580
213582
  width: panelWidth,
213581
213583
  children: [
213582
213584
  /* @__PURE__ */ jsx_dev_runtime3.jsxDEV(Box_default, {
@@ -213686,8 +213688,9 @@ function ToolResultPanel({
213686
213688
  return /* @__PURE__ */ jsx_dev_runtime3.jsxDEV(Box_default, {
213687
213689
  flexDirection: "column",
213688
213690
  borderStyle: "round",
213689
- borderColor,
213690
- paddingX: 1,
213691
+ borderColor: "#d4d4d8",
213692
+ borderLeft: false,
213693
+ borderRight: false,
213691
213694
  width: panelWidth,
213692
213695
  children: [
213693
213696
  /* @__PURE__ */ jsx_dev_runtime3.jsxDEV(Box_default, {
@@ -214111,6 +214114,7 @@ function buildDisplayMessages(messages2, chunkLines, wrapChars, options) {
214111
214114
 
214112
214115
  // packages/terminal/src/components/Status.tsx
214113
214116
  var import_react30 = __toESM(require_react2(), 1);
214117
+ import { basename as basename7 } from "path";
214114
214118
  var jsx_dev_runtime4 = __toESM(require_jsx_dev_runtime(), 1);
214115
214119
  function Status({
214116
214120
  isProcessing,
@@ -214180,6 +214184,7 @@ function Status({
214180
214184
  const interval = setInterval(update, 1000);
214181
214185
  return () => clearInterval(interval);
214182
214186
  }, [heartbeatState?.enabled, heartbeatState?.nextHeartbeatAt, heartbeatState?.lastActivity, heartbeatState?.intervalMs]);
214187
+ const folderName = basename7(cwd2);
214183
214188
  let contextInfo = "";
214184
214189
  if (tokenUsage && tokenUsage.maxContextTokens > 0) {
214185
214190
  const rawPercent = Math.round(tokenUsage.totalTokens / tokenUsage.maxContextTokens * 100);
@@ -214189,10 +214194,10 @@ function Status({
214189
214194
  const sessionInfo = sessionCount && sessionCount > 1 && sessionIndex !== undefined ? `${sessionIndex + 1}/${sessionCount}` : "";
214190
214195
  const bgIndicator = backgroundProcessingCount > 0 ? ` +${backgroundProcessingCount}` : "";
214191
214196
  const energyInfo = energyState ? `${Math.round(energyState.current / energyState.max * 100)}%` : "";
214192
- const voiceIcon = voiceState?.enabled ? voiceState.isTalking ? "\uD83D\uDDE3" : voiceState.isListening ? "\uD83C\uDFA4" : voiceState.isSpeaking ? "\uD83D\uDD0A" : "\uD83C\uDF99" : "";
214193
- const heartbeatIcon = heartbeatState?.enabled ? heartbeatState.isStale ? "\uD83D\uDC9B" : "\uD83D\uDC9A" : "";
214194
- const heartbeatDisplay = heartbeatIcon ? `${heartbeatIcon}${heartbeatCountdown ? ` ${heartbeatCountdown}` : ""}` : "";
214195
- const queueInfo = queueLength > 0 ? `${queueLength} queued` : "";
214197
+ const voiceLabel = voiceState?.enabled ? voiceState.isTalking ? "talk" : voiceState.isListening ? "mic" : voiceState.isSpeaking ? "spk" : "voice" : "";
214198
+ const heartbeatLabel = heartbeatState?.enabled ? heartbeatState.isStale ? "hb!" : "hb" : "";
214199
+ const heartbeatDisplay = heartbeatLabel ? `${heartbeatLabel}${heartbeatCountdown ? ` ${heartbeatCountdown}` : ""}` : "";
214200
+ const queueInfo = queueLength > 0 ? `${queueLength}q` : "";
214196
214201
  const verboseLabel = verboseTools ? "verbose" : "";
214197
214202
  const recentToolsSummary = import_react30.useMemo(() => {
214198
214203
  if (recentTools.length === 0)
@@ -214211,98 +214216,51 @@ function Status({
214211
214216
  for (const [name2, { count, failed, running }] of counts) {
214212
214217
  let part = name2;
214213
214218
  if (count > 1)
214214
- part += `\xD7${count}`;
214219
+ part += `x${count}`;
214215
214220
  if (failed > 0)
214216
214221
  part += "!";
214217
214222
  if (running > 0)
214218
- part += "\u2026";
214223
+ part += "..";
214219
214224
  parts.push(part);
214220
214225
  }
214221
214226
  return parts.slice(0, 4).join(" ");
214222
214227
  }, [recentTools]);
214228
+ const rightParts = [];
214229
+ if (heartbeatDisplay)
214230
+ rightParts.push(heartbeatDisplay);
214231
+ if (voiceLabel)
214232
+ rightParts.push(voiceLabel);
214233
+ if (isProcessing)
214234
+ rightParts.push("esc");
214235
+ if (isProcessing && processingStartTime)
214236
+ rightParts.push(formatDuration4(elapsed));
214237
+ if (sessionInfo)
214238
+ rightParts.push(`${sessionInfo}${bgIndicator}`);
214239
+ if (energyInfo)
214240
+ rightParts.push(energyInfo);
214241
+ if (contextInfo)
214242
+ rightParts.push(contextInfo);
214243
+ if (verboseLabel)
214244
+ rightParts.push(verboseLabel);
214245
+ if (queueInfo)
214246
+ rightParts.push(queueInfo);
214247
+ if (recentToolsSummary)
214248
+ rightParts.push(recentToolsSummary);
214249
+ const leftParts = [];
214250
+ leftParts.push(folderName);
214251
+ if (gitBranch)
214252
+ leftParts.push(gitBranch);
214223
214253
  return /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Box_default, {
214224
- marginTop: 1,
214225
214254
  justifyContent: "space-between",
214226
214255
  children: [
214227
214256
  /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214228
214257
  dimColor: true,
214229
- children: [
214230
- "/help",
214231
- sessionCount && sessionCount > 1 ? " \xB7 Ctrl+]" : "",
214232
- gitBranch ? ` \xB7 \u2387 ${gitBranch}` : ""
214233
- ]
214234
- }, undefined, true, undefined, this),
214235
- /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Box_default, {
214236
- children: [
214237
- heartbeatDisplay && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214238
- dimColor: true,
214239
- children: [
214240
- heartbeatDisplay,
214241
- " "
214242
- ]
214243
- }, undefined, true, undefined, this),
214244
- voiceIcon && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214245
- dimColor: true,
214246
- children: [
214247
- voiceIcon,
214248
- " "
214249
- ]
214250
- }, undefined, true, undefined, this),
214251
- isProcessing && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214252
- dimColor: true,
214253
- children: "esc \xB7 "
214254
- }, undefined, false, undefined, this),
214255
- sessionInfo && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214256
- dimColor: true,
214257
- children: [
214258
- sessionInfo,
214259
- bgIndicator,
214260
- " \xB7 "
214261
- ]
214262
- }, undefined, true, undefined, this),
214263
- energyInfo && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214264
- dimColor: true,
214265
- children: [
214266
- "\u26A1",
214267
- energyInfo,
214268
- " \xB7 "
214269
- ]
214270
- }, undefined, true, undefined, this),
214271
- contextInfo && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214272
- dimColor: true,
214273
- children: contextInfo
214274
- }, undefined, false, undefined, this),
214275
- isProcessing && processingStartTime && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214276
- dimColor: true,
214277
- children: [
214278
- " \xB7 ",
214279
- formatDuration4(elapsed)
214280
- ]
214281
- }, undefined, true, undefined, this),
214282
- verboseLabel && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214283
- dimColor: true,
214284
- children: [
214285
- contextInfo || isProcessing && processingStartTime || sessionInfo ? " \xB7 " : "",
214286
- verboseLabel
214287
- ]
214288
- }, undefined, true, undefined, this),
214289
- queueInfo && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214290
- dimColor: true,
214291
- children: [
214292
- contextInfo || isProcessing && processingStartTime || sessionInfo || verboseLabel ? " \xB7 " : "",
214293
- queueInfo
214294
- ]
214295
- }, undefined, true, undefined, this),
214296
- recentToolsSummary && /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214297
- dimColor: true,
214298
- children: [
214299
- contextInfo || isProcessing && processingStartTime || sessionInfo || verboseLabel || queueInfo ? " \xB7 " : "",
214300
- "\uD83D\uDD27 ",
214301
- recentToolsSummary
214302
- ]
214303
- }, undefined, true, undefined, this)
214304
- ]
214305
- }, undefined, true, undefined, this)
214258
+ children: leftParts.join(" \xB7 ")
214259
+ }, undefined, false, undefined, this),
214260
+ /* @__PURE__ */ jsx_dev_runtime4.jsxDEV(Text3, {
214261
+ dimColor: true,
214262
+ children: rightParts.join(" \xB7 ")
214263
+ }, undefined, false, undefined, this)
214306
214264
  ]
214307
214265
  }, undefined, true, undefined, this);
214308
214266
  }
@@ -214738,7 +214696,9 @@ function AskUserPanel({
214738
214696
  return /* @__PURE__ */ jsx_dev_runtime11.jsxDEV(Box_default, {
214739
214697
  flexDirection: "column",
214740
214698
  borderStyle: "round",
214741
- borderColor: "cyan",
214699
+ borderColor: "#d4d4d8",
214700
+ borderLeft: false,
214701
+ borderRight: false,
214742
214702
  paddingX: 1,
214743
214703
  marginY: 1,
214744
214704
  children: [
@@ -214899,7 +214859,9 @@ function RecoveryPanel({ sessions, onRecover, onStartFresh }) {
214899
214859
  /* @__PURE__ */ jsx_dev_runtime12.jsxDEV(Box_default, {
214900
214860
  flexDirection: "column",
214901
214861
  borderStyle: "round",
214902
- borderColor: "gray",
214862
+ borderColor: "#d4d4d8",
214863
+ borderLeft: false,
214864
+ borderRight: false,
214903
214865
  paddingX: 1,
214904
214866
  marginBottom: 1,
214905
214867
  children: [
@@ -215476,7 +215438,9 @@ function ConnectorsPanel({
215476
215438
  /* @__PURE__ */ jsx_dev_runtime13.jsxDEV(Box_default, {
215477
215439
  flexDirection: "column",
215478
215440
  borderStyle: "round",
215479
- borderColor: "gray",
215441
+ borderColor: "#d4d4d8",
215442
+ borderLeft: false,
215443
+ borderRight: false,
215480
215444
  paddingX: 1,
215481
215445
  paddingY: 1,
215482
215446
  children: [
@@ -215532,7 +215496,9 @@ function ConnectorsPanel({
215532
215496
  /* @__PURE__ */ jsx_dev_runtime13.jsxDEV(Box_default, {
215533
215497
  flexDirection: "column",
215534
215498
  borderStyle: "round",
215535
- borderColor: "gray",
215499
+ borderColor: "#d4d4d8",
215500
+ borderLeft: false,
215501
+ borderRight: false,
215536
215502
  paddingX: 1,
215537
215503
  paddingY: 1,
215538
215504
  children: [
@@ -215663,7 +215629,9 @@ function ConnectorsPanel({
215663
215629
  /* @__PURE__ */ jsx_dev_runtime13.jsxDEV(Box_default, {
215664
215630
  flexDirection: "column",
215665
215631
  borderStyle: "round",
215666
- borderColor: "gray",
215632
+ borderColor: "#d4d4d8",
215633
+ borderLeft: false,
215634
+ borderRight: false,
215667
215635
  paddingX: 1,
215668
215636
  children: [
215669
215637
  /* @__PURE__ */ jsx_dev_runtime13.jsxDEV(Box_default, {
@@ -215908,7 +215876,9 @@ function ConnectorsPanel({
215908
215876
  /* @__PURE__ */ jsx_dev_runtime13.jsxDEV(Box_default, {
215909
215877
  flexDirection: "column",
215910
215878
  borderStyle: "round",
215911
- borderColor: "gray",
215879
+ borderColor: "#d4d4d8",
215880
+ borderLeft: false,
215881
+ borderRight: false,
215912
215882
  paddingX: 1,
215913
215883
  children: filteredConnectors.length === 0 ? /* @__PURE__ */ jsx_dev_runtime13.jsxDEV(Box_default, {
215914
215884
  paddingY: 1,
@@ -216350,7 +216320,9 @@ function TasksPanel({
216350
216320
  /* @__PURE__ */ jsx_dev_runtime14.jsxDEV(Box_default, {
216351
216321
  flexDirection: "column",
216352
216322
  borderStyle: "round",
216353
- borderColor: "gray",
216323
+ borderColor: "#d4d4d8",
216324
+ borderLeft: false,
216325
+ borderRight: false,
216354
216326
  paddingX: 1,
216355
216327
  paddingY: 0,
216356
216328
  children: [
@@ -216722,7 +216694,9 @@ function TasksPanel({
216722
216694
  /* @__PURE__ */ jsx_dev_runtime14.jsxDEV(Box_default, {
216723
216695
  flexDirection: "column",
216724
216696
  borderStyle: "round",
216725
- borderColor: "gray",
216697
+ borderColor: "#d4d4d8",
216698
+ borderLeft: false,
216699
+ borderRight: false,
216726
216700
  paddingX: 1,
216727
216701
  children: [
216728
216702
  tasks2.length === 0 ? /* @__PURE__ */ jsx_dev_runtime14.jsxDEV(Box_default, {
@@ -216800,8 +216774,10 @@ function TasksPanel({
216800
216774
  return /* @__PURE__ */ jsx_dev_runtime14.jsxDEV(Box_default, {
216801
216775
  marginTop: 1,
216802
216776
  flexDirection: "column",
216803
- borderStyle: "single",
216804
- borderColor: "gray",
216777
+ borderStyle: "round",
216778
+ borderColor: "#d4d4d8",
216779
+ borderLeft: false,
216780
+ borderRight: false,
216805
216781
  paddingX: 1,
216806
216782
  children: [
216807
216783
  /* @__PURE__ */ jsx_dev_runtime14.jsxDEV(Text3, {
@@ -217292,7 +217268,9 @@ function AssistantsPanel({
217292
217268
  /* @__PURE__ */ jsx_dev_runtime15.jsxDEV(Box_default, {
217293
217269
  flexDirection: "column",
217294
217270
  borderStyle: "round",
217295
- borderColor: "gray",
217271
+ borderColor: "#d4d4d8",
217272
+ borderLeft: false,
217273
+ borderRight: false,
217296
217274
  paddingX: 1,
217297
217275
  children: ANTHROPIC_MODELS.map((model, index) => /* @__PURE__ */ jsx_dev_runtime15.jsxDEV(Box_default, {
217298
217276
  paddingY: 0,
@@ -217697,7 +217675,9 @@ function AssistantsPanel({
217697
217675
  /* @__PURE__ */ jsx_dev_runtime15.jsxDEV(Box_default, {
217698
217676
  flexDirection: "column",
217699
217677
  borderStyle: "round",
217700
- borderColor: "gray",
217678
+ borderColor: "#d4d4d8",
217679
+ borderLeft: false,
217680
+ borderRight: false,
217701
217681
  paddingX: 1,
217702
217682
  children: [
217703
217683
  assistants.length === 0 ? /* @__PURE__ */ jsx_dev_runtime15.jsxDEV(Box_default, {
@@ -218396,7 +218376,9 @@ function IdentityPanel({
218396
218376
  /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
218397
218377
  flexDirection: "column",
218398
218378
  borderStyle: "round",
218399
- borderColor: "gray",
218379
+ borderColor: "#d4d4d8",
218380
+ borderLeft: false,
218381
+ borderRight: false,
218400
218382
  paddingX: 1,
218401
218383
  paddingY: 1,
218402
218384
  children: [
@@ -218436,7 +218418,9 @@ function IdentityPanel({
218436
218418
  /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
218437
218419
  flexDirection: "column",
218438
218420
  borderStyle: "round",
218439
- borderColor: "red",
218421
+ borderColor: "#d4d4d8",
218422
+ borderLeft: false,
218423
+ borderRight: false,
218440
218424
  paddingX: 1,
218441
218425
  paddingY: 1,
218442
218426
  children: [
@@ -218496,7 +218480,9 @@ function IdentityPanel({
218496
218480
  /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
218497
218481
  flexDirection: "column",
218498
218482
  borderStyle: "round",
218499
- borderColor: "gray",
218483
+ borderColor: "#d4d4d8",
218484
+ borderLeft: false,
218485
+ borderRight: false,
218500
218486
  paddingX: 1,
218501
218487
  children: [
218502
218488
  templateRange.hasMore.above > 0 && /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
@@ -218906,7 +218892,9 @@ function IdentityPanel({
218906
218892
  /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
218907
218893
  flexDirection: "column",
218908
218894
  borderStyle: "round",
218909
- borderColor: "gray",
218895
+ borderColor: "#d4d4d8",
218896
+ borderLeft: false,
218897
+ borderRight: false,
218910
218898
  paddingX: 1,
218911
218899
  children: COMMUNICATION_STYLES.map((style, index) => /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
218912
218900
  paddingY: 0,
@@ -218943,7 +218931,9 @@ function IdentityPanel({
218943
218931
  /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
218944
218932
  flexDirection: "column",
218945
218933
  borderStyle: "round",
218946
- borderColor: "gray",
218934
+ borderColor: "#d4d4d8",
218935
+ borderLeft: false,
218936
+ borderRight: false,
218947
218937
  paddingX: 1,
218948
218938
  children: RESPONSE_LENGTHS.map((length, index) => /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
218949
218939
  paddingY: 0,
@@ -219035,7 +219025,9 @@ function IdentityPanel({
219035
219025
  /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
219036
219026
  flexDirection: "column",
219037
219027
  borderStyle: "round",
219038
- borderColor: "gray",
219028
+ borderColor: "#d4d4d8",
219029
+ borderLeft: false,
219030
+ borderRight: false,
219039
219031
  paddingX: 1,
219040
219032
  paddingY: 1,
219041
219033
  children: [
@@ -219279,7 +219271,9 @@ function IdentityPanel({
219279
219271
  /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
219280
219272
  flexDirection: "column",
219281
219273
  borderStyle: "round",
219282
- borderColor: "gray",
219274
+ borderColor: "#d4d4d8",
219275
+ borderLeft: false,
219276
+ borderRight: false,
219283
219277
  paddingX: 1,
219284
219278
  children: [
219285
219279
  identityRange.hasMore.above > 0 && /* @__PURE__ */ jsx_dev_runtime16.jsxDEV(Box_default, {
@@ -219623,7 +219617,9 @@ function HookWizard({ onSave, onCancel, initial, startStep }) {
219623
219617
  flexDirection: "column",
219624
219618
  marginTop: 1,
219625
219619
  borderStyle: "round",
219626
- borderColor: "gray",
219620
+ borderColor: "#d4d4d8",
219621
+ borderLeft: false,
219622
+ borderRight: false,
219627
219623
  paddingX: 1,
219628
219624
  height: Math.min(10, HOOK_EVENTS.length + 2),
219629
219625
  children: HOOK_EVENTS.map((ev, index) => /* @__PURE__ */ jsx_dev_runtime17.jsxDEV(Box_default, {
@@ -220065,7 +220061,9 @@ function HookWizard({ onSave, onCancel, initial, startStep }) {
220065
220061
  /* @__PURE__ */ jsx_dev_runtime17.jsxDEV(Box_default, {
220066
220062
  flexDirection: "column",
220067
220063
  borderStyle: "round",
220068
- borderColor: "gray",
220064
+ borderColor: "#d4d4d8",
220065
+ borderLeft: false,
220066
+ borderRight: false,
220069
220067
  paddingX: 1,
220070
220068
  paddingY: 1,
220071
220069
  children: [
@@ -220581,7 +220579,9 @@ function HooksPanel({
220581
220579
  /* @__PURE__ */ jsx_dev_runtime18.jsxDEV(Box_default, {
220582
220580
  flexDirection: "column",
220583
220581
  borderStyle: "round",
220584
- borderColor: "gray",
220582
+ borderColor: "#d4d4d8",
220583
+ borderLeft: false,
220584
+ borderRight: false,
220585
220585
  paddingX: 1,
220586
220586
  height: Math.min(18, totalHooks + 4),
220587
220587
  overflowY: "hidden",
@@ -221996,7 +221996,9 @@ function ConfigPanel({
221996
221996
  /* @__PURE__ */ jsx_dev_runtime19.jsxDEV(Box_default, {
221997
221997
  flexDirection: "column",
221998
221998
  borderStyle: "round",
221999
- borderColor: "gray",
221999
+ borderColor: "#d4d4d8",
222000
+ borderLeft: false,
222001
+ borderRight: false,
222000
222002
  paddingX: 1,
222001
222003
  children: locations.map((loc, index) => /* @__PURE__ */ jsx_dev_runtime19.jsxDEV(Box_default, {
222002
222004
  flexDirection: "column",
@@ -222060,7 +222062,9 @@ function ConfigPanel({
222060
222062
  /* @__PURE__ */ jsx_dev_runtime19.jsxDEV(Box_default, {
222061
222063
  flexDirection: "column",
222062
222064
  borderStyle: "round",
222063
- borderColor: "gray",
222065
+ borderColor: "#d4d4d8",
222066
+ borderLeft: false,
222067
+ borderRight: false,
222064
222068
  paddingX: 1,
222065
222069
  marginRight: 1,
222066
222070
  width: 26,
@@ -222078,7 +222082,9 @@ function ConfigPanel({
222078
222082
  /* @__PURE__ */ jsx_dev_runtime19.jsxDEV(Box_default, {
222079
222083
  flexDirection: "column",
222080
222084
  borderStyle: "round",
222081
- borderColor: "gray",
222085
+ borderColor: "#d4d4d8",
222086
+ borderLeft: false,
222087
+ borderRight: false,
222082
222088
  paddingX: 1,
222083
222089
  flexGrow: 1,
222084
222090
  children: renderSectionContent()
@@ -222357,7 +222363,9 @@ function InboxPanel({
222357
222363
  /* @__PURE__ */ jsx_dev_runtime20.jsxDEV(Box_default, {
222358
222364
  flexDirection: "column",
222359
222365
  borderStyle: "round",
222360
- borderColor: "gray",
222366
+ borderColor: "#d4d4d8",
222367
+ borderLeft: false,
222368
+ borderRight: false,
222361
222369
  paddingX: 1,
222362
222370
  paddingY: 1,
222363
222371
  children: [
@@ -222404,7 +222412,9 @@ function InboxPanel({
222404
222412
  /* @__PURE__ */ jsx_dev_runtime20.jsxDEV(Box_default, {
222405
222413
  flexDirection: "column",
222406
222414
  borderStyle: "round",
222407
- borderColor: "red",
222415
+ borderColor: "#d4d4d8",
222416
+ borderLeft: false,
222417
+ borderRight: false,
222408
222418
  paddingX: 1,
222409
222419
  paddingY: 1,
222410
222420
  children: [
@@ -222467,7 +222477,9 @@ function InboxPanel({
222467
222477
  /* @__PURE__ */ jsx_dev_runtime20.jsxDEV(Box_default, {
222468
222478
  flexDirection: "column",
222469
222479
  borderStyle: "round",
222470
- borderColor: "gray",
222480
+ borderColor: "#d4d4d8",
222481
+ borderLeft: false,
222482
+ borderRight: false,
222471
222483
  paddingX: 1,
222472
222484
  paddingY: 1,
222473
222485
  children: [
@@ -222615,7 +222627,9 @@ function InboxPanel({
222615
222627
  /* @__PURE__ */ jsx_dev_runtime20.jsxDEV(Box_default, {
222616
222628
  flexDirection: "column",
222617
222629
  borderStyle: "round",
222618
- borderColor: "gray",
222630
+ borderColor: "#d4d4d8",
222631
+ borderLeft: false,
222632
+ borderRight: false,
222619
222633
  paddingX: 1,
222620
222634
  children: [
222621
222635
  emailRange.hasMore.above > 0 && /* @__PURE__ */ jsx_dev_runtime20.jsxDEV(Box_default, {
@@ -223011,7 +223025,9 @@ function AssistantMessagesContent({
223011
223025
  /* @__PURE__ */ jsx_dev_runtime21.jsxDEV(Box_default, {
223012
223026
  flexDirection: "column",
223013
223027
  borderStyle: "round",
223014
- borderColor: "gray",
223028
+ borderColor: "#d4d4d8",
223029
+ borderLeft: false,
223030
+ borderRight: false,
223015
223031
  paddingX: 1,
223016
223032
  paddingY: 1,
223017
223033
  children: [
@@ -223050,7 +223066,9 @@ function AssistantMessagesContent({
223050
223066
  /* @__PURE__ */ jsx_dev_runtime21.jsxDEV(Box_default, {
223051
223067
  flexDirection: "column",
223052
223068
  borderStyle: "round",
223053
- borderColor: "red",
223069
+ borderColor: "#d4d4d8",
223070
+ borderLeft: false,
223071
+ borderRight: false,
223054
223072
  paddingX: 1,
223055
223073
  paddingY: 1,
223056
223074
  children: [
@@ -223102,7 +223120,9 @@ function AssistantMessagesContent({
223102
223120
  /* @__PURE__ */ jsx_dev_runtime21.jsxDEV(Box_default, {
223103
223121
  flexDirection: "column",
223104
223122
  borderStyle: "round",
223105
- borderColor: "green",
223123
+ borderColor: "#d4d4d8",
223124
+ borderLeft: false,
223125
+ borderRight: false,
223106
223126
  paddingX: 1,
223107
223127
  paddingY: 1,
223108
223128
  children: [
@@ -223167,7 +223187,9 @@ function AssistantMessagesContent({
223167
223187
  /* @__PURE__ */ jsx_dev_runtime21.jsxDEV(Box_default, {
223168
223188
  flexDirection: "column",
223169
223189
  borderStyle: "round",
223170
- borderColor: "gray",
223190
+ borderColor: "#d4d4d8",
223191
+ borderLeft: false,
223192
+ borderRight: false,
223171
223193
  paddingX: 1,
223172
223194
  paddingY: 1,
223173
223195
  children: [
@@ -223272,7 +223294,9 @@ function AssistantMessagesContent({
223272
223294
  /* @__PURE__ */ jsx_dev_runtime21.jsxDEV(Box_default, {
223273
223295
  flexDirection: "column",
223274
223296
  borderStyle: "round",
223275
- borderColor: "gray",
223297
+ borderColor: "#d4d4d8",
223298
+ borderLeft: false,
223299
+ borderRight: false,
223276
223300
  paddingX: 1,
223277
223301
  children: [
223278
223302
  messageRange.hasMore.above > 0 && /* @__PURE__ */ jsx_dev_runtime21.jsxDEV(Box_default, {
@@ -223655,8 +223679,10 @@ function WebhooksPanel({ manager, onClose }) {
223655
223679
  }
223656
223680
  });
223657
223681
  const header = /* @__PURE__ */ jsx_dev_runtime22.jsxDEV(Box_default, {
223658
- borderStyle: "single",
223659
- borderColor: "cyan",
223682
+ borderStyle: "round",
223683
+ borderColor: "#d4d4d8",
223684
+ borderLeft: false,
223685
+ borderRight: false,
223660
223686
  paddingX: 1,
223661
223687
  marginBottom: 1,
223662
223688
  children: [
@@ -224130,7 +224156,7 @@ function formatRelativeTime5(isoDate) {
224130
224156
  return `${minutes}m ago`;
224131
224157
  return `${seconds}s ago`;
224132
224158
  }
224133
- function ChannelsPanel({ manager, onClose, activePersonId, activePersonName, onPersonMessage }) {
224159
+ function ChannelsPanel({ manager, onClose, activePersonId, activePersonName, activeAssistantName, onPersonMessage }) {
224134
224160
  const [mode, setMode] = import_react46.useState("list");
224135
224161
  const [channels2, setChannels] = import_react46.useState([]);
224136
224162
  const [selectedIndex, setSelectedIndex] = import_react46.useState(0);
@@ -224367,8 +224393,10 @@ function ChannelsPanel({ manager, onClose, activePersonId, activePersonName, onP
224367
224393
  }
224368
224394
  });
224369
224395
  const header = /* @__PURE__ */ jsx_dev_runtime23.jsxDEV(Box_default, {
224370
- borderStyle: "single",
224371
- borderColor: "blue",
224396
+ borderStyle: "round",
224397
+ borderColor: "#d4d4d8",
224398
+ borderLeft: false,
224399
+ borderRight: false,
224372
224400
  paddingX: 1,
224373
224401
  marginBottom: 1,
224374
224402
  children: [
@@ -224542,8 +224570,10 @@ function ChannelsPanel({ manager, onClose, activePersonId, activePersonName, onP
224542
224570
  }, undefined, false, undefined, this),
224543
224571
  /* @__PURE__ */ jsx_dev_runtime23.jsxDEV(Box_default, {
224544
224572
  paddingX: 1,
224545
- borderStyle: "single",
224546
- borderColor: "gray",
224573
+ borderStyle: "round",
224574
+ borderColor: "#d4d4d8",
224575
+ borderLeft: false,
224576
+ borderRight: false,
224547
224577
  children: [
224548
224578
  /* @__PURE__ */ jsx_dev_runtime23.jsxDEV(Text3, {
224549
224579
  color: "gray",
@@ -224608,8 +224638,10 @@ function ChannelsPanel({ manager, onClose, activePersonId, activePersonName, onP
224608
224638
  mentionActive && mentionCandidates.length > 0 && /* @__PURE__ */ jsx_dev_runtime23.jsxDEV(Box_default, {
224609
224639
  flexDirection: "column",
224610
224640
  paddingX: 1,
224611
- borderStyle: "single",
224612
- borderColor: "yellow",
224641
+ borderStyle: "round",
224642
+ borderColor: "#d4d4d8",
224643
+ borderLeft: false,
224644
+ borderRight: false,
224613
224645
  marginTop: 0,
224614
224646
  children: [
224615
224647
  /* @__PURE__ */ jsx_dev_runtime23.jsxDEV(Text3, {
@@ -225042,8 +225074,10 @@ function PeoplePanel({ manager, onClose }) {
225042
225074
  }
225043
225075
  });
225044
225076
  const header = /* @__PURE__ */ jsx_dev_runtime24.jsxDEV(Box_default, {
225045
- borderStyle: "single",
225046
- borderColor: "green",
225077
+ borderStyle: "round",
225078
+ borderColor: "#d4d4d8",
225079
+ borderLeft: false,
225080
+ borderRight: false,
225047
225081
  paddingX: 1,
225048
225082
  marginBottom: 1,
225049
225083
  children: [
@@ -225456,8 +225490,10 @@ function TelephonyPanel({ manager, onClose }) {
225456
225490
  }, t9, false, undefined, this))
225457
225491
  }, undefined, false, undefined, this);
225458
225492
  const header = /* @__PURE__ */ jsx_dev_runtime25.jsxDEV(Box_default, {
225459
- borderStyle: "single",
225460
- borderColor: "blue",
225493
+ borderStyle: "round",
225494
+ borderColor: "#d4d4d8",
225495
+ borderLeft: false,
225496
+ borderRight: false,
225461
225497
  paddingX: 1,
225462
225498
  marginBottom: 1,
225463
225499
  children: [
@@ -226273,8 +226309,10 @@ function OrdersPanel({ manager, onClose }) {
226273
226309
  return "q close | 1/2/3 tabs | n new-order | r refresh";
226274
226310
  }, [tab2, viewMode]);
226275
226311
  const header = /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Box_default, {
226276
- borderStyle: "single",
226277
- borderColor: "blue",
226312
+ borderStyle: "round",
226313
+ borderColor: "#d4d4d8",
226314
+ borderLeft: false,
226315
+ borderRight: false,
226278
226316
  paddingX: 1,
226279
226317
  marginBottom: 1,
226280
226318
  children: [
@@ -226555,7 +226593,9 @@ function OrdersPanel({ manager, onClose }) {
226555
226593
  }, undefined, false, undefined, this) : /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Box_default, {
226556
226594
  flexDirection: "column",
226557
226595
  borderStyle: "round",
226558
- borderColor: "gray",
226596
+ borderColor: "#d4d4d8",
226597
+ borderLeft: false,
226598
+ borderRight: false,
226559
226599
  paddingX: 1,
226560
226600
  children: [
226561
226601
  /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Text3, {
@@ -226652,7 +226692,9 @@ function OrdersPanel({ manager, onClose }) {
226652
226692
  }, undefined, false, undefined, this) : /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Box_default, {
226653
226693
  flexDirection: "column",
226654
226694
  borderStyle: "round",
226655
- borderColor: "gray",
226695
+ borderColor: "#d4d4d8",
226696
+ borderLeft: false,
226697
+ borderRight: false,
226656
226698
  paddingX: 1,
226657
226699
  children: [
226658
226700
  /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Text3, {
@@ -226722,7 +226764,9 @@ function OrdersPanel({ manager, onClose }) {
226722
226764
  tab2 === "orders" ? /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Box_default, {
226723
226765
  flexDirection: "column",
226724
226766
  borderStyle: "round",
226725
- borderColor: "gray",
226767
+ borderColor: "#d4d4d8",
226768
+ borderLeft: false,
226769
+ borderRight: false,
226726
226770
  paddingX: 1,
226727
226771
  children: filteredOrders.length === 0 ? /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Text3, {
226728
226772
  color: "gray",
@@ -226757,7 +226801,9 @@ function OrdersPanel({ manager, onClose }) {
226757
226801
  tab2 === "stores" ? /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Box_default, {
226758
226802
  flexDirection: "column",
226759
226803
  borderStyle: "round",
226760
- borderColor: "gray",
226804
+ borderColor: "#d4d4d8",
226805
+ borderLeft: false,
226806
+ borderRight: false,
226761
226807
  paddingX: 1,
226762
226808
  children: stores.length === 0 ? /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Text3, {
226763
226809
  color: "gray",
@@ -226792,7 +226838,9 @@ function OrdersPanel({ manager, onClose }) {
226792
226838
  tab2 === "overview" ? /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Box_default, {
226793
226839
  flexDirection: "column",
226794
226840
  borderStyle: "round",
226795
- borderColor: "gray",
226841
+ borderColor: "#d4d4d8",
226842
+ borderLeft: false,
226843
+ borderRight: false,
226796
226844
  paddingX: 1,
226797
226845
  children: [
226798
226846
  /* @__PURE__ */ jsx_dev_runtime26.jsxDEV(Text3, {
@@ -227811,7 +227859,9 @@ function DocsPanel({ onClose }) {
227811
227859
  }, undefined, true, undefined, this),
227812
227860
  /* @__PURE__ */ jsx_dev_runtime28.jsxDEV(Box_default, {
227813
227861
  borderStyle: "round",
227814
- borderColor: "gray",
227862
+ borderColor: "#d4d4d8",
227863
+ borderLeft: false,
227864
+ borderRight: false,
227815
227865
  flexDirection: "column",
227816
227866
  paddingX: 1,
227817
227867
  paddingY: 0,
@@ -227908,7 +227958,9 @@ function DocsPanel({ onClose }) {
227908
227958
  }, undefined, true, undefined, this),
227909
227959
  /* @__PURE__ */ jsx_dev_runtime28.jsxDEV(Box_default, {
227910
227960
  borderStyle: "round",
227911
- borderColor: "gray",
227961
+ borderColor: "#d4d4d8",
227962
+ borderLeft: false,
227963
+ borderRight: false,
227912
227964
  flexDirection: "column",
227913
227965
  paddingX: 1,
227914
227966
  paddingY: 0,
@@ -229365,7 +229417,9 @@ function GuardrailsPanel({
229365
229417
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229366
229418
  flexDirection: "column",
229367
229419
  borderStyle: "round",
229368
- borderColor: "red",
229420
+ borderColor: "#d4d4d8",
229421
+ borderLeft: false,
229422
+ borderRight: false,
229369
229423
  paddingX: 1,
229370
229424
  paddingY: 1,
229371
229425
  children: [
@@ -229411,7 +229465,9 @@ function GuardrailsPanel({
229411
229465
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229412
229466
  flexDirection: "column",
229413
229467
  borderStyle: "round",
229414
- borderColor: "cyan",
229468
+ borderColor: "#d4d4d8",
229469
+ borderLeft: false,
229470
+ borderRight: false,
229415
229471
  paddingX: 1,
229416
229472
  paddingY: 1,
229417
229473
  children: [
@@ -229501,7 +229557,9 @@ function GuardrailsPanel({
229501
229557
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229502
229558
  flexDirection: "column",
229503
229559
  borderStyle: "round",
229504
- borderColor: "cyan",
229560
+ borderColor: "#d4d4d8",
229561
+ borderLeft: false,
229562
+ borderRight: false,
229505
229563
  paddingX: 1,
229506
229564
  paddingY: 1,
229507
229565
  children: [
@@ -229605,7 +229663,9 @@ function GuardrailsPanel({
229605
229663
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229606
229664
  flexDirection: "column",
229607
229665
  borderStyle: "round",
229608
- borderColor: "gray",
229666
+ borderColor: "#d4d4d8",
229667
+ borderLeft: false,
229668
+ borderRight: false,
229609
229669
  paddingX: 1,
229610
229670
  paddingY: 1,
229611
229671
  children: [
@@ -229688,7 +229748,9 @@ function GuardrailsPanel({
229688
229748
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229689
229749
  flexDirection: "column",
229690
229750
  borderStyle: "round",
229691
- borderColor: "gray",
229751
+ borderColor: "#d4d4d8",
229752
+ borderLeft: false,
229753
+ borderRight: false,
229692
229754
  paddingX: 1,
229693
229755
  height: Math.min(8, detailRules.length + 2),
229694
229756
  overflowY: "hidden",
@@ -229760,7 +229822,9 @@ function GuardrailsPanel({
229760
229822
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229761
229823
  flexDirection: "column",
229762
229824
  borderStyle: "round",
229763
- borderColor: "gray",
229825
+ borderColor: "#d4d4d8",
229826
+ borderLeft: false,
229827
+ borderRight: false,
229764
229828
  paddingX: 1,
229765
229829
  paddingY: 1,
229766
229830
  children: [
@@ -229827,7 +229891,9 @@ function GuardrailsPanel({
229827
229891
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229828
229892
  flexDirection: "column",
229829
229893
  borderStyle: "round",
229830
- borderColor: "gray",
229894
+ borderColor: "#d4d4d8",
229895
+ borderLeft: false,
229896
+ borderRight: false,
229831
229897
  paddingX: 1,
229832
229898
  height: Math.min(12, policies.length + 2),
229833
229899
  overflowY: "hidden",
@@ -229923,7 +229989,9 @@ function GuardrailsPanel({
229923
229989
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
229924
229990
  flexDirection: "column",
229925
229991
  borderStyle: "round",
229926
- borderColor: "gray",
229992
+ borderColor: "#d4d4d8",
229993
+ borderLeft: false,
229994
+ borderRight: false,
229927
229995
  paddingX: 1,
229928
229996
  height: Math.min(12, toolRules.length + 2),
229929
229997
  overflowY: "hidden",
@@ -230051,7 +230119,9 @@ function GuardrailsPanel({
230051
230119
  /* @__PURE__ */ jsx_dev_runtime30.jsxDEV(Box_default, {
230052
230120
  flexDirection: "column",
230053
230121
  borderStyle: "round",
230054
- borderColor: "gray",
230122
+ borderColor: "#d4d4d8",
230123
+ borderLeft: false,
230124
+ borderRight: false,
230055
230125
  paddingX: 1,
230056
230126
  paddingY: 1,
230057
230127
  children: [
@@ -230514,7 +230584,9 @@ function BudgetPanel({
230514
230584
  /* @__PURE__ */ jsx_dev_runtime31.jsxDEV(Box_default, {
230515
230585
  flexDirection: "column",
230516
230586
  borderStyle: "round",
230517
- borderColor: "gray",
230587
+ borderColor: "#d4d4d8",
230588
+ borderLeft: false,
230589
+ borderRight: false,
230518
230590
  paddingX: 1,
230519
230591
  paddingY: 1,
230520
230592
  children: [
@@ -230622,7 +230694,9 @@ function BudgetPanel({
230622
230694
  /* @__PURE__ */ jsx_dev_runtime31.jsxDEV(Box_default, {
230623
230695
  flexDirection: "column",
230624
230696
  borderStyle: "round",
230625
- borderColor: "gray",
230697
+ borderColor: "#d4d4d8",
230698
+ borderLeft: false,
230699
+ borderRight: false,
230626
230700
  paddingX: 1,
230627
230701
  paddingY: 1,
230628
230702
  children: presetKeys.map((key, index) => {
@@ -230677,7 +230751,9 @@ function BudgetPanel({
230677
230751
  /* @__PURE__ */ jsx_dev_runtime31.jsxDEV(Box_default, {
230678
230752
  flexDirection: "column",
230679
230753
  borderStyle: "round",
230680
- borderColor: "gray",
230754
+ borderColor: "#d4d4d8",
230755
+ borderLeft: false,
230756
+ borderRight: false,
230681
230757
  paddingX: 1,
230682
230758
  paddingY: 1,
230683
230759
  children: [
@@ -230810,7 +230886,9 @@ function BudgetPanel({
230810
230886
  /* @__PURE__ */ jsx_dev_runtime31.jsxDEV(Box_default, {
230811
230887
  flexDirection: "column",
230812
230888
  borderStyle: "round",
230813
- borderColor: "gray",
230889
+ borderColor: "#d4d4d8",
230890
+ borderLeft: false,
230891
+ borderRight: false,
230814
230892
  paddingX: 1,
230815
230893
  paddingY: 1,
230816
230894
  children: [
@@ -231404,7 +231482,9 @@ function BudgetsPanel({
231404
231482
  /* @__PURE__ */ jsx_dev_runtime32.jsxDEV(Box_default, {
231405
231483
  flexDirection: "column",
231406
231484
  borderStyle: "round",
231407
- borderColor: "gray",
231485
+ borderColor: "#d4d4d8",
231486
+ borderLeft: false,
231487
+ borderRight: false,
231408
231488
  paddingX: 1,
231409
231489
  children: [
231410
231490
  profiles.length === 0 ? /* @__PURE__ */ jsx_dev_runtime32.jsxDEV(Box_default, {
@@ -231593,7 +231673,9 @@ function ModelPanel({
231593
231673
  /* @__PURE__ */ jsx_dev_runtime33.jsxDEV(Box_default, {
231594
231674
  flexDirection: "column",
231595
231675
  borderStyle: "round",
231596
- borderColor: "gray",
231676
+ borderColor: "#d4d4d8",
231677
+ borderLeft: false,
231678
+ borderRight: false,
231597
231679
  paddingX: 1,
231598
231680
  children: rows.map((row) => {
231599
231681
  if (row.type === "provider") {
@@ -231782,7 +231864,9 @@ function AssistantsRegistryPanel({
231782
231864
  /* @__PURE__ */ jsx_dev_runtime34.jsxDEV(Box_default, {
231783
231865
  flexDirection: "column",
231784
231866
  borderStyle: "round",
231785
- borderColor: "gray",
231867
+ borderColor: "#d4d4d8",
231868
+ borderLeft: false,
231869
+ borderRight: false,
231786
231870
  paddingX: 1,
231787
231871
  paddingY: 1,
231788
231872
  children: [
@@ -232131,7 +232215,9 @@ function AssistantsRegistryPanel({
232131
232215
  /* @__PURE__ */ jsx_dev_runtime34.jsxDEV(Box_default, {
232132
232216
  flexDirection: "column",
232133
232217
  borderStyle: "round",
232134
- borderColor: "gray",
232218
+ borderColor: "#d4d4d8",
232219
+ borderLeft: false,
232220
+ borderRight: false,
232135
232221
  paddingX: 1,
232136
232222
  height: Math.min(14, sortedAssistants.length + 2),
232137
232223
  overflowY: "hidden",
@@ -232217,7 +232303,9 @@ function AssistantsRegistryPanel({
232217
232303
  /* @__PURE__ */ jsx_dev_runtime34.jsxDEV(Box_default, {
232218
232304
  flexDirection: "column",
232219
232305
  borderStyle: "round",
232220
- borderColor: "gray",
232306
+ borderColor: "#d4d4d8",
232307
+ borderLeft: false,
232308
+ borderRight: false,
232221
232309
  paddingX: 1,
232222
232310
  paddingY: 1,
232223
232311
  children: [
@@ -232929,7 +233017,9 @@ function SchedulesPanel({
232929
233017
  /* @__PURE__ */ jsx_dev_runtime35.jsxDEV(Box_default, {
232930
233018
  flexDirection: "column",
232931
233019
  borderStyle: "round",
232932
- borderColor: "gray",
233020
+ borderColor: "#d4d4d8",
233021
+ borderLeft: false,
233022
+ borderRight: false,
232933
233023
  paddingX: 1,
232934
233024
  paddingY: 1,
232935
233025
  children: [
@@ -233308,7 +233398,9 @@ function SchedulesPanel({
233308
233398
  /* @__PURE__ */ jsx_dev_runtime35.jsxDEV(Box_default, {
233309
233399
  flexDirection: "column",
233310
233400
  borderStyle: "round",
233311
- borderColor: "gray",
233401
+ borderColor: "#d4d4d8",
233402
+ borderLeft: false,
233403
+ borderRight: false,
233312
233404
  paddingX: 1,
233313
233405
  paddingY: 0,
233314
233406
  children: [
@@ -233528,7 +233620,9 @@ function SchedulesPanel({
233528
233620
  /* @__PURE__ */ jsx_dev_runtime35.jsxDEV(Box_default, {
233529
233621
  flexDirection: "column",
233530
233622
  borderStyle: "round",
233531
- borderColor: "gray",
233623
+ borderColor: "#d4d4d8",
233624
+ borderLeft: false,
233625
+ borderRight: false,
233532
233626
  paddingX: 1,
233533
233627
  children: [
233534
233628
  sortedSchedules.length === 0 ? /* @__PURE__ */ jsx_dev_runtime35.jsxDEV(Box_default, {
@@ -233985,7 +234079,9 @@ function SkillsPanel({
233985
234079
  /* @__PURE__ */ jsx_dev_runtime36.jsxDEV(Box_default, {
233986
234080
  flexDirection: "column",
233987
234081
  borderStyle: "round",
233988
- borderColor: "gray",
234082
+ borderColor: "#d4d4d8",
234083
+ borderLeft: false,
234084
+ borderRight: false,
233989
234085
  paddingX: 1,
233990
234086
  paddingY: 1,
233991
234087
  children: [
@@ -234380,7 +234476,9 @@ function SkillsPanel({
234380
234476
  /* @__PURE__ */ jsx_dev_runtime36.jsxDEV(Box_default, {
234381
234477
  flexDirection: "column",
234382
234478
  borderStyle: "round",
234383
- borderColor: "gray",
234479
+ borderColor: "#d4d4d8",
234480
+ borderLeft: false,
234481
+ borderRight: false,
234384
234482
  paddingX: 1,
234385
234483
  paddingY: 0,
234386
234484
  children: [
@@ -234560,7 +234658,9 @@ function SkillsPanel({
234560
234658
  /* @__PURE__ */ jsx_dev_runtime36.jsxDEV(Box_default, {
234561
234659
  flexDirection: "column",
234562
234660
  borderStyle: "round",
234563
- borderColor: "gray",
234661
+ borderColor: "#d4d4d8",
234662
+ borderLeft: false,
234663
+ borderRight: false,
234564
234664
  paddingX: 1,
234565
234665
  children: [
234566
234666
  sortedSkills.length === 0 ? /* @__PURE__ */ jsx_dev_runtime36.jsxDEV(Box_default, {
@@ -234772,7 +234872,9 @@ function MemoryPanel({ memories, stats, onRefresh, onClose, error: error3 }) {
234772
234872
  /* @__PURE__ */ jsx_dev_runtime37.jsxDEV(Box_default, {
234773
234873
  flexDirection: "column",
234774
234874
  borderStyle: "round",
234775
- borderColor: "gray",
234875
+ borderColor: "#d4d4d8",
234876
+ borderLeft: false,
234877
+ borderRight: false,
234776
234878
  paddingX: 1,
234777
234879
  children: [
234778
234880
  /* @__PURE__ */ jsx_dev_runtime37.jsxDEV(Text3, {
@@ -234932,7 +235034,9 @@ function MemoryPanel({ memories, stats, onRefresh, onClose, error: error3 }) {
234932
235034
  /* @__PURE__ */ jsx_dev_runtime37.jsxDEV(Box_default, {
234933
235035
  flexDirection: "column",
234934
235036
  borderStyle: "round",
234935
- borderColor: "gray",
235037
+ borderColor: "#d4d4d8",
235038
+ borderLeft: false,
235039
+ borderRight: false,
234936
235040
  paddingX: 1,
234937
235041
  children: sorted.length === 0 ? /* @__PURE__ */ jsx_dev_runtime37.jsxDEV(Box_default, {
234938
235042
  paddingY: 1,
@@ -235290,7 +235394,9 @@ function ProjectsPanel({
235290
235394
  /* @__PURE__ */ jsx_dev_runtime38.jsxDEV(Box_default, {
235291
235395
  flexDirection: "column",
235292
235396
  borderStyle: "round",
235293
- borderColor: "gray",
235397
+ borderColor: "#d4d4d8",
235398
+ borderLeft: false,
235399
+ borderRight: false,
235294
235400
  paddingX: 1,
235295
235401
  children: [
235296
235402
  projects2.length === 0 ? /* @__PURE__ */ jsx_dev_runtime38.jsxDEV(Box_default, {
@@ -235807,7 +235913,9 @@ function PlansPanel({
235807
235913
  /* @__PURE__ */ jsx_dev_runtime39.jsxDEV(Box_default, {
235808
235914
  flexDirection: "column",
235809
235915
  borderStyle: "round",
235810
- borderColor: "gray",
235916
+ borderColor: "#d4d4d8",
235917
+ borderLeft: false,
235918
+ borderRight: false,
235811
235919
  paddingX: 1,
235812
235920
  children: [
235813
235921
  currentSteps.length === 0 ? /* @__PURE__ */ jsx_dev_runtime39.jsxDEV(Box_default, {
@@ -235903,7 +236011,9 @@ function PlansPanel({
235903
236011
  /* @__PURE__ */ jsx_dev_runtime39.jsxDEV(Box_default, {
235904
236012
  flexDirection: "column",
235905
236013
  borderStyle: "round",
235906
- borderColor: "gray",
236014
+ borderColor: "#d4d4d8",
236015
+ borderLeft: false,
236016
+ borderRight: false,
235907
236017
  paddingX: 1,
235908
236018
  children: [
235909
236019
  plans.length === 0 ? /* @__PURE__ */ jsx_dev_runtime39.jsxDEV(Box_default, {
@@ -236263,7 +236373,9 @@ function WalletPanel({
236263
236373
  /* @__PURE__ */ jsx_dev_runtime40.jsxDEV(Box_default, {
236264
236374
  flexDirection: "column",
236265
236375
  borderStyle: "round",
236266
- borderColor: "red",
236376
+ borderColor: "#d4d4d8",
236377
+ borderLeft: false,
236378
+ borderRight: false,
236267
236379
  paddingX: 1,
236268
236380
  paddingY: 1,
236269
236381
  children: [
@@ -236319,7 +236431,9 @@ function WalletPanel({
236319
236431
  /* @__PURE__ */ jsx_dev_runtime40.jsxDEV(Box_default, {
236320
236432
  flexDirection: "column",
236321
236433
  borderStyle: "round",
236322
- borderColor: "gray",
236434
+ borderColor: "#d4d4d8",
236435
+ borderLeft: false,
236436
+ borderRight: false,
236323
236437
  paddingX: 1,
236324
236438
  paddingY: 1,
236325
236439
  children: [
@@ -236428,7 +236542,9 @@ function WalletPanel({
236428
236542
  /* @__PURE__ */ jsx_dev_runtime40.jsxDEV(Box_default, {
236429
236543
  flexDirection: "column",
236430
236544
  borderStyle: "round",
236431
- borderColor: "gray",
236545
+ borderColor: "#d4d4d8",
236546
+ borderLeft: false,
236547
+ borderRight: false,
236432
236548
  paddingX: 1,
236433
236549
  paddingY: 1,
236434
236550
  children: ADD_FIELDS.map((field, index) => {
@@ -236519,7 +236635,9 @@ function WalletPanel({
236519
236635
  /* @__PURE__ */ jsx_dev_runtime40.jsxDEV(Box_default, {
236520
236636
  flexDirection: "column",
236521
236637
  borderStyle: "round",
236522
- borderColor: "gray",
236638
+ borderColor: "#d4d4d8",
236639
+ borderLeft: false,
236640
+ borderRight: false,
236523
236641
  paddingX: 1,
236524
236642
  paddingY: 1,
236525
236643
  children: [
@@ -236589,7 +236707,9 @@ function WalletPanel({
236589
236707
  /* @__PURE__ */ jsx_dev_runtime40.jsxDEV(Box_default, {
236590
236708
  flexDirection: "column",
236591
236709
  borderStyle: "round",
236592
- borderColor: "gray",
236710
+ borderColor: "#d4d4d8",
236711
+ borderLeft: false,
236712
+ borderRight: false,
236593
236713
  paddingX: 1,
236594
236714
  children: [
236595
236715
  cardRange.hasMore.above > 0 && /* @__PURE__ */ jsx_dev_runtime40.jsxDEV(Box_default, {
@@ -236997,7 +237117,9 @@ function SecretsPanel({
236997
237117
  /* @__PURE__ */ jsx_dev_runtime41.jsxDEV(Box_default, {
236998
237118
  flexDirection: "column",
236999
237119
  borderStyle: "round",
237000
- borderColor: "gray",
237120
+ borderColor: "#d4d4d8",
237121
+ borderLeft: false,
237122
+ borderRight: false,
237001
237123
  paddingX: 1,
237002
237124
  paddingY: 1,
237003
237125
  children: ADD_FIELDS2.map((field, index) => {
@@ -237088,7 +237210,9 @@ function SecretsPanel({
237088
237210
  /* @__PURE__ */ jsx_dev_runtime41.jsxDEV(Box_default, {
237089
237211
  flexDirection: "column",
237090
237212
  borderStyle: "round",
237091
- borderColor: "gray",
237213
+ borderColor: "#d4d4d8",
237214
+ borderLeft: false,
237215
+ borderRight: false,
237092
237216
  paddingX: 1,
237093
237217
  paddingY: 1,
237094
237218
  children: [
@@ -237135,7 +237259,9 @@ function SecretsPanel({
237135
237259
  /* @__PURE__ */ jsx_dev_runtime41.jsxDEV(Box_default, {
237136
237260
  flexDirection: "column",
237137
237261
  borderStyle: "round",
237138
- borderColor: "red",
237262
+ borderColor: "#d4d4d8",
237263
+ borderLeft: false,
237264
+ borderRight: false,
237139
237265
  paddingX: 1,
237140
237266
  paddingY: 1,
237141
237267
  children: [
@@ -237192,7 +237318,9 @@ function SecretsPanel({
237192
237318
  /* @__PURE__ */ jsx_dev_runtime41.jsxDEV(Box_default, {
237193
237319
  flexDirection: "column",
237194
237320
  borderStyle: "round",
237195
- borderColor: "gray",
237321
+ borderColor: "#d4d4d8",
237322
+ borderLeft: false,
237323
+ borderRight: false,
237196
237324
  paddingX: 1,
237197
237325
  paddingY: 1,
237198
237326
  children: [
@@ -237296,7 +237424,9 @@ function SecretsPanel({
237296
237424
  /* @__PURE__ */ jsx_dev_runtime41.jsxDEV(Box_default, {
237297
237425
  flexDirection: "column",
237298
237426
  borderStyle: "round",
237299
- borderColor: "gray",
237427
+ borderColor: "#d4d4d8",
237428
+ borderLeft: false,
237429
+ borderRight: false,
237300
237430
  paddingX: 1,
237301
237431
  children: [
237302
237432
  secretRange.hasMore.above > 0 && /* @__PURE__ */ jsx_dev_runtime41.jsxDEV(Box_default, {
@@ -237616,7 +237746,9 @@ function WorkspacePanel({
237616
237746
  /* @__PURE__ */ jsx_dev_runtime42.jsxDEV(Box_default, {
237617
237747
  flexDirection: "column",
237618
237748
  borderStyle: "round",
237619
- borderColor: "gray",
237749
+ borderColor: "#d4d4d8",
237750
+ borderLeft: false,
237751
+ borderRight: false,
237620
237752
  paddingX: 1,
237621
237753
  paddingY: 1,
237622
237754
  children: [
@@ -237656,7 +237788,9 @@ function WorkspacePanel({
237656
237788
  /* @__PURE__ */ jsx_dev_runtime42.jsxDEV(Box_default, {
237657
237789
  flexDirection: "column",
237658
237790
  borderStyle: "round",
237659
- borderColor: "red",
237791
+ borderColor: "#d4d4d8",
237792
+ borderLeft: false,
237793
+ borderRight: false,
237660
237794
  paddingX: 1,
237661
237795
  paddingY: 1,
237662
237796
  children: [
@@ -237709,7 +237843,9 @@ function WorkspacePanel({
237709
237843
  /* @__PURE__ */ jsx_dev_runtime42.jsxDEV(Box_default, {
237710
237844
  flexDirection: "column",
237711
237845
  borderStyle: "round",
237712
- borderColor: "yellow",
237846
+ borderColor: "#d4d4d8",
237847
+ borderLeft: false,
237848
+ borderRight: false,
237713
237849
  paddingX: 1,
237714
237850
  paddingY: 1,
237715
237851
  children: [
@@ -237780,7 +237916,9 @@ function WorkspacePanel({
237780
237916
  /* @__PURE__ */ jsx_dev_runtime42.jsxDEV(Box_default, {
237781
237917
  flexDirection: "column",
237782
237918
  borderStyle: "round",
237783
- borderColor: "gray",
237919
+ borderColor: "#d4d4d8",
237920
+ borderLeft: false,
237921
+ borderRight: false,
237784
237922
  paddingX: 1,
237785
237923
  paddingY: 1,
237786
237924
  children: [
@@ -237918,7 +238056,9 @@ function WorkspacePanel({
237918
238056
  /* @__PURE__ */ jsx_dev_runtime42.jsxDEV(Box_default, {
237919
238057
  flexDirection: "column",
237920
238058
  borderStyle: "round",
237921
- borderColor: "gray",
238059
+ borderColor: "#d4d4d8",
238060
+ borderLeft: false,
238061
+ borderRight: false,
237922
238062
  paddingX: 1,
237923
238063
  children: [
237924
238064
  wsRange.hasMore.above > 0 && /* @__PURE__ */ jsx_dev_runtime42.jsxDEV(Box_default, {
@@ -238120,7 +238260,9 @@ function AssistantsDashboard({
238120
238260
  /* @__PURE__ */ jsx_dev_runtime43.jsxDEV(Box_default, {
238121
238261
  flexDirection: "column",
238122
238262
  borderStyle: "round",
238123
- borderColor: "gray",
238263
+ borderColor: "#d4d4d8",
238264
+ borderLeft: false,
238265
+ borderRight: false,
238124
238266
  paddingX: 1,
238125
238267
  paddingY: 1,
238126
238268
  children: [
@@ -238370,7 +238512,9 @@ function SwarmPanel({
238370
238512
  /* @__PURE__ */ jsx_dev_runtime44.jsxDEV(Box_default, {
238371
238513
  flexDirection: "column",
238372
238514
  borderStyle: "round",
238373
- borderColor: "gray",
238515
+ borderColor: "#d4d4d8",
238516
+ borderLeft: false,
238517
+ borderRight: false,
238374
238518
  paddingX: 1,
238375
238519
  paddingY: 1,
238376
238520
  children: [
@@ -238735,7 +238879,9 @@ function LogsPanel({ onCancel }) {
238735
238879
  /* @__PURE__ */ jsx_dev_runtime45.jsxDEV(Box_default, {
238736
238880
  flexDirection: "column",
238737
238881
  borderStyle: "round",
238738
- borderColor: "gray",
238882
+ borderColor: "#d4d4d8",
238883
+ borderLeft: false,
238884
+ borderRight: false,
238739
238885
  paddingX: 1,
238740
238886
  paddingY: 0,
238741
238887
  children: [
@@ -238916,7 +239062,9 @@ function LogsPanel({ onCancel }) {
238916
239062
  /* @__PURE__ */ jsx_dev_runtime45.jsxDEV(Box_default, {
238917
239063
  flexDirection: "column",
238918
239064
  borderStyle: "round",
238919
- borderColor: "gray",
239065
+ borderColor: "#d4d4d8",
239066
+ borderLeft: false,
239067
+ borderRight: false,
238920
239068
  paddingX: 1,
238921
239069
  children: filteredEvents.length === 0 ? /* @__PURE__ */ jsx_dev_runtime45.jsxDEV(Box_default, {
238922
239070
  paddingY: 1,
@@ -239051,7 +239199,9 @@ function HeartbeatPanel({
239051
239199
  marginTop: 1,
239052
239200
  flexDirection: "column",
239053
239201
  borderStyle: "round",
239054
- borderColor: "gray",
239202
+ borderColor: "#d4d4d8",
239203
+ borderLeft: false,
239204
+ borderRight: false,
239055
239205
  paddingX: 1,
239056
239206
  children: /* @__PURE__ */ jsx_dev_runtime46.jsxDEV(Text3, {
239057
239207
  children: JSON.stringify(selectedRun, null, 2)
@@ -239099,7 +239249,9 @@ function HeartbeatPanel({
239099
239249
  marginTop: 1,
239100
239250
  flexDirection: "column",
239101
239251
  borderStyle: "round",
239102
- borderColor: "gray",
239252
+ borderColor: "#d4d4d8",
239253
+ borderLeft: false,
239254
+ borderRight: false,
239103
239255
  paddingX: 1,
239104
239256
  children: sortedRuns.length === 0 ? /* @__PURE__ */ jsx_dev_runtime46.jsxDEV(Box_default, {
239105
239257
  paddingY: 1,
@@ -239247,7 +239399,9 @@ function ResumePanel({
239247
239399
  marginTop: 1,
239248
239400
  flexDirection: "column",
239249
239401
  borderStyle: "round",
239250
- borderColor: "gray",
239402
+ borderColor: "#d4d4d8",
239403
+ borderLeft: false,
239404
+ borderRight: false,
239251
239405
  paddingX: 1,
239252
239406
  children: filteredSessions.length === 0 ? /* @__PURE__ */ jsx_dev_runtime47.jsxDEV(Box_default, {
239253
239407
  paddingY: 1,
@@ -243409,13 +243563,13 @@ When done, report the result.`);
243409
243563
  onClose: () => setShowChannelsPanel(false)
243410
243564
  }, undefined, false, undefined, this);
243411
243565
  }
243412
- const activeAssistantName2 = activeSession?.client.getIdentityInfo?.()?.assistant?.name || activeSession?.assistantId || "Assistant";
243566
+ const activeAssistantName = activeSession?.client.getIdentityInfo?.()?.assistant?.name || activeSession?.assistantId || "Assistant";
243413
243567
  return /* @__PURE__ */ jsx_dev_runtime48.jsxDEV(ChannelsPanel, {
243414
243568
  manager: channelsManager,
243415
243569
  onClose: () => setShowChannelsPanel(false),
243416
243570
  activePersonId: activeSession?.client.getPeopleManager?.()?.getActivePersonId?.() || undefined,
243417
243571
  activePersonName: activeSession?.client.getPeopleManager?.()?.getActivePerson?.()?.name || undefined,
243418
- activeAssistantName: activeAssistantName2,
243572
+ activeAssistantName,
243419
243573
  onPersonMessage: (channelName, personName, message) => {
243420
243574
  const members = channelsManager.getMembers(channelName);
243421
243575
  const agentPool = activeSession?.client.getChannelAgentPool?.();
@@ -243634,7 +243788,9 @@ ${msg.body || msg.preview}`);
243634
243788
  /* @__PURE__ */ jsx_dev_runtime48.jsxDEV(Box_default, {
243635
243789
  flexDirection: "column",
243636
243790
  borderStyle: "round",
243637
- borderColor: "gray",
243791
+ borderColor: "#d4d4d8",
243792
+ borderLeft: false,
243793
+ borderRight: false,
243638
243794
  paddingX: 1,
243639
243795
  paddingY: 1,
243640
243796
  children: [
@@ -244269,7 +244425,7 @@ Interactive Mode:
244269
244425
  // packages/terminal/src/index.tsx
244270
244426
  var jsx_dev_runtime49 = __toESM(require_jsx_dev_runtime(), 1);
244271
244427
  setRuntime(bunRuntime);
244272
- var VERSION4 = "1.1.34";
244428
+ var VERSION4 = "1.1.36";
244273
244429
  var SYNC_START = "\x1B[?2026h";
244274
244430
  var SYNC_END = "\x1B[?2026l";
244275
244431
  function enableSynchronizedOutput() {
@@ -244409,4 +244565,4 @@ export {
244409
244565
  main
244410
244566
  };
244411
244567
 
244412
- //# debugId=0D8DB1259CF9BFA064756E2164756E21
244568
+ //# debugId=9DD8CA1DF29768C664756E2164756E21