jettypod 4.4.96 → 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.
- package/jettypod.js +10 -3
- package/lib/git-hooks/post-merge +1 -1
- 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'
|
|
1314
|
-
|
|
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
|
-
//
|
|
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/lib/git-hooks/post-merge
CHANGED
|
@@ -57,7 +57,7 @@ const currentWork = JSON.parse(fs.readFileSync(currentWorkPath, 'utf-8'));
|
|
|
57
57
|
// Update to done using shared updateStatus (includes epic auto-close logic)
|
|
58
58
|
(async () => {
|
|
59
59
|
try {
|
|
60
|
-
const { updateStatus } = require('__JETTYPOD_ROOT__/
|
|
60
|
+
const { updateStatus } = require('__JETTYPOD_ROOT__/lib/work-tracking');
|
|
61
61
|
await updateStatus(currentWork.id, 'done');
|
|
62
62
|
|
|
63
63
|
// Clear current work pointer since work is done
|