agent-gauntlet 1.2.2 → 1.3.0

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.
@@ -0,0 +1,16 @@
1
+ {
2
+ "version": 1,
3
+ "hooks": {
4
+ "stop": [
5
+ {
6
+ "command": "agent-gauntlet stop-hook",
7
+ "loop_limit": 10
8
+ }
9
+ ],
10
+ "sessionStart": [
11
+ {
12
+ "command": "agent-gauntlet start-hook --adapter cursor"
13
+ }
14
+ ]
15
+ }
16
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "hooks": {
3
+ "Stop": [
4
+ {
5
+ "hooks": [
6
+ {
7
+ "type": "command",
8
+ "command": "agent-gauntlet stop-hook",
9
+ "timeout": 300
10
+ }
11
+ ]
12
+ }
13
+ ],
14
+ "SessionStart": [
15
+ {
16
+ "matcher": "startup|resume|clear|compact",
17
+ "hooks": [
18
+ {
19
+ "type": "command",
20
+ "command": "agent-gauntlet start-hook",
21
+ "async": false
22
+ }
23
+ ]
24
+ }
25
+ ]
26
+ }
27
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-gauntlet",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "description": "A CLI tool for testing AI coding agents",
5
5
  "license": "MIT",
6
6
  "author": "Paul Caplan",
@@ -22,6 +22,9 @@
22
22
  "files": [
23
23
  "dist",
24
24
  "skills",
25
+ ".claude-plugin",
26
+ ".cursor-plugin",
27
+ "hooks",
25
28
  "README.md",
26
29
  "LICENSE"
27
30
  ],
@@ -72,4 +75,4 @@
72
75
  "yaml": "^2.8.2",
73
76
  "zod": "^4.3.5"
74
77
  }
75
- }
78
+ }