@samahlstrom/forge-cli 0.1.6 → 0.1.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@samahlstrom/forge-cli",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "Agent harness scaffolding for Claude Code — orchestration, decomposition, specialist agents, verification, and delivery.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,22 +33,38 @@
33
33
  "hooks": {
34
34
  "SessionStart": [
35
35
  {
36
- "command": "bash .forge/hooks/session-start.sh",
37
- "timeout": 10000
36
+ "matcher": "",
37
+ "hooks": [
38
+ {
39
+ "type": "command",
40
+ "command": "bash .forge/hooks/session-start.sh",
41
+ "timeout": 10000
42
+ }
43
+ ]
38
44
  }
39
45
  ],
40
46
  "PreToolUse": [
41
47
  {
42
48
  "matcher": "Edit|Write",
43
- "command": "bash .forge/hooks/pre-edit.sh",
44
- "timeout": 5000
49
+ "hooks": [
50
+ {
51
+ "type": "command",
52
+ "command": "bash .forge/hooks/pre-edit.sh",
53
+ "timeout": 5000
54
+ }
55
+ ]
45
56
  }
46
57
  ],
47
58
  "PostToolUse": [
48
59
  {
49
60
  "matcher": "Edit|Write",
50
- "command": "bash .forge/hooks/post-edit.sh",
51
- "timeout": 5000
61
+ "hooks": [
62
+ {
63
+ "type": "command",
64
+ "command": "bash .forge/hooks/post-edit.sh",
65
+ "timeout": 5000
66
+ }
67
+ ]
52
68
  }
53
69
  ]
54
70
  }