jettypod 4.4.9 → 4.4.11

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.
Files changed (34) hide show
  1. package/apps/dashboard/README.md +36 -0
  2. package/apps/dashboard/app/favicon.ico +0 -0
  3. package/apps/dashboard/app/globals.css +122 -0
  4. package/apps/dashboard/app/layout.tsx +34 -0
  5. package/apps/dashboard/app/page.tsx +25 -0
  6. package/apps/dashboard/app/work/[id]/page.tsx +193 -0
  7. package/apps/dashboard/components/KanbanBoard.tsx +201 -0
  8. package/apps/dashboard/components/WorkItemTree.tsx +116 -0
  9. package/apps/dashboard/components.json +22 -0
  10. package/apps/dashboard/eslint.config.mjs +18 -0
  11. package/apps/dashboard/lib/db.ts +270 -0
  12. package/apps/dashboard/lib/utils.ts +6 -0
  13. package/apps/dashboard/next.config.ts +7 -0
  14. package/apps/dashboard/package.json +33 -0
  15. package/apps/dashboard/postcss.config.mjs +7 -0
  16. package/apps/dashboard/public/file.svg +1 -0
  17. package/apps/dashboard/public/globe.svg +1 -0
  18. package/apps/dashboard/public/next.svg +1 -0
  19. package/apps/dashboard/public/vercel.svg +1 -0
  20. package/apps/dashboard/public/window.svg +1 -0
  21. package/apps/dashboard/tsconfig.json +34 -0
  22. package/claude-hooks/enforce-skill-activation.js +225 -0
  23. package/jettypod.js +53 -0
  24. package/lib/current-work.js +10 -18
  25. package/lib/migrations/016-workflow-checkpoints-table.js +70 -0
  26. package/lib/migrations/017-backfill-epic-id.js +54 -0
  27. package/lib/planning-status.js +68 -0
  28. package/lib/workflow-checkpoint.js +204 -0
  29. package/package.json +7 -2
  30. package/skills-templates/chore-mode/SKILL.md +3 -0
  31. package/skills-templates/epic-planning/SKILL.md +225 -154
  32. package/skills-templates/feature-planning/SKILL.md +172 -87
  33. package/skills-templates/speed-mode/SKILL.md +161 -338
  34. package/skills-templates/stable-mode/SKILL.md +8 -2
@@ -506,6 +506,9 @@ More stable mode chores remain. Starting next chore:
506
506
  # Commit changes in the worktree
507
507
  git add . && git commit -m "feat: [brief description of error handling added]"
508
508
 
509
+ # Switch to main repo before merging (merge cannot run from inside worktree)
510
+ cd $(git rev-parse --git-common-dir)/..
511
+
509
512
  # Merge current chore - this automatically marks it as done
510
513
  jettypod work merge
511
514
 
@@ -517,7 +520,7 @@ jettypod work start [next-chore-id]
517
520
  - ❌ DO NOT use `jettypod work status <id> done`
518
521
  - ❌ DO NOT use `jettypod work complete <id>`
519
522
  - ❌ DO NOT use `jettypod work set-mode <id> done`
520
- - ✅ ONLY use `jettypod work merge`
523
+ - ✅ ONLY use `jettypod work merge` (from main repo, not worktree)
521
524
 
522
525
  The merge command handles everything: pushes branch, merges to main, marks chore done, cleans up worktree.
523
526
 
@@ -614,8 +617,9 @@ git commit -m "feat: [brief description of what was implemented]"
614
617
  git push
615
618
  ```
616
619
 
617
- Then use the merge command to merge to main (which auto-marks chore as done via post-merge hook):
620
+ Then switch to main repo and use the merge command (which auto-marks chore as done):
618
621
  ```bash
622
+ cd $(git rev-parse --git-common-dir)/.. # Switch to main repo
619
623
  jettypod work merge
620
624
  ```
621
625
 
@@ -662,6 +666,7 @@ After completing EACH stable chore:
662
666
  ```bash
663
667
  # Complete chore #1854
664
668
  git add . && git commit -m "feat: [description]"
669
+ cd $(git rev-parse --git-common-dir)/.. # Switch to main repo
665
670
  jettypod work merge # Automatically pushes, merges, and cleans up
666
671
 
667
672
  # NOW start chore #1855 (main has #1854's changes)
@@ -669,6 +674,7 @@ jettypod work start 1855
669
674
 
670
675
  # Complete chore #1855
671
676
  git add . && git commit -m "feat: [description]"
677
+ cd $(git rev-parse --git-common-dir)/.. # Switch to main repo
672
678
  jettypod work merge # Automatically pushes, merges, and cleans up
673
679
 
674
680
  # NOW start chore #1856 (main has #1854 + #1855's changes)