jettypod 4.4.97 → 4.4.98

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 (2) hide show
  1. package/jettypod.js +10 -3
  2. package/package.json +1 -1
package/jettypod.js CHANGED
@@ -1310,12 +1310,19 @@ switch (command) {
1310
1310
  // Check if there are any changes to commit
1311
1311
  const status = execSync('git status --porcelain', { encoding: 'utf-8' });
1312
1312
  if (status.trim()) {
1313
- execSync('git add -A', { stdio: 'ignore' });
1314
- execSync('git commit -m "chore: jettypod update - refresh skills and hooks"', { stdio: 'ignore' });
1313
+ execSync('git add -A');
1314
+ // Use --no-verify to bypass pre-commit hooks - this is an automated system update
1315
+ execSync('git commit --no-verify -m "chore: jettypod update - refresh skills and hooks"');
1315
1316
  console.log('✅ Update changes committed');
1316
1317
  }
1317
1318
  } catch (err) {
1318
- // Commit may fail if not in a git repo or nothing to commit - that's ok
1319
+ // Log the error so users know what happened
1320
+ console.log('');
1321
+ console.log('⚠️ Could not auto-commit skill updates');
1322
+ console.log(' Reason:', err.message.split('\n')[0]);
1323
+ console.log('');
1324
+ console.log(' You may have untracked changes in .claude/skills/');
1325
+ console.log(' Run: git add .claude && git commit -m "chore: update skills"');
1319
1326
  }
1320
1327
  }
1321
1328
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jettypod",
3
- "version": "4.4.97",
3
+ "version": "4.4.98",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {