jettypod 4.4.3 → 4.4.5

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/jettypod.js CHANGED
@@ -86,7 +86,9 @@ function ensureJettypodGitignores() {
86
86
  const entriesToIgnore = [
87
87
  '.claude/session.md',
88
88
  '.jettypod-work/',
89
- '.jettypod-trash/'
89
+ '.jettypod-trash/',
90
+ '.jettypod/*.db-shm',
91
+ '.jettypod/*.db-wal'
90
92
  ];
91
93
 
92
94
  // Add entries to .gitignore if not present
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jettypod",
3
- "version": "4.4.3",
3
+ "version": "4.4.5",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {
@@ -24,7 +24,7 @@ You'll receive context about the epic being planned. Review:
24
24
 
25
25
  **Check for existing features:**
26
26
  ```bash
27
- node jettypod.js backlog | grep -A 20 "Epic Name"
27
+ jettypod backlog | grep -A 20 "Epic Name"
28
28
  ```
29
29
 
30
30
  If features already exist, acknowledge them and skip to Step 4 (Architectural Decision).
@@ -165,15 +165,15 @@ Use the Bash tool to create each feature. Replace `<EPIC_ID>` with the actual ep
165
165
 
166
166
  ```javascript
167
167
  // CORRECT - uses actual numeric epic ID:
168
- node jettypod.js work create feature "Live cursor tracking" "Track cursor positions in real-time" --parent=5
168
+ jettypod work create feature "Live cursor tracking" "Track cursor positions in real-time" --parent=5
169
169
 
170
170
  // WRONG - missing parent flag (feature won't be under epic):
171
- node jettypod.js work create feature "Live cursor tracking" "Track cursor positions in real-time"
171
+ jettypod work create feature "Live cursor tracking" "Track cursor positions in real-time"
172
172
  ```
173
173
 
174
174
  For each feature, execute:
175
175
  ```bash
176
- node jettypod.js work create feature "<Title>" "<Description>" --parent=<EPIC_ID>
176
+ jettypod work create feature "<Title>" "<Description>" --parent=<EPIC_ID>
177
177
  ```
178
178
 
179
179
  Display to user as you create each one:
@@ -203,7 +203,7 @@ Does this rationale capture why you chose this approach? (You can edit it if nee
203
203
 
204
204
  ```javascript
205
205
  // Use Bash tool to execute:
206
- node jettypod.js work epic-implement [epic-id] \
206
+ jettypod work epic-implement [epic-id] \
207
207
  --aspect="Architecture" \
208
208
  --decision="[architectural approach chosen]" \
209
209
  --rationale="[user's confirmed/edited rationale]"
@@ -335,7 +335,7 @@ Wait for final "yes" confirmation.
335
335
  Only after receiving explicit "yes" confirmation, execute the transition using the Bash tool:
336
336
 
337
337
  ```bash
338
- node jettypod.js project external
338
+ jettypod project external
339
339
  ```
340
340
 
341
341
  ### Step 10: Report Results
@@ -427,7 +427,7 @@ Does this rationale capture why you chose this approach? (You can edit it if nee
427
427
 
428
428
  ```bash
429
429
  # Use Bash tool to execute:
430
- node jettypod.js work implement [feature-id] \
430
+ jettypod work implement [feature-id] \
431
431
  --winner="[approach-name or prototypes/winner-file]" \
432
432
  --rationale="[user's confirmed/edited rationale]"
433
433
  ```
@@ -442,7 +442,7 @@ For each chore that the user confirmed in Step 7, use the Bash tool to create it
442
442
 
443
443
  ```bash
444
444
  # Use Bash tool to execute for each chore:
445
- node jettypod.js work create chore "[Chore title]" "[Chore description with all the implementation guidance]" --parent=[feature-id]
445
+ jettypod work create chore "[Chore title]" "[Chore description with all the implementation guidance]" --parent=[feature-id]
446
446
  ```
447
447
 
448
448
  **Build the description from your Step 7 proposal:**
@@ -199,16 +199,16 @@ Speed mode is ONLY a checkpoint to prove functionality works. Features are INCOM
199
199
  **Required workflow after speed mode implementation:**
200
200
 
201
201
  1. ✅ **Complete ALL speed mode chores** - Implement all success scenarios (required + optional features)
202
- 2. ✅ **Elevate to stable mode** - Use `node jettypod.js work set-mode <feature-id> stable` to auto-generate stable mode chores
202
+ 2. ✅ **Elevate to stable mode** - Use `jettypod work set-mode <feature-id> stable` to auto-generate stable mode chores
203
203
  3. ✅ **Implement stable mode chores** - Add error handling and edge cases
204
204
  4. ❌ **NEVER mark feature complete in speed mode** - This bypasses critical quality gates
205
205
 
206
206
  **If you attempt to mark a feature complete while in speed mode, the system will block you with an error.**
207
207
 
208
208
  The validation will require you to:
209
- - Elevate to stable mode: `node jettypod.js work set-mode <feature-id> stable`
209
+ - Elevate to stable mode: `jettypod work set-mode <feature-id> stable`
210
210
  - This will automatically analyze the implementation and generate appropriate stable mode chores
211
- - Or explicitly skip (not recommended): `node jettypod.js work set-mode <feature-id> stable --force`
211
+ - Or explicitly skip (not recommended): `jettypod work set-mode <feature-id> stable --force`
212
212
 
213
213
  **Remember:** Speed mode makes it work (all success scenarios). Stable mode makes it robust (handles failures).
214
214
 
@@ -549,7 +549,7 @@ grep -A1 "<project_state>" "$(git rev-parse --show-toplevel)/CLAUDE.md" | tail -
549
549
 
550
550
  Mark the feature as done:
551
551
  ```bash
552
- node jettypod.js work status [feature-id] done
552
+ jettypod work status [feature-id] done
553
553
  ```
554
554
 
555
555
  Display: