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.
- package/.claude-plugin/marketplace.json +25 -0
- package/.claude-plugin/plugin.json +6 -0
- package/.cursor-plugin/plugin.json +6 -0
- package/README.md +2 -1
- package/dist/index.js +903 -366
- package/dist/index.js.map +22 -16
- package/hooks/cursor-hooks.json +16 -0
- package/hooks/hooks.json +27 -0
- package/package.json +5 -2
package/hooks/hooks.json
ADDED
|
@@ -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.
|
|
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
|
+
}
|