@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.
- package/commands/vibe.spec.md +15 -15
- package/package.json +1 -1
package/commands/vibe.spec.md
CHANGED
|
@@ -707,10 +707,10 @@ If score is below 95, attempt automatic fixes:
|
|
|
707
707
|
**3-Round Review Process (MANDATORY):**
|
|
708
708
|
|
|
709
709
|
```
|
|
710
|
-
|
|
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
|
-
|
|
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.
|
|
729
|
-
|
|
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
|
-
|
|
731
|
+
# After ALL 3 rounds complete:
|
|
732
|
+
print(f"🎉 Review complete! All 3 rounds finished.")
|
|
734
733
|
```
|
|
735
734
|
|
|
736
|
-
**🚨 RULES:**
|
|
737
|
-
1. **
|
|
738
|
-
2. **
|
|
739
|
-
3. **
|
|
740
|
-
4. **MUST show "Round X/3"** in output for
|
|
741
|
-
5. **
|
|
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
|
|