jettypod 4.4.42 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jettypod",
3
- "version": "4.4.42",
3
+ "version": "4.4.43",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {
@@ -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