jettypod 4.4.68 → 4.4.70

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.
@@ -1708,12 +1708,15 @@ async function mergeWork(options = {}) {
1708
1708
 
1709
1709
  console.log(`✅ Work item #${currentWork.id} marked as done`);
1710
1710
 
1711
- // Instruct user to cleanup worktree separately
1711
+ // Instruct user to cleanup worktree separately - be aggressive so AI doesn't forget
1712
1712
  if (worktree && worktree.worktree_path && fs.existsSync(worktree.worktree_path)) {
1713
1713
  console.log('');
1714
- console.log('📁 Worktree preserved. To clean up:');
1714
+ console.log('⚠️ CLEANUP REQUIRED - Run these commands NOW:');
1715
+ console.log('');
1715
1716
  console.log(` cd ${gitRoot}`);
1716
1717
  console.log(` jettypod work cleanup ${currentWork.id}`);
1718
+ console.log('');
1719
+ console.log(' Worktrees accumulate until cleaned up.');
1717
1720
  }
1718
1721
 
1719
1722
  if (withTransition) {
@@ -2002,12 +2005,15 @@ async function testsMerge(featureId) {
2002
2005
  console.log('');
2003
2006
  console.log(`✅ Test worktree for feature #${featureId} merged successfully`);
2004
2007
 
2005
- // Instruct user to cleanup worktree separately
2008
+ // Instruct user to cleanup worktree separately - be aggressive so AI doesn't forget
2006
2009
  if (fs.existsSync(worktreePath)) {
2007
2010
  console.log('');
2008
- console.log('📁 Worktree preserved. To clean up:');
2011
+ console.log('⚠️ CLEANUP REQUIRED - Run these commands NOW:');
2012
+ console.log('');
2009
2013
  console.log(` cd ${gitRoot}`);
2010
2014
  console.log(` jettypod work cleanup ${featureId}`);
2015
+ console.log('');
2016
+ console.log(' Worktrees accumulate until cleaned up.');
2011
2017
  }
2012
2018
 
2013
2019
  return Promise.resolve();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jettypod",
3
- "version": "4.4.68",
3
+ "version": "4.4.70",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {
@@ -35,6 +35,7 @@
35
35
  "test:unit:watch": "NODE_ENV=test jest --watch",
36
36
  "test:cleanup": "node scripts/test-cleanup.js",
37
37
  "prepublishOnly": "echo '🔄 Syncing skills to templates...' && cp -r .claude/skills/* skills-templates/ && echo '✅ Skills synced' && echo '🔨 Building dashboard...' && cd apps/dashboard && npm install && npm run build && echo '✅ Dashboard built'",
38
+ "postpublish": "git push origin main --tags && echo '✅ Pushed version commit and tags'",
38
39
  "dashboard": "npm run dev --prefix apps/dashboard",
39
40
  "dashboard:build": "npm run build --prefix apps/dashboard",
40
41
  "dashboard:start": "npm run start --prefix apps/dashboard"