AX Agent 설정/오버레이의 PlanMode dead UI를 제거
Some checks failed
Release Gate / gate (push) Has been cancelled
Some checks failed
Release Gate / gate (push) Has been cancelled
- SettingsWindow와 ChatWindow에서 숨김 PlanMode row, hidden toggle, dead handler와 binding 제거 - SettingsViewModel dead PlanMode property/save 경로 정리로 현재 정책과 설정 모델을 일치시킴 - README와 DEVELOPMENT 문서에 2026-04-05 21:12 (KST) 기준 변경 내역과 parity 98% 재평가 반영 - 검증: dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify\\ -p:IntermediateOutputPath=obj\\verify\\ (경고 0 / 오류 0)
This commit is contained in:
@@ -4697,49 +4697,6 @@
|
||||
</WrapPanel>
|
||||
</Grid>
|
||||
</Border>
|
||||
<Border Style="{StaticResource AgentSettingsRow}" Visibility="Collapsed">
|
||||
<Grid>
|
||||
<StackPanel HorizontalAlignment="Left" Margin="0,0,180,0">
|
||||
<StackPanel Orientation="Horizontal">
|
||||
<TextBlock Style="{StaticResource RowLabel}" Text="플랜 모드"/>
|
||||
<Border Width="16" Height="16" CornerRadius="8" Background="{DynamicResource ItemHoverBackground}" Margin="6,0,0,0" Cursor="Help" VerticalAlignment="Center">
|
||||
<TextBlock Text="?" FontSize="10" FontWeight="Bold" Foreground="{DynamicResource AccentColor}" HorizontalAlignment="Center" VerticalAlignment="Center"/>
|
||||
<Border.ToolTip>
|
||||
<ToolTip Style="{StaticResource HelpTooltipStyle}">
|
||||
<TextBlock TextWrapping="Wrap" Foreground="White" FontSize="12" LineHeight="18">
|
||||
AI가 도구를 실행하기 전에 실행 계획을 먼저 생성합니다.
|
||||
<LineBreak/><LineBreak/>• Off — 기존 동작 (계획 없이 바로 실행)
|
||||
<LineBreak/>• Always — 항상 계획 생성 후 승인 대기
|
||||
<LineBreak/>• Auto — 복잡한 작업 감지 시 자동 계획
|
||||
<LineBreak/><LineBreak/>계획을 검토·수정·승인한 후 실행됩니다.
|
||||
</TextBlock>
|
||||
</ToolTip>
|
||||
</Border.ToolTip>
|
||||
</Border>
|
||||
</StackPanel>
|
||||
<TextBlock Style="{StaticResource RowHint}" Text="도구 실행 전 구조화된 실행 계획 생성 및 사용자 승인"/>
|
||||
</StackPanel>
|
||||
<WrapPanel HorizontalAlignment="Right" VerticalAlignment="Center">
|
||||
<RadioButton x:Name="AgentPlanModeCardOff"
|
||||
Content="Off"
|
||||
GroupName="AgentPlanModeCard"
|
||||
Style="{StaticResource AgentSubTabStyle}"
|
||||
Margin="0,0,6,0"
|
||||
Checked="AgentPlanModeCard_Checked"/>
|
||||
<RadioButton x:Name="AgentPlanModeCardAlways"
|
||||
Content="Always"
|
||||
GroupName="AgentPlanModeCard"
|
||||
Style="{StaticResource AgentSubTabStyle}"
|
||||
Margin="0,0,6,0"
|
||||
Checked="AgentPlanModeCard_Checked"/>
|
||||
<RadioButton x:Name="AgentPlanModeCardAuto"
|
||||
Content="Auto"
|
||||
GroupName="AgentPlanModeCard"
|
||||
Style="{StaticResource AgentSubTabStyle}"
|
||||
Checked="AgentPlanModeCard_Checked"/>
|
||||
</WrapPanel>
|
||||
</Grid>
|
||||
</Border>
|
||||
<Border Style="{StaticResource AgentSettingsRow}">
|
||||
<Grid>
|
||||
<StackPanel HorizontalAlignment="Left" Margin="0,0,60,0">
|
||||
@@ -5154,16 +5111,6 @@
|
||||
|
||||
<!-- ── Agentic 도구 설정 ── -->
|
||||
<TextBlock Style="{StaticResource SectionHeader}" Text="Agentic 도구"/>
|
||||
<Border Style="{StaticResource SettingsRow}" Visibility="Collapsed">
|
||||
<Grid>
|
||||
<StackPanel HorizontalAlignment="Left" Margin="0,0,60,0">
|
||||
<TextBlock Style="{StaticResource RowLabel}" Text="Plan Mode 도구"/>
|
||||
<TextBlock Style="{StaticResource RowHint}" Text="EnterPlanMode/ExitPlanMode 도구를 사용할지 설정합니다."/>
|
||||
</StackPanel>
|
||||
<CheckBox Style="{StaticResource ToggleSwitch}" HorizontalAlignment="Right" VerticalAlignment="Center"
|
||||
IsChecked="{Binding Code.EnablePlanModeTools, Mode=TwoWay}"/>
|
||||
</Grid>
|
||||
</Border>
|
||||
<Border Style="{StaticResource SettingsRow}">
|
||||
<Grid>
|
||||
<StackPanel HorizontalAlignment="Left" Margin="0,0,60,0">
|
||||
|
||||
Reference in New Issue
Block a user