빌드 부산물 추적 해제와 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:
@@ -577,6 +577,12 @@ public class LlmSettings
|
||||
[JsonPropertyName("promptTemplates")]
|
||||
public List<PromptTemplate> PromptTemplates { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("favoritePromptTemplates")]
|
||||
public List<string> FavoritePromptTemplates { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("recentPromptTemplates")]
|
||||
public List<string> RecentPromptTemplates { get; set; } = new();
|
||||
|
||||
/// <summary>작업 폴더 경로. 빈 문자열이면 미선택.</summary>
|
||||
[JsonPropertyName("workFolder")]
|
||||
public string WorkFolder { get; set; } = "";
|
||||
@@ -596,7 +602,7 @@ public class LlmSettings
|
||||
/// <summary>
|
||||
/// 파일 접근 권한 수준.
|
||||
/// Default = 매번 확인 | AcceptEdits = 파일 편집 자동 허용 | Plan = 계획/승인 중심
|
||||
/// BypassPermissions = 모든 확인 생략 | DontAsk = 권한 질문 없이 진행 | Deny = 읽기 전용
|
||||
/// BypassPermissions = 모든 확인 생략 | Deny = 읽기 전용
|
||||
/// </summary>
|
||||
[JsonPropertyName("filePermission")]
|
||||
public string FilePermission { get; set; } = "Deny";
|
||||
|
||||
@@ -173,6 +173,9 @@ public class DraftQueueItem
|
||||
[JsonPropertyName("priority")]
|
||||
public string Priority { get; set; } = "next";
|
||||
|
||||
[JsonPropertyName("kind")]
|
||||
public string Kind { get; set; } = "message";
|
||||
|
||||
[JsonPropertyName("state")]
|
||||
public string State { get; set; } = "queued";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user