jettypod 4.4.10 → 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.
- package/apps/dashboard/README.md +36 -0
- package/apps/dashboard/app/favicon.ico +0 -0
- package/apps/dashboard/app/globals.css +122 -0
- package/apps/dashboard/app/layout.tsx +34 -0
- package/apps/dashboard/app/page.tsx +25 -0
- package/apps/dashboard/app/work/[id]/page.tsx +193 -0
- package/apps/dashboard/components/KanbanBoard.tsx +201 -0
- package/apps/dashboard/components/WorkItemTree.tsx +116 -0
- package/apps/dashboard/components.json +22 -0
- package/apps/dashboard/eslint.config.mjs +18 -0
- package/apps/dashboard/lib/db.ts +270 -0
- package/apps/dashboard/lib/utils.ts +6 -0
- package/apps/dashboard/next.config.ts +7 -0
- package/apps/dashboard/package.json +33 -0
- package/apps/dashboard/postcss.config.mjs +7 -0
- package/apps/dashboard/public/file.svg +1 -0
- package/apps/dashboard/public/globe.svg +1 -0
- package/apps/dashboard/public/next.svg +1 -0
- package/apps/dashboard/public/vercel.svg +1 -0
- package/apps/dashboard/public/window.svg +1 -0
- package/apps/dashboard/tsconfig.json +34 -0
- package/jettypod.js +41 -0
- package/lib/current-work.js +10 -18
- package/lib/migrations/016-workflow-checkpoints-table.js +70 -0
- package/lib/migrations/017-backfill-epic-id.js +54 -0
- package/lib/workflow-checkpoint.js +204 -0
- package/package.json +7 -2
- package/skills-templates/chore-mode/SKILL.md +3 -0
- package/skills-templates/epic-planning/SKILL.md +225 -154
- package/skills-templates/feature-planning/SKILL.md +172 -87
- package/skills-templates/speed-mode/SKILL.md +161 -338
- 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
|
|
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)
|