gm-qwen 2.0.770 → 2.0.772

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/gm.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.770",
3
+ "version": "2.0.772",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",
@@ -0,0 +1,64 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "description": "Hook spec for gm Qwen Code extension",
4
+ "envVar": "CLAUDE_PLUGIN_ROOT",
5
+ "plugkitInvoker": "node",
6
+ "events": [
7
+ {
8
+ "eventKey": "PreToolUse",
9
+ "commands": [
10
+ {
11
+ "kind": "plugkit",
12
+ "subcommand": "pre-tool-use",
13
+ "timeout": 3600
14
+ }
15
+ ]
16
+ },
17
+ {
18
+ "eventKey": "SessionStart",
19
+ "commands": [
20
+ {
21
+ "kind": "plugkit",
22
+ "subcommand": "session-start",
23
+ "timeout": 180000
24
+ }
25
+ ]
26
+ },
27
+ {
28
+ "eventKey": "UserPromptSubmit",
29
+ "commands": [
30
+ {
31
+ "kind": "plugkit",
32
+ "subcommand": "prompt-submit",
33
+ "timeout": 60000
34
+ }
35
+ ]
36
+ },
37
+ {
38
+ "eventKey": "PreCompact",
39
+ "commands": [
40
+ {
41
+ "kind": "plugkit",
42
+ "subcommand": "pre-compact",
43
+ "timeout": 30000
44
+ }
45
+ ]
46
+ },
47
+ {
48
+ "eventKey": "Stop",
49
+ "wrapMode": "flat-matchers",
50
+ "commands": [
51
+ {
52
+ "kind": "plugkit",
53
+ "subcommand": "stop",
54
+ "timeout": 300000
55
+ },
56
+ {
57
+ "kind": "plugkit",
58
+ "subcommand": "stop-git",
59
+ "timeout": 60000
60
+ }
61
+ ]
62
+ }
63
+ ]
64
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-qwen",
3
- "version": "2.0.770",
3
+ "version": "2.0.772",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",