vet

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 28d3e6f864978aede2d7c544ad21eda61413d653
parent c2a31b81cdf6935a9a7ff75199a89ea2cc29f66d
Author: Andrew D. Laack <andrew@laack.co>
Date:   Tue, 17 Feb 2026 01:02:45 -0600

Unhide Agent Flags (#94)

* Unhide flags

* Make agentic false known
Diffstat:
MREADME.md | 2++
Maction.yml | 2+-
Mvet/cli/main.py | 4++--
3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md @@ -108,6 +108,8 @@ jobs: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 - uses: imbue-ai/vet@main + with: + agentic: false ``` The action handles Python setup, vet installation, merge base computation, and posting the review to the PR. `ANTHROPIC_API_KEY` must be set as a repository secret when using Anthropic models (the default). See [`action.yml`](https://github.com/imbue-ai/vet/blob/main/action.yml) for all available inputs. diff --git a/action.yml b/action.yml @@ -8,7 +8,7 @@ branding: inputs: agentic: - description: "Enable agentic mode (requires Claude Code; Node.js will be installed automatically)" + description: "Enable agentic mode (Will use Claude Code as the default agent harness)" required: false default: "false" model: diff --git a/vet/cli/main.py b/vet/cli/main.py @@ -246,7 +246,7 @@ def create_parser() -> argparse.ArgumentParser: "--agentic", action="store_true", default=False, - help=argparse.SUPPRESS, + help="Run vet in agentic mode", ) parser.add_argument( @@ -254,7 +254,7 @@ def create_parser() -> argparse.ArgumentParser: type=AgentHarnessType, choices=list(AgentHarnessType), default=AgentHarnessType.CLAUDE, - help=argparse.SUPPRESS, + help="Run vet with the specified agent harness (default: claude)", ) return parser