에이전트 도구의 로컬 상태 파일을 gitignore에 추가한다

.ua/와 skills-lock.json은 에이전트 도구가 작업 중 로컬에 만드는
파일이다. 개발자마다 내용이 달라지고 저장소 산출물이 아니므로
공유하지 않는다. 지금은 untracked로 남아 git status를 계속 채운다.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
2026-09-15 17:26:06 +09:00
parent 4e4c341f5d
commit 5d8d004f93

4
.gitignore vendored
View File

@@ -21,6 +21,10 @@ AGENTS.md
# 결정은 docs/decisions/의 ADR에, 규칙은 계약 테스트에 남긴다(AGENTS.md 4절). # 결정은 docs/decisions/의 ADR에, 규칙은 계약 테스트에 남긴다(AGENTS.md 4절).
docs/superpowers/ docs/superpowers/
# 에이전트 도구가 로컬에 만드는 상태 파일. 개발자마다 달라지므로 공유하지 않는다.
.ua/
skills-lock.json
# Local configuration and secrets # Local configuration and secrets
.env .env
.env.* .env.*