diff --git a/README.md b/README.md index 970ea74..1e68205 100644 --- a/README.md +++ b/README.md @@ -743,6 +743,7 @@ ow + toggle 시각 언어로 통일했습니다. - 이번엔 [AxAgentExecutionEngine.cs](/E:/AX%20Copilot%20-%20Codex/src/AxCopilot/Services/Agent/AxAgentExecutionEngine.cs)에 `ExecutePreparedAsync(...)`를 추가해서, 준비된 실행이 `AgentLoop`를 탈지 일반 LLM 호출을 탈지 결정하는 분기까지 엔진이 맡도록 옮겼습니다. [ChatWindow.xaml.cs](/E:/AX%20Copilot%20-%20Codex/src/AxCopilot/Views/ChatWindow.xaml.cs)의 일반 전송과 재생성은 이제 둘 다 `ExecutePreparedAsync(...)`만 호출합니다. - 이어서 [ChatWindow.xaml.cs](/E:/AX%20Copilot%20-%20Codex/src/AxCopilot/Views/ChatWindow.xaml.cs)의 실행 후처리도 `ResetStreamingUiState()`, `FinalizeConversationTurn()`, `FinalizeQueuedDraft()`로 묶었습니다. 전송과 재생성이 같은 정리 경로를 공유하게 해서, 응답 완료 뒤 상태 복구와 대화 저장, 대기열 완료/실패 처리 흐름도 더 한 축으로 정리했습니다. - 이번엔 `OnAgentEvent(...)`의 본문 재렌더를 배치형으로 바꿨습니다. [ChatWindow.xaml.cs](/E:/AX%20Copilot%20-%20Codex/src/AxCopilot/Views/ChatWindow.xaml.cs)에 `DispatcherTimer` 기반 `ScheduleExecutionHistoryRender()`를 추가해서, Cowork/Code 실행 중 이벤트가 연속으로 들어와도 `RenderMessages()`가 매 이벤트마다 바로 돌지 않고 짧게 묶여 한 번씩만 반영됩니다. +- 같은 흐름으로 작업 요약 스트립도 배치형 갱신으로 바꿨습니다. `UpdateTaskSummaryIndicators()`를 즉시 호출하는 대신 `ScheduleTaskSummaryRefresh()`가 120ms 단위로 상태 반영을 묶어, 실행 중 상단 상태 스트립과 런타임 배지가 과하게 흔들리지 않도록 정리했습니다. - 검증: `dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\` 경고 0 / 오류 0 - 업데이트: 2026-04-05 12:24 (KST) - 업데이트: 2026-04-05 12:31 (KST) @@ -750,6 +751,7 @@ ow + toggle 시각 언어로 통일했습니다. - 업데이트: 2026-04-05 12:41 (KST) - 업데이트: 2026-04-05 12:47 (KST) - 업데이트: 2026-04-05 12:53 (KST) +- 업데이트: 2026-04-05 12:58 (KST) --- diff --git a/docs/DEVELOPMENT.md b/docs/DEVELOPMENT.md index 2884e3e..5062887 100644 --- a/docs/DEVELOPMENT.md +++ b/docs/DEVELOPMENT.md @@ -4504,4 +4504,7 @@ ow + toggle ?쒓컖 ?몄뼱濡??ㅼ떆 ?뺣젹?덈떎. - 업데이트: 2026-04-05 12:53 (KST) - [ChatWindow.xaml.cs](/E:/AX%20Copilot%20-%20Codex/src/AxCopilot/Views/ChatWindow.xaml.cs)에 `_executionHistoryRenderTimer`와 `ScheduleExecutionHistoryRender()`를 추가해, `OnAgentEvent(...)`가 실행 이벤트마다 즉시 `RenderMessages()`를 호출하지 않도록 바꿨습니다. - 이제 `ShowExecutionHistory`가 켜진 Cowork/Code 대화에서도 실행 이벤트가 짧은 간격으로 몰릴 때는 120ms 단위로 재렌더를 묶어서 한 번만 반영합니다. 이건 실행 중 본문이 번쩍이거나 로그 잔상이 자주 갱신되는 체감을 줄이기 위한 배치 렌더 단계입니다. +- 업데이트: 2026-04-05 12:58 (KST) +- 같은 파일에 `_taskSummaryRefreshTimer`와 `ScheduleTaskSummaryRefresh()`도 추가해, `UpdateTaskSummaryIndicators()`가 실행 이벤트나 서브에이전트 상태 변경마다 즉시 도는 대신 120ms 단위로 묶여 반영되게 했습니다. +- 이 조정은 `RuntimeActivityBadge`, `ConversationStatusStrip`, 완료 요약 라벨 같은 상태 스트립이 빠르게 깜빡이는 체감을 줄이기 위한 것이며, 본문 재렌더 배치와 함께 Cowork/Code 실행 중 전체 UI 안정성을 높이는 단계입니다. - 검증: `dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\verify\ -p:IntermediateOutputPath=obj\verify\` 경고 0 / 오류 0 diff --git a/src/AxCopilot/Views/ChatWindow.xaml.cs b/src/AxCopilot/Views/ChatWindow.xaml.cs index 42b749f..07345a6 100644 --- a/src/AxCopilot/Views/ChatWindow.xaml.cs +++ b/src/AxCopilot/Views/ChatWindow.xaml.cs @@ -84,6 +84,7 @@ public partial class ChatWindow : Window private readonly DispatcherTimer _conversationSearchTimer; private readonly DispatcherTimer _inputUiRefreshTimer; private readonly DispatcherTimer _executionHistoryRenderTimer; + private readonly DispatcherTimer _taskSummaryRefreshTimer; private CancellationTokenSource? _gitStatusRefreshCts; private int _displayedLength; // 현재 화면에 표시된 글자 수 private ResourceDictionary? _agentThemeDictionary; @@ -244,6 +245,12 @@ public partial class ChatWindow : Window AutoScrollIfNeeded(); _pendingExecutionHistoryAutoScroll = false; }; + _taskSummaryRefreshTimer = new DispatcherTimer { Interval = TimeSpan.FromMilliseconds(120) }; + _taskSummaryRefreshTimer.Tick += (_, _) => + { + _taskSummaryRefreshTimer.Stop(); + UpdateTaskSummaryIndicators(); + }; KeyDown += ChatWindow_KeyDown; UpdateConversationFailureFilterUi(); @@ -8549,6 +8556,7 @@ public partial class ChatWindow : Window _typingTimer.Stop(); _executionHistoryRenderTimer.Stop(); _pendingExecutionHistoryAutoScroll = false; + _taskSummaryRefreshTimer.Stop(); HideStickyProgress(); StopRainbowGlow(); _activeStreamText = null; @@ -8612,6 +8620,12 @@ public partial class ChatWindow : Window _executionHistoryRenderTimer.Start(); } + private void ScheduleTaskSummaryRefresh() + { + _taskSummaryRefreshTimer.Stop(); + _taskSummaryRefreshTimer.Start(); + } + // ─── 코워크 에이전트 지원 ──────────────────────────────────────────── private string BuildCoworkSystemPrompt() @@ -9070,7 +9084,7 @@ public partial class ChatWindow : Window } } - UpdateTaskSummaryIndicators(); + ScheduleTaskSummaryRefresh(); } private void OnSubAgentStatusChanged(SubAgentStatusEvent evt) @@ -9078,7 +9092,7 @@ public partial class ChatWindow : Window Dispatcher.Invoke(() => { _appState.ApplySubAgentStatus(evt); - UpdateTaskSummaryIndicators(); + ScheduleTaskSummaryRefresh(); }); }