agent-gauntlet 0.13.1 → 0.14.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/LICENSE +21 -201
- package/README.md +1 -1
- package/dist/index.js +610 -293
- package/dist/index.js.map +22 -19
- package/dist/skill-templates/help-ref-stop-hook-troubleshooting.md +1 -1
- package/dist/skill-templates/status.md +1 -1
- package/package.json +3 -2
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
| `ci_passed` | CI passed — all checks completed and no blocking reviews | GitHub CI checks succeeded and no `CHANGES_REQUESTED` reviews |
|
|
14
14
|
| `no_config` | Not a gauntlet project — no `.gauntlet/config.yml` found | No gauntlet configuration in this repo |
|
|
15
15
|
| `stop_hook_active` | Stop hook cycle detected — allowing stop to prevent infinite loop | Recursion prevention triggered |
|
|
16
|
-
| `stop_hook_disabled` |
|
|
16
|
+
| `stop_hook_disabled` | *(silent — no message displayed)* | `stop_hook.enabled: false` in config or `GAUNTLET_STOP_HOOK_ENABLED=false` |
|
|
17
17
|
| `interval_not_elapsed` | Run interval not elapsed | `stop_hook.run_interval_minutes` hasn't elapsed since last run |
|
|
18
18
|
| `invalid_input` | Invalid hook input — could not parse JSON | Stop-hook couldn't parse stdin JSON from the IDE |
|
|
19
19
|
| `lock_conflict` | Another gauntlet run is already in progress | Lock file exists with a live PID |
|
|
@@ -11,7 +11,7 @@ Show a detailed summary of the most recent gauntlet session.
|
|
|
11
11
|
## Step 1: Run the status script
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
bun .gauntlet/
|
|
14
|
+
bun .gauntlet/scripts/status.ts 2>&1
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
The script parses the `.debug.log` for session-level data (run count, gate results, pass/fail status) and lists all log files with their paths and sizes.
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-gauntlet",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.14.0",
|
|
4
4
|
"description": "A CLI tool for testing AI coding agents",
|
|
5
|
-
"license": "
|
|
5
|
+
"license": "MIT",
|
|
6
6
|
"author": "Paul Caplan",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
@@ -63,6 +63,7 @@
|
|
|
63
63
|
"typescript": "^5"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
+
"@inquirer/prompts": "^8.2.1",
|
|
66
67
|
"@logtape/logtape": "^2.0.2",
|
|
67
68
|
"chalk": "^5.6.2",
|
|
68
69
|
"commander": "^14.0.2",
|