jettypod 4.4.41 → 4.4.43
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/package.json
CHANGED
|
@@ -465,6 +465,8 @@ git commit -m "test: Add BDD scenarios for ${FEATURE_TITLE}
|
|
|
465
465
|
|
|
466
466
|
- Feature file: features/${FEATURE_SLUG}.feature
|
|
467
467
|
- Step definitions for speed mode scenarios"
|
|
468
|
+
|
|
469
|
+
git push
|
|
468
470
|
```
|
|
469
471
|
|
|
470
472
|
Replace `${FEATURE_SLUG}` and `${FEATURE_TITLE}` with actual values. Example:
|
|
@@ -474,12 +476,15 @@ git commit -m "test: Add BDD scenarios for Email Password Login
|
|
|
474
476
|
|
|
475
477
|
- Feature file: features/email-password-login.feature
|
|
476
478
|
- Step definitions for speed mode scenarios"
|
|
479
|
+
|
|
480
|
+
git push
|
|
477
481
|
```
|
|
478
482
|
|
|
479
483
|
**Why this matters:**
|
|
480
484
|
- Worktrees are created from the current branch (usually main)
|
|
481
485
|
- If BDD files aren't committed, they won't exist in the worktree
|
|
482
486
|
- Speed-mode will fail trying to run tests against non-existent files
|
|
487
|
+
- **Push is required** so other assistants/machines have the latest main
|
|
483
488
|
|
|
484
489
|
**Proceed to Step 7.**
|
|
485
490
|
|
|
@@ -659,7 +659,23 @@ EOF
|
|
|
659
659
|
|
|
660
660
|
**4. Create step definitions** at `features/step_definitions/<feature-slug>-stable.steps.js`
|
|
661
661
|
|
|
662
|
-
**5.
|
|
662
|
+
**5. Commit BDD files immediately:**
|
|
663
|
+
|
|
664
|
+
```bash
|
|
665
|
+
git add features/
|
|
666
|
+
git commit -m "test: Add stable mode BDD scenarios and step definitions
|
|
667
|
+
|
|
668
|
+
Added error handling and edge case scenarios for stable mode.
|
|
669
|
+
- [N] new stable mode scenarios
|
|
670
|
+
- Step definitions for validation and error handling"
|
|
671
|
+
|
|
672
|
+
git push
|
|
673
|
+
```
|
|
674
|
+
|
|
675
|
+
**🛑 CRITICAL:** Commit IMMEDIATELY after generating files. Do NOT wait for user confirmation.
|
|
676
|
+
Other assistants may be working in parallel - uncommitted files will block their merges.
|
|
677
|
+
|
|
678
|
+
**6. Present proposal to user:**
|
|
663
679
|
|
|
664
680
|
```
|
|
665
681
|
📋 Stable Mode Transition
|
|
@@ -695,26 +711,13 @@ jettypod work create chore "[Chore title]" "[Description with scenarios addresse
|
|
|
695
711
|
|
|
696
712
|
Repeat for each confirmed chore.
|
|
697
713
|
|
|
698
|
-
**2.
|
|
699
|
-
|
|
700
|
-
```bash
|
|
701
|
-
git add features/
|
|
702
|
-
git commit -m "test: Add stable mode BDD scenarios and step definitions
|
|
703
|
-
|
|
704
|
-
Added error handling and edge case scenarios for stable mode.
|
|
705
|
-
- [N] new stable mode scenarios
|
|
706
|
-
- Step definitions for validation and error handling"
|
|
707
|
-
|
|
708
|
-
git push
|
|
709
|
-
```
|
|
710
|
-
|
|
711
|
-
**3. Release merge lock:**
|
|
714
|
+
**2. Release merge lock:**
|
|
712
715
|
|
|
713
716
|
```bash
|
|
714
717
|
jettypod work merge --release-lock
|
|
715
718
|
```
|
|
716
719
|
|
|
717
|
-
**
|
|
720
|
+
**3. Set feature mode to stable:**
|
|
718
721
|
|
|
719
722
|
```bash
|
|
720
723
|
jettypod work set-mode <feature-id> stable
|