@su-record/vibe 2.5.14 → 2.5.15

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.
@@ -707,10 +707,10 @@ If score is below 95, attempt automatic fixes:
707
707
  **3-Round Review Process (MANDATORY):**
708
708
 
709
709
  ```
710
- round_count = 0
710
+ # 🚨 CRITICAL: This is a FOR loop, NOT a WHILE loop with early exit
711
+ # You MUST complete all 3 rounds regardless of feedback
711
712
 
712
- WHILE round_count < 3:
713
- round_count += 1
713
+ FOR round_count IN [1, 2, 3]: # EXACTLY 3 rounds, NO early exit
714
714
 
715
715
  print(f"━━━ Round {round_count}/3 ━━━")
716
716
 
@@ -718,27 +718,27 @@ WHILE round_count < 3:
718
718
  gpt_result = Bash("node llm-orchestrate.js gpt ...")
719
719
  gemini_result = Bash("node llm-orchestrate.js gemini ...")
720
720
 
721
- # 2. Merge and apply feedback
721
+ # 2. Merge and apply feedback (even if "no issues", still run next round)
722
722
  apply_feedback(gpt_result, gemini_result)
723
723
  update_spec()
724
724
 
725
725
  # 3. Show progress
726
726
  print(f"✅ Round {round_count}/3 complete")
727
727
 
728
- # 4. Early exit ONLY if BOTH models say "no issues"
729
- IF gpt_result.no_issues AND gemini_result.no_issues:
730
- print("Both models: no issues found. Stopping early.")
731
- BREAK
728
+ # 4. NO EARLY EXIT - continue to next round
729
+ # Even if both say "no issues", proceed to next round for verification
732
730
 
733
- print(f"🎉 Review complete! Total rounds: {round_count}")
731
+ # After ALL 3 rounds complete:
732
+ print(f"🎉 Review complete! All 3 rounds finished.")
734
733
  ```
735
734
 
736
- **🚨 RULES:**
737
- 1. **ALWAYS start Round 1** - never skip
738
- 2. **ALWAYS continue to Round 2** unless both models return "no issues"
739
- 3. **ALWAYS continue to Round 3** unless both models return "no issues" in Round 2
740
- 4. **MUST show "Round X/3"** in output for each round
741
- 5. **Early exit ONLY when BOTH GPT AND Gemini say "no issues"**
735
+ **🚨 ABSOLUTE RULES (NO EXCEPTIONS):**
736
+ 1. **MUST complete Round 1** - never skip
737
+ 2. **MUST complete Round 2** - even if Round 1 had no issues
738
+ 3. **MUST complete Round 3** - even if Round 1 and 2 had no issues
739
+ 4. **MUST show "Round X/3"** in output for EACH round
740
+ 5. **NO EARLY EXIT** - all 3 rounds are mandatory for quality assurance
741
+ 6. **VIOLATION = SPEC NOT COMPLETE** - if less than 3 rounds, SPEC is invalid
742
742
 
743
743
  **Output format for each round:**
744
744
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@su-record/vibe",
3
- "version": "2.5.14",
3
+ "version": "2.5.15",
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",