AX Agent 상태 스트립과 작업 요약 UI 축소
Some checks failed
Release Gate / gate (push) Has been cancelled

- ChatWindow의 ConversationStatusStrip, AgentProgressBar, RuntimeActivityBadge, 실행 로그 관련 상태 요소 패딩과 폰트 밀도를 낮춰 본문 우선 구조로 조정함

- 작업 요약 팝업의 제목/설명/최근 실행 카드 밀도를 줄이고 최근 실행 표시 수를 축소해 상태 패널이 보조 레이어로 남도록 정리함

- README와 DEVELOPMENT 문서에 2026-04-05 14:31 (KST) 기준 작업 이력을 반영하고 Release 빌드 경고 0 오류 0을 확인함
This commit is contained in:
2026-04-05 13:22:19 +09:00
parent 458fd8da96
commit 88a21ead92
4 changed files with 54 additions and 50 deletions

View File

@@ -20212,17 +20212,17 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
panel.Children.Add(new TextBlock
{
Text = "작업 요약",
FontSize = 12.5,
FontSize = 11.5,
FontWeight = FontWeights.SemiBold,
Foreground = primaryText,
Margin = new Thickness(10, 8, 10, 4),
Margin = new Thickness(10, 6, 10, 3),
});
panel.Children.Add(new TextBlock
{
Text = "현재 실행/권한/작업 흐름",
FontSize = 10,
FontSize = 9.5,
Foreground = secondaryText,
Margin = new Thickness(10, 0, 10, 6),
Margin = new Thickness(10, 0, 10, 4),
});
var taskFilterRow = new WrapPanel
{
@@ -20279,7 +20279,7 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
panel.Children.Add(currentRun);
}
var recentAgentRuns = _appState.GetRecentAgentRuns(3);
var recentAgentRuns = _appState.GetRecentAgentRuns(2);
if (recentAgentRuns.Count > 0)
{
var latestFailedRun = _appState.GetLatestFailedRun();
@@ -20324,10 +20324,10 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
panel.Children.Add(new TextBlock
{
Text = "최근 에이전트 실행",
FontSize = 11,
FontSize = 10.5,
FontWeight = FontWeights.SemiBold,
Foreground = Brushes.DimGray,
Margin = new Thickness(10, 0, 10, 4),
Margin = new Thickness(10, 0, 10, 3),
});
foreach (var run in recentAgentRuns)
@@ -20354,7 +20354,7 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
new TextBlock
{
Text = TruncateForStatus(runDisplay.SummaryText, 140),
Margin = new Thickness(0, 3, 0, 0),
Margin = new Thickness(0, 2, 0, 0),
TextWrapping = TextWrapping.Wrap,
Foreground = secondaryText,
}
@@ -20367,7 +20367,7 @@ private static (string icon, string label, string bgHex, string fgHex) GetDecisi
activitySummary.Children.Add(new TextBlock
{
Text = $"실행 로그 {runEvents.Count} · 관련 파일 {runFilePaths.Count}",
FontSize = 10,
FontSize = 9.5,
Foreground = secondaryText,
});