agent-gauntlet 1.2.1 → 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 +905 -368
- package/dist/index.js.map +23 -17
- package/hooks/cursor-hooks.json +16 -0
- package/hooks/hooks.json +27 -0
- package/package.json +5 -2
- package/skills/gauntlet-commit/SKILL.md +7 -3
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "agent-gauntlet",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "pcaplan"
|
|
5
|
+
},
|
|
6
|
+
"metadata": {
|
|
7
|
+
"description": "A configurable feedback loop runner for AI-assisted development workflows."
|
|
8
|
+
},
|
|
9
|
+
"plugins": [
|
|
10
|
+
{
|
|
11
|
+
"name": "agent-gauntlet",
|
|
12
|
+
"version": "1.3.0",
|
|
13
|
+
"source": "./",
|
|
14
|
+
"description": "A configurable feedback loop runner for AI-assisted development workflows.",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"testing",
|
|
18
|
+
"quality",
|
|
19
|
+
"code-review",
|
|
20
|
+
"ai-agents"
|
|
21
|
+
],
|
|
22
|
+
"repository": "https://github.com/pcaplan/agent-gauntlet"
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Agent Gauntlet supports three workflows, ranging from simple CLI execution to fu
|
|
|
30
30
|
|
|
31
31
|
- **CLI Mode** — Run checks via command line; ideal for CI pipelines and scripts.
|
|
32
32
|
- **Assistant Mode** — AI assistant runs validation loop, fixing issues iteratively.
|
|
33
|
-
- **Agentic Mode** — Autonomous agent validates and fixes in real-time via stop hook (experimental).
|
|
33
|
+
- **Agentic Mode** — Autonomous agent validates and fixes in real-time via stop hook, delivered as a Claude Code or Cursor plugin (experimental).
|
|
34
34
|
|
|
35
35
|

|
|
36
36
|
|
|
@@ -62,6 +62,7 @@ For basic usage and configuration guide, see the [Quick Start Guide](docs/quick-
|
|
|
62
62
|
- [Quick Start Guide](docs/quick-start.md) — installation, basic usage, and config layout
|
|
63
63
|
- [User Guide](docs/user-guide.md) — full usage details
|
|
64
64
|
- [Configuration Reference](docs/config-reference.md) — all configuration fields + defaults
|
|
65
|
+
- [Plugin & Update Guide](docs/plugin-guide.md) — Claude Code and Cursor plugin delivery and updating
|
|
65
66
|
- [Stop Hook Guide](docs/stop-hook-guide.md) — integrate with Claude Code's stop hook (experimental).
|
|
66
67
|
- [CLI Invocation Details](docs/cli-invocation-details.md) — how we securely invoke AI CLIs
|
|
67
68
|
- [Feature Comparison](docs/feature_comparison.md) — how Agent Gauntlet compares to other tools
|