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

View File

@@ -0,0 +1,37 @@
---
description: 세션 시작 시 프로젝트 맥락을 빠르게 복구하는 워크플로우 (시작, continue, 이어서, 작업 시작)
---
# 세션 시작 프로토콜
새 대화 시작, "continue", "이어서", "작업 시작" 등 요청 시 이 워크플로우를 실행합니다.
// turbo-all
## 0. 에이전트 룰 로딩
`.agents/AGENT.md`를 읽고 에이전트 행동 규칙을 로딩합니다.
`.agents/references/known-issues.md`를 읽어 최근 이슈를 파악합니다.
## 1. Git 상태 확인
```powershell
git status --short
```
```powershell
git log --oneline -5
```
## 2. 프로젝트 레퍼런스 확인
`.agents/references/` 디렉토리의 문서들을 스캔하여 프로젝트 맥락을 파악합니다.
## 3. 종합 보고
결과를 종합하여 사용자에게 보고:
- 마지막 커밋 + 변경 사항
- known-issues에서 최근 추가된 항목
- 다음 작업 제안
> [!TIP]
> 프로젝트별 워크플로우(Vikunja, Gitea 등)가 있다면 여기에 단계를 추가하세요.