jettypod 4.4.40 → 4.4.41

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.40",
3
+ "version": "4.4.41",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {
@@ -720,11 +720,38 @@ jettypod work merge --release-lock
720
720
  jettypod work set-mode <feature-id> stable
721
721
  ```
722
722
 
723
- #### Step 7E: Invoke Stable Mode Skill
723
+ #### Step 7E: Start First Stable Chore and Invoke Stable Mode Skill
724
724
 
725
- **🛑 CRITICAL HANDOFF - You MUST invoke stable-mode using the Skill tool.**
725
+ **🛑 CRITICAL HANDOFF - You MUST start the first chore BEFORE invoking stable-mode.**
726
726
 
727
- **Display completion message:**
727
+ **1. Get the first stable chore:**
728
+
729
+ ```bash
730
+ sqlite3 .jettypod/work.db "SELECT id, title FROM work_items WHERE parent_id = <feature-id> AND type = 'chore' AND mode = 'stable' AND status != 'done' ORDER BY created_at LIMIT 1"
731
+ ```
732
+
733
+ **2. Start the first stable chore:**
734
+
735
+ ```bash
736
+ jettypod work start <first-stable-chore-id>
737
+ ```
738
+
739
+ **🛑 STOP AND CHECK:** Look at the output. You should see:
740
+ ```
741
+ ✅ Created worktree: /path/to/.jettypod-work/[id]-[title-slug]
742
+ ```
743
+
744
+ If you see `⚠️ Working in main repository (worktree creation failed)`, fix the issue before continuing.
745
+
746
+ **3. Verify worktree exists:**
747
+
748
+ ```bash
749
+ sqlite3 .jettypod/work.db "SELECT worktree_path FROM worktrees WHERE work_item_id = <first-stable-chore-id> AND status = 'active'"
750
+ ```
751
+
752
+ If empty, **STOP** - worktree wasn't created properly.
753
+
754
+ **4. Display completion message:**
728
755
 
729
756
  ```
730
757
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
@@ -740,20 +767,23 @@ What we accomplished:
740
767
  ✅ Created step definitions for stable scenarios
741
768
  ✅ Created [N] stable mode chores
742
769
  ✅ Feature mode set to stable
770
+ ✅ Started first stable chore #[id]
743
771
 
744
772
  🚀 Now invoking stable-mode skill...
745
773
  ```
746
774
 
747
- **Invoke stable-mode:**
775
+ **5. Invoke stable-mode:**
748
776
 
749
777
  ```
750
778
  Use the Skill tool with skill: "stable-mode"
751
779
  ```
752
780
 
753
- The stable-mode skill will:
754
- 1. Start the first stable chore automatically
755
- 2. Guide implementation to make stable scenarios pass
756
- 3. Continue with remaining stable chores
781
+ **🛑 CRITICAL:** You MUST:
782
+ 1. Run `work start` for the first stable chore
783
+ 2. Verify the worktree was created
784
+ 3. THEN invoke stable-mode using the Skill tool
785
+
786
+ If you skip `work start`, stable-mode will fail because no chore is in progress.
757
787
 
758
788
  **End speed-mode skill.**
759
789
 
@@ -768,6 +798,8 @@ Before ending speed-mode skill, ensure:
768
798
  - [ ] Step definitions created for stable scenarios
769
799
  - [ ] Stable mode chores created
770
800
  - [ ] Feature mode set to stable
801
+ - [ ] **First stable chore started with `work start`**
802
+ - [ ] **Worktree verified for first stable chore**
771
803
  - [ ] **stable-mode skill invoked using Skill tool**
772
804
 
773
805
  ---