autoworkflow 3.8.0 → 3.8.1

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.
@@ -11,7 +11,7 @@
11
11
  "hooks": [
12
12
  {
13
13
  "type": "command",
14
- "command": "./.claude/hooks/session-check.sh",
14
+ "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/session-check.sh",
15
15
  "timeout": 10,
16
16
  "statusMessage": "Checking project state..."
17
17
  }
@@ -24,7 +24,7 @@
24
24
  "hooks": [
25
25
  {
26
26
  "type": "command",
27
- "command": "./.claude/hooks/pre-edit.sh",
27
+ "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/pre-edit.sh",
28
28
  "timeout": 5,
29
29
  "statusMessage": "Checking plan approval..."
30
30
  }
@@ -35,7 +35,7 @@
35
35
  "hooks": [
36
36
  {
37
37
  "type": "command",
38
- "command": "./.claude/hooks/pre-tool-router.sh \"$TOOL_INPUT\"",
38
+ "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/pre-tool-router.sh \"$TOOL_INPUT\"",
39
39
  "timeout": 300,
40
40
  "statusMessage": "Checking workflow gates..."
41
41
  }
@@ -48,7 +48,7 @@
48
48
  "hooks": [
49
49
  {
50
50
  "type": "command",
51
- "command": "./.claude/hooks/post-edit.sh",
51
+ "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/post-edit.sh",
52
52
  "timeout": 120,
53
53
  "statusMessage": "Running verification..."
54
54
  }
@@ -59,7 +59,7 @@
59
59
  "hooks": [
60
60
  {
61
61
  "type": "command",
62
- "command": "./.claude/hooks/post-bash-router.sh \"$TOOL_INPUT\"",
62
+ "command": "\"$CLAUDE_PROJECT_DIR\"/.claude/hooks/post-bash-router.sh \"$TOOL_INPUT\"",
63
63
  "timeout": 30,
64
64
  "statusMessage": "Checking post-command actions..."
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "autoworkflow",
3
- "version": "3.8.0",
3
+ "version": "3.8.1",
4
4
  "description": "Automated workflow enforcement for Claude Code via hooks and system prompts",
5
5
  "type": "module",
6
6
  "bin": {