gm-gc 2.0.31 → 2.0.32

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/agents/gm.md CHANGED
@@ -1,8 +1,6 @@
1
1
  ---
2
2
  name: gm
3
3
  description: Agent (not skill) - immutable programming state machine. Always invoke for all work coordination.
4
- agent: true
5
- enforce: critical
6
4
  ---
7
5
 
8
6
  # GM AGENT - Immutable Programming State Machine
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm",
3
- "version": "2.0.31",
3
+ "version": "2.0.32",
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
@@ -1,21 +1,27 @@
1
1
  {
2
2
  "description": "Hooks for gm Gemini CLI extension",
3
3
  "hooks": {
4
- "BeforeTool": {
5
- "type": "command",
6
- "command": "node ${extensionPath}/hooks/pre-tool-use-hook.js",
7
- "timeout": 3600
8
- },
9
- "SessionStart": {
10
- "type": "command",
11
- "command": "node ${extensionPath}/hooks/session-start-hook.js",
12
- "timeout": 10000
13
- },
14
- "BeforeAgent": {
15
- "type": "command",
16
- "command": "node ${extensionPath}/hooks/prompt-submit-hook.js",
17
- "timeout": 3600
18
- },
4
+ "BeforeTool": [
5
+ {
6
+ "type": "command",
7
+ "command": "node ${extensionPath}/hooks/pre-tool-use-hook.js",
8
+ "timeout": 3600
9
+ }
10
+ ],
11
+ "SessionStart": [
12
+ {
13
+ "type": "command",
14
+ "command": "node ${extensionPath}/hooks/session-start-hook.js",
15
+ "timeout": 10000
16
+ }
17
+ ],
18
+ "BeforeAgent": [
19
+ {
20
+ "type": "command",
21
+ "command": "node ${extensionPath}/hooks/prompt-submit-hook.js",
22
+ "timeout": 3600
23
+ }
24
+ ],
19
25
  "SessionEnd": [
20
26
  {
21
27
  "type": "command",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gm-gc",
3
- "version": "2.0.31",
3
+ "version": "2.0.32",
4
4
  "description": "State machine agent with hooks, skills, and automated git enforcement",
5
5
  "author": "AnEntrypoint",
6
6
  "license": "MIT",