fix: .gitignore에서 .agent/ 트래킹 + 테스트 절대경로 제거 (이식성 보장)

This commit is contained in:
quantlab
2026-03-06 17:58:11 +09:00
parent b6ed432fe3
commit 5a931a5480
11 changed files with 425 additions and 7 deletions

47
.agent/workflows/git.md Normal file
View File

@@ -0,0 +1,47 @@
---
description: Git 및 Gitea 워크플로우
---
## 저장소 정보
- **Remote**: https://git.variet.net/Variet/variet-agent.git
- **기본 브랜치**: main
- **Vikunja 프로젝트**: https://plan.variet.net/projects/7
## 커밋 컨벤션
```
feat: 새 기능
fix: 버그 수정
docs: 문서 변경
refactor: 리팩토링
test: 테스트 추가/수정
chore: 빌드/설정 변경
```
## 작업 흐름
1. 브랜치 생성
// turbo
```
git checkout -b feat/feature-name
```
2. 커밋
// turbo
```
git add -A && git commit -m "feat: description"
```
3. 푸시
```
git push origin feat/feature-name
```
4. Gitea에서 PR 생성 또는 API로 자동 생성
## Wiki 업데이트
작업 완료 시 Gitea Wiki에 관련 내용 업데이트.
Wiki 구조:
- Home: 프로젝트 개요
- Architecture: 아키텍처 설명
- Design-Decisions: 설계 결정 이유
- Changelog: 버전별 변경 이력