빌드 부산물 추적 해제와 AX Agent 대기열·composer UI 정리
Some checks failed
Release Gate / gate (push) Has been cancelled
Some checks failed
Release Gate / gate (push) Has been cancelled
- .gitignore에 bin/obj/publish 및 IDE/OS/비밀정보 패턴 추가 - Git 인덱스에서 publish 및 src 하위 bin/obj 빌드 부산물 추적을 해제하여 저장소 노이즈를 정리 - DraftQueue를 실행 대기/최근 결과 섹션과 상태 요약 pill 구조로 재정리 - composer 상단 모델/컨텍스트/프리셋 줄과 하단 작업 위치 칩 UI를 더 평평한 시각 언어로 통일 - 워크스페이스·브랜치·워크트리 패널에 공통 row 및 요약 strip을 적용해 panel UX를 정돈 - README.md와 docs/DEVELOPMENT.md, docs/AGENT_ROADMAP.md, AGENTS.md 이력을 갱신 검증 - 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:
@@ -11,12 +11,6 @@ internal static class PermissionModePresentationCatalog
|
||||
{
|
||||
public static readonly IReadOnlyList<PermissionModePresentation> Ordered = new[]
|
||||
{
|
||||
new PermissionModePresentation(
|
||||
PermissionModeCatalog.Deny,
|
||||
"\uE711",
|
||||
"읽기 전용",
|
||||
"파일 읽기만 허용하고 생성/수정/삭제는 차단합니다.",
|
||||
"#107C10"),
|
||||
new PermissionModePresentation(
|
||||
PermissionModeCatalog.Default,
|
||||
"\uE8D7",
|
||||
@@ -39,14 +33,8 @@ internal static class PermissionModePresentationCatalog
|
||||
PermissionModeCatalog.BypassPermissions,
|
||||
"\uE814",
|
||||
"권한 건너뛰기",
|
||||
"모든 권한을 허용합니다.",
|
||||
"파일 편집과 명령 실행까지 모두 자동 허용합니다.",
|
||||
"#B45309"),
|
||||
new PermissionModePresentation(
|
||||
PermissionModeCatalog.DontAsk,
|
||||
"\uE8A5",
|
||||
"질문 없이 진행",
|
||||
"권한 질문 없이 진행합니다. 자동 실행 범위를 점검하세요.",
|
||||
"#B91C1C"),
|
||||
};
|
||||
|
||||
public static PermissionModePresentation Resolve(string? mode)
|
||||
@@ -54,6 +42,6 @@ internal static class PermissionModePresentationCatalog
|
||||
var normalized = PermissionModeCatalog.NormalizeGlobalMode(mode);
|
||||
return Ordered.FirstOrDefault(item =>
|
||||
string.Equals(item.Mode, normalized, StringComparison.OrdinalIgnoreCase))
|
||||
?? Ordered[1];
|
||||
?? Ordered[0];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user