fix: portability - remove hardcoded paths, add missing workflows
This commit is contained in:
45
.agents/workflows/start.md
Normal file
45
.agents/workflows/start.md
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
description: 세션 시작 시 프로젝트 맥락을 빠르게 복구하는 워크플로우
|
||||
---
|
||||
|
||||
# 세션 시작 프로토콜
|
||||
|
||||
새 대화 시작, "continue", "이어서", "작업 시작" 등 요청 시 이 워크플로우를 실행합니다.
|
||||
|
||||
// turbo-all
|
||||
|
||||
## 절차
|
||||
|
||||
### 1. Git 상태 확인
|
||||
|
||||
```powershell
|
||||
git status --short
|
||||
```
|
||||
```powershell
|
||||
git log --oneline -5
|
||||
```
|
||||
|
||||
### 2. Vikunja TODO 태스크
|
||||
|
||||
```powershell
|
||||
python .agents\workflows\vikunja_helper.py list todo
|
||||
```
|
||||
|
||||
### 3. Wiki 아키텍처 확인 (필요 시)
|
||||
|
||||
```powershell
|
||||
python .agents\workflows\wiki_helper.py read "Architecture"
|
||||
```
|
||||
|
||||
### 4. 종합 보고
|
||||
|
||||
결과를 종합하여 사용자에게 보고:
|
||||
- 마지막 커밋 + 미완료 태스크
|
||||
- TODO 태스크 목록 (라벨 + 우선순위)
|
||||
- 다음 작업 제안
|
||||
|
||||
**우선순위 판단 기준:**
|
||||
- P0: CDP 연결 관련 (Antigravity 연결이 안되면 전체 기능 불가)
|
||||
- P1: 서버/WebSocket 통신 장애
|
||||
- P2: 기능 미완성/UX 개선
|
||||
- P3: 문서, 코드 정리
|
||||
Reference in New Issue
Block a user