jettypod 4.4.72 → 4.4.73

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: 'Use jettypod work start to create a feature branch first.'
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}\n\nšŸ’” Hint: ${hint || 'Check your action.'}`;
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.72",
3
+ "version": "4.4.73",
4
4
  "description": "AI-powered development workflow manager with TDD, BDD, and automatic test generation",
5
5
  "main": "jettypod.js",
6
6
  "bin": {