@su-record/vibe 2.4.71 → 2.4.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -565,41 +565,46 @@ Self-evaluate against `~/.claude/vibe/rules/quality/checklist.md` (0-100 score)
565
565
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
566
566
  ```
567
567
 
568
- **MUST: SPEC 리뷰 (필수)**
568
+ **MUST: SPEC 리뷰 (필수) - GPT + Gemini 병렬 실행**
569
569
 
570
- Gemini 또는 GPT 활성화된 경우, **반드시** Bash로 훅 스크립트 호출:
570
+ 🚨 **품질보장을 위해 GPT Gemini를 병렬로 실행하여 교차 검증**
571
571
 
572
- **GPT로 리뷰 (우선):**
572
+ **병렬 실행 (2개의 Bash 호출을 동시에):**
573
573
 
574
574
  ```bash
575
- # Windows
575
+ # GPT 리뷰 (코드 패턴, 아키텍처 관점)
576
576
  node "$APPDATA/vibe/hooks/scripts/llm-orchestrate.js" gpt orchestrate-json "Review SPEC for [기능명]. Stack: [스택]. Summary: [요약]. Check: completeness, error handling, security, edge cases."
577
577
 
578
- # macOS/Linux
579
- node ~/.config/vibe/hooks/scripts/llm-orchestrate.js gpt orchestrate-json "Review SPEC for [기능명]. Stack: [스택]. Summary: [요약]. Check: completeness, error handling, security, edge cases."
580
-
581
- # 커스텀 시스템 프롬프트 사용 시
582
- node "$APPDATA/vibe/hooks/scripts/llm-orchestrate.js" gpt orchestrate-json "You are a SPEC reviewer" "[질문]"
578
+ # Gemini 리뷰 (최신 문서, 베스트 프랙티스 관점)
579
+ node "$APPDATA/vibe/hooks/scripts/llm-orchestrate.js" gemini orchestrate-json "Review SPEC for [기능명]. Stack: [스택]. Summary: [요약]. Check: completeness, error handling, security, edge cases."
583
580
  ```
584
581
 
585
- **Gemini로 리뷰 (GPT 실패 시):**
582
+ **macOS/Linux:**
586
583
 
587
584
  ```bash
588
- # Windows
589
- node "$APPDATA/vibe/hooks/scripts/llm-orchestrate.js" gemini orchestrate-json "Review SPEC for [기능명]. Stack: [스택]. Summary: [요약]. Check: completeness, error handling, security, edge cases."
585
+ # GPT 리뷰
586
+ node ~/.config/vibe/hooks/scripts/llm-orchestrate.js gpt orchestrate-json "Review SPEC for [기능명]. Stack: [스택]. Summary: [요약]. Check: completeness, error handling, security, edge cases."
590
587
 
591
- # macOS/Linux
588
+ # Gemini 리뷰
592
589
  node ~/.config/vibe/hooks/scripts/llm-orchestrate.js gemini orchestrate-json "Review SPEC for [기능명]. Stack: [스택]. Summary: [요약]. Check: completeness, error handling, security, edge cases."
593
590
  ```
594
591
 
595
592
  **중요:**
596
593
 
597
- - Windows: `$APPDATA/vibe/hooks/scripts/` (Git Bash/PowerShell)
598
- - macOS/Linux: `~/.config/vibe/hooks/scripts/`
594
+ - **반드시 GPT와 Gemini 둘 다 호출** (병렬 실행)
595
+ - 모델의 피드백을 병합하여 SPEC에 반영
596
+ - 한 모델 실패 시 나머지 결과만 반영
599
597
  - SPEC 전체를 보내지 말고 **핵심 요약**만 전송 (토큰 절약)
600
598
  - JSON 응답을 파싱하여 SPEC에 자동 반영
601
599
 
602
- **우선순위:** GPT 먼저 시도 → 실패 시 Gemini 시도 → 둘 다 실패 시 스킵
600
+ **병렬 실행 이유:**
601
+
602
+ | 모델 | 강점 |
603
+ |------|------|
604
+ | GPT | 코드 패턴, 아키텍처, 로직 검증 |
605
+ | Gemini | 최신 웹 정보, 문서 검색, 베스트 프랙티스 |
606
+
607
+ **결과 병합:** 두 모델의 피드백을 합쳐서 더 철저한 리뷰
603
608
 
604
609
  **리뷰 항목:**
605
610
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.4.71",
3
+ "version": "2.4.72",
4
4
  "description": "Vibe - Claude Code exclusive SPEC-driven AI coding framework with 35+ integrated tools",
5
5
  "type": "module",
6
6
  "main": "dist/cli/index.js",