aiexecode 1.0.63 → 1.0.65

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.

Potentially problematic release.


This version of aiexecode might be problematic. Click here for more details.

@@ -80,6 +80,7 @@ function logOldStringEvidence(evidence) {
80
80
  const TYPE_CONFIG = {
81
81
  user: { icon: '> ', color: theme.text.accent, bold: true },
82
82
  assistant: { icon: '< ', color: theme.status.warning, bold: true },
83
+ assistant_progress: { icon: ' ', color: theme.text.secondary, bold: false }, // 중간 안내 메시지
83
84
  system: { icon: '* ', color: theme.text.secondary, bold: false },
84
85
  error: { icon: '✗ ', color: theme.status.error, bold: true },
85
86
  tool: { icon: '⚙ ', color: theme.status.success, bold: false },
@@ -524,6 +525,19 @@ function StandardDisplay({ item, isPending, hasFollowingResult, nextItem, isLast
524
525
  );
525
526
  }
526
527
 
528
+ // 중간 안내 메시지 (assistant_progress) - dimColor로 표시
529
+ if (type === 'assistant_progress') {
530
+ return React.createElement(Box, { flexDirection: "row", marginBottom, marginTop, marginLeft: 2 },
531
+ React.createElement(Text, {
532
+ color: theme.text.secondary,
533
+ dimColor: true
534
+ }, ' ⋯ '),
535
+ React.createElement(Box, { flexDirection: "column", flexGrow: 1 },
536
+ React.createElement(Text, { color: theme.text.secondary, dimColor: true }, text)
537
+ )
538
+ );
539
+ }
540
+
527
541
  // 시스템 메시지는 마크다운 렌더링 적용
528
542
  if (type === 'system') {
529
543
  return React.createElement(Box, { flexDirection: "row", marginBottom, marginTop, marginLeft: 2 },