- Belkin & Suchower (1998) credit cycle index (Zt) estimation via WLS - Vasicek single-factor conditional PD/TM model - Macro-Zt OLS regression with stepwise variable selection - 3-scenario (boom/neutral/recession) 50yr PD projection - Statistical validation suite (ADF, Ljung-Box, R2, ARCH) - BOK ECOS API integration with fallback data - Visualization module (7 chart types) - Detailed theoretical methodology docs/methodology.md
42 lines
1.1 KiB
Markdown
42 lines
1.1 KiB
Markdown
---
|
|
description: Vikunja API로 프로젝트 태스크 현황을 조회하는 워크플로우
|
|
---
|
|
|
|
# Vikunja 태스크 현황 조회
|
|
|
|
서비스 정보는 `.agents/workflows/services.md` 참조.
|
|
|
|
// turbo-all
|
|
|
|
## 절차
|
|
|
|
1. 전체 목록:
|
|
```powershell
|
|
python .agents\workflows\helpers\vikunja_helper.py list
|
|
```
|
|
|
|
2. TODO만:
|
|
```powershell
|
|
python .agents\workflows\helpers\vikunja_helper.py list todo
|
|
```
|
|
|
|
3. DONE만:
|
|
```powershell
|
|
python .agents\workflows\helpers\vikunja_helper.py list done
|
|
```
|
|
|
|
4. 태스크 완료 처리 (**⚠️ 반드시 이 방법 사용 — 직접 API 호출 금지**):
|
|
```powershell
|
|
python .agents\workflows\helpers\vikunja_helper.py done {TASK_ID}
|
|
```
|
|
|
|
5. 새 태스크 생성:
|
|
```powershell
|
|
python .agents\workflows\helpers\vikunja_helper.py create "제목" "설명" --labels Backend,Priority:High
|
|
```
|
|
|
|
> [!CAUTION]
|
|
> **절대로** `Invoke-RestMethod -Method Post -Body '{"done": true}'` 같은 직접 API 호출을 사용하지 마세요.
|
|
> Vikunja API는 POST 시 body에 포함되지 않은 필드를 빈값으로 덮어씁니다.
|
|
> `vikunja_helper.py`는 항상 GET → 기존 필드 보존 → POST 패턴을 사용합니다.
|