agent-gauntlet 0.1.5 → 0.1.7
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/README.md +6 -6
- package/package.json +1 -1
- package/src/commands/init.ts +2 -2
package/README.md
CHANGED
|
@@ -18,22 +18,22 @@ Agent Gauntlet is designed to be "tool-agnostic" by leveraging the AI CLI tools
|
|
|
18
18
|
|
|
19
19
|
### Requirements
|
|
20
20
|
|
|
21
|
-
- **Bun**
|
|
21
|
+
- **Bun** (Required runtime, v1.0.0+)
|
|
22
22
|
- **git** (change detection and diffs)
|
|
23
23
|
- For review gates: one or more supported AI CLIs installed (`gemini`, `codex`, `claude`). For the full list of tools and how they are used, see [CLI Invocation Details](docs/cli-invocation-details.md)
|
|
24
24
|
|
|
25
25
|
### Installation
|
|
26
26
|
|
|
27
|
-
You can install `agent-gauntlet` globally using `npm` or `bun
|
|
27
|
+
You can install `agent-gauntlet` globally using `npm` or `bun` (Bun must be installed on the system in both cases):
|
|
28
28
|
|
|
29
|
-
**Using
|
|
29
|
+
**Using Bun (Recommended):**
|
|
30
30
|
```bash
|
|
31
|
-
|
|
31
|
+
bun add -g agent-gauntlet
|
|
32
32
|
```
|
|
33
33
|
|
|
34
|
-
**Using
|
|
34
|
+
**Using npm:**
|
|
35
35
|
```bash
|
|
36
|
-
|
|
36
|
+
npm install -g agent-gauntlet
|
|
37
37
|
```
|
|
38
38
|
|
|
39
39
|
### Quick start
|
package/package.json
CHANGED
package/src/commands/init.ts
CHANGED
|
@@ -13,12 +13,12 @@ allowed-tools: Bash
|
|
|
13
13
|
# /gauntlet
|
|
14
14
|
Execute the autonomous verification suite.
|
|
15
15
|
|
|
16
|
-
1. Run \`
|
|
16
|
+
1. Run \`agent-gauntlet run\`.
|
|
17
17
|
2. If it fails, read the log files in \`.gauntlet_logs/\` to understand exactly what went wrong.
|
|
18
18
|
3. Fix any code or logic errors found by the tools or AI reviewers, prioritizing higher-priority violations (critical > high > medium > low).
|
|
19
19
|
4. If you disagree with AI reviewer feedback, briefly explain your reasoning in the code comments rather than ignoring it silently.
|
|
20
20
|
5. Do NOT commit your changes yet—keep them uncommitted so the rerun command can review them.
|
|
21
|
-
6. Run \`
|
|
21
|
+
6. Run \`agent-gauntlet rerun\` to verify your fixes. The rerun command reviews only uncommitted changes and uses previous failures as context.
|
|
22
22
|
7. Repeat steps 2-6 until one of the following termination conditions is met:
|
|
23
23
|
- All gates pass
|
|
24
24
|
- You disagree with remaining failures (ask the human how to proceed)
|