feat: add complete project init templates (Vikunja, Gitea, Wiki helpers)

This commit is contained in:
2026-03-08 08:09:25 +09:00
parent 2e0a1e37e4
commit 19795bd7ac
8 changed files with 613 additions and 16 deletions

View File

@@ -8,12 +8,14 @@ description: 세션 시작 시 프로젝트 맥락을 빠르게 복구하는 워
// turbo-all
## 0. 에이전트 룰 로딩
## 절차
### 0. 에이전트 룰 & 맥락 로딩 (자동)
`.agents/AGENT.md`를 읽고 에이전트 행동 규칙을 로딩합니다.
`.agents/references/known-issues.md`를 읽어 최근 이슈를 파악합니다.
## 1. Git 상태 확인
### 1. Git 상태 확인
```powershell
git status --short
@@ -22,16 +24,28 @@ git status --short
git log --oneline -5
```
## 2. 프로젝트 레퍼런스 확인
### 2. Vikunja TODO 태스크
`.agents/references/` 디렉토리의 문서들을 스캔하여 프로젝트 맥락을 파악합니다.
```powershell
python .agents\workflows\helpers\vikunja_helper.py list todo
```
## 3. 종합 보고
### 3. Wiki 아키텍처 확인 (필요 시)
```powershell
python .agents\workflows\helpers\wiki_helper.py read "Architecture"
```
### 4. 종합 보고
결과를 종합하여 사용자에게 보고:
- 마지막 커밋 + 변경 사항
- 마지막 커밋 + 미완료 태스크
- known-issues에서 최근 추가된 항목
- TODO 태스크 목록 (라벨 + 우선순위)
- 다음 작업 제안
> [!TIP]
> 프로젝트별 워크플로우(Vikunja, Gitea 등)가 있다면 여기에 단계를 추가하세요.
**우선순위 판단 기준:**
- P0: 핵심 기능 연결 관련 (전체 기능 불가)
- P1: 서버/통신 장애
- P2: 기능 미완성/UX 개선
- P3: 문서, 코드 정리