gm-gc 2.0.249 → 2.0.250

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.249",
3
+ "version": "2.0.250",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "homepage": "https://github.com/AnEntrypoint/gm",
package/hooks/hooks.json CHANGED
@@ -3,28 +3,28 @@
3
3
  "hooks": {
4
4
  "BeforeTool": {
5
5
  "type": "command",
6
- "command": "bun ${extensionPath}/hooks/pre-tool-use-hook.js",
6
+ "command": "${extensionPath}/bin/plugkit hook pre-tool-use",
7
7
  "timeout": 3600
8
8
  },
9
9
  "SessionStart": {
10
10
  "type": "command",
11
- "command": "bun ${extensionPath}/hooks/session-start-hook.js",
12
- "timeout": 10000
11
+ "command": null,
12
+ "timeout": 60000
13
13
  },
14
14
  "BeforeAgent": {
15
15
  "type": "command",
16
- "command": "bun ${extensionPath}/hooks/prompt-submit-hook.js",
17
- "timeout": 3600
16
+ "command": "${extensionPath}/bin/plugkit hook prompt-submit",
17
+ "timeout": 60000
18
18
  },
19
19
  "SessionEnd": [
20
20
  {
21
21
  "type": "command",
22
- "command": "bun ${extensionPath}/hooks/stop-hook.js",
22
+ "command": "${extensionPath}/bin/plugkit hook stop",
23
23
  "timeout": 300000
24
24
  },
25
25
  {
26
26
  "type": "command",
27
- "command": "bun ${extensionPath}/hooks/stop-hook-git.js",
27
+ "command": "${extensionPath}/bin/plugkit hook stop-git",
28
28
  "timeout": 60000
29
29
  }
30
30
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-gc",
3
- "version": "2.0.249",
3
+ "version": "2.0.250",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",