agent-gauntlet 0.15.1 → 0.15.2
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/dist/index.js +17 -4
- package/dist/index.js.map +3 -3
- package/package.json +2 -2
- package/skills/gauntlet-setup/SKILL.md +10 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-gauntlet",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.2",
|
|
4
4
|
"description": "A CLI tool for testing AI coding agents",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Paul Caplan",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"build:npm": "bun build.ts",
|
|
38
38
|
"prepublishOnly": "bun run build:npm",
|
|
39
39
|
"test": "bun test",
|
|
40
|
-
"test:e2e": "bun run build:npm && bun test/integration/
|
|
40
|
+
"test:e2e": "bun run build:npm && bun test test/integration/",
|
|
41
41
|
"lint": "biome check src",
|
|
42
42
|
"typecheck": "tsc --noEmit && tsc --noEmit -p test/tsconfig.json",
|
|
43
43
|
"changeset": "changeset",
|
|
@@ -144,6 +144,15 @@ Ask the user. If yes, loop to Step 7. If no, proceed.
|
|
|
144
144
|
|
|
145
145
|
Run `agent-gauntlet validate`. If it fails, apply one corrective attempt and re-validate. If it still fails, **STOP** and ask the user.
|
|
146
146
|
|
|
147
|
-
## Step 11:
|
|
147
|
+
## Step 11: Commit configuration
|
|
148
|
+
|
|
149
|
+
Commit all gauntlet configuration and skills so the setup is preserved in version control:
|
|
150
|
+
|
|
151
|
+
1. Stage all new/modified files: `.gauntlet/`, `.claude/skills/gauntlet-*/`, `.claude/settings.local.json`, `.gitignore`
|
|
152
|
+
2. Create a commit: `git commit -m "chore: configure agent-gauntlet checks and reviews"`
|
|
153
|
+
|
|
154
|
+
If there are no changes to commit (everything already committed), skip this step silently.
|
|
155
|
+
|
|
156
|
+
## Step 12: Suggest next steps
|
|
148
157
|
|
|
149
158
|
Tell the user: configuration is complete. Run `/gauntlet-run` to execute, or `/gauntlet-setup` again to add more.
|