jettypod 4.4.72 ā 4.4.74
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.
|
@@ -172,7 +172,11 @@ function evaluateBashCommand(command, inputRef, cwd) {
|
|
|
172
172
|
return {
|
|
173
173
|
allowed: false,
|
|
174
174
|
message: 'Direct commits to main are blocked',
|
|
175
|
-
hint:
|
|
175
|
+
hint: `Required workflow:
|
|
176
|
+
1. jettypod work create chore "<description>"
|
|
177
|
+
2. jettypod work start <id>
|
|
178
|
+
3. [make changes in worktree]
|
|
179
|
+
4. jettypod work merge`
|
|
176
180
|
};
|
|
177
181
|
}
|
|
178
182
|
|
|
@@ -401,7 +405,12 @@ function allow() {
|
|
|
401
405
|
* Deny the action with explanation
|
|
402
406
|
*/
|
|
403
407
|
function deny(message, hint) {
|
|
404
|
-
const reason = `ā ${message}
|
|
408
|
+
const reason = `ā ${message}
|
|
409
|
+
|
|
410
|
+
ā ļø This is a Claude pre-tool hook, not a git hook.
|
|
411
|
+
--no-verify won't help. You must use the worktree workflow.
|
|
412
|
+
|
|
413
|
+
š” Hint: ${hint || 'Check your action.'}`;
|
|
405
414
|
|
|
406
415
|
console.log(JSON.stringify({
|
|
407
416
|
hookSpecificOutput: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jettypod",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.74",
|
|
4
4
|
"description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
|
|
5
5
|
"main": "jettypod.js",
|
|
6
6
|
"bin": {
|
|
@@ -62,7 +62,8 @@
|
|
|
62
62
|
"dependencies": {
|
|
63
63
|
"better-sqlite3": "^12.5.0",
|
|
64
64
|
"chalk": "^4.1.2",
|
|
65
|
-
"sqlite3": "^5.1.7"
|
|
65
|
+
"sqlite3": "^5.1.7",
|
|
66
|
+
"ws": "^8.18.3"
|
|
66
67
|
},
|
|
67
68
|
"engines": {
|
|
68
69
|
"node": ">=18"
|