docs: initial AI agent universal workflow system

This commit is contained in:
2026-03-08 07:54:54 +09:00
commit 2e0a1e37e4
10 changed files with 536 additions and 0 deletions

54
.agents/workflows/end.md Normal file
View File

@@ -0,0 +1,54 @@
---
description: 세션 종료 시 학습 기록 + git commit (끝, 마무리, 커밋해, 완료)
---
# 세션 종료 프로토콜
작업 완료, "끝", "마무리", "커밋해" 등 요청 시 이 워크플로우를 실행합니다.
// turbo-all
## 0. 학습 기록 (실패/시행착오 저장)
이번 세션에서 발생한 실패, 시행착오, 새로 알게 된 사실을 정리합니다:
- [ ] `known-issues.md`에 추가할 항목이 있는지 확인
- [ ] 있다면 `.agents/references/known-issues.md`에 표준 포맷으로 추가:
```markdown
### [날짜] [키워드] — 한줄 요약
- **증상**: ...
- **원인**: ...
- **해결**: ...
- **주의**: ...
```
## 1. Git Commit & Push
```powershell
git add -A
git status --short
```
```powershell
git commit -m "커밋 메시지"
```
```powershell
git push origin main
```
**커밋 메시지 컨벤션:**
```
<type>(<scope>): <description>
type: feat|fix|refactor|test|docs|chore|ci|infra
scope: (선택 — 모듈명 등)
```
## 2. 최종 체크리스트
- [ ] known-issues 업데이트 완료
- [ ] git push 완료
- [ ] 사용자에게 완료 보고
> [!TIP]
> 프로젝트별 워크플로우(Vikunja 동기화, Wiki 업데이트 등)가 있다면 여기에 단계를 추가하세요.