vet

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

commit 2976119e26eee3a46919b4e95e26afa8fad155c0
parent c604662e478e7b5e99e391f35a88e1ac7686ffbc
Author: andrewlaack-collab <andrew.laack@imbue.com>
Date:   Wed, 25 Feb 2026 14:01:59 -0600

Better installation instructions (#143)

* Symlink skills directory for agents to read

* Better installation instructions + symlink skill

* Updated installation instructions

---------

Co-authored-by: Andrew Laack <andrew@laack.co>
Diffstat:
A.agents/skills | 2++
A.codex/skills | 2++
A.opencode/skills | 2++
MREADME.md | 10++++++++--
Mskills/vet/SKILL.md | 9++++++---
5 files changed, 20 insertions(+), 5 deletions(-)

diff --git a/.agents/skills b/.agents/skills @@ -0,0 +1 @@ +../skills+ \ No newline at end of file diff --git a/.codex/skills b/.codex/skills @@ -0,0 +1 @@ +../skills+ \ No newline at end of file diff --git a/.opencode/skills b/.opencode/skills @@ -0,0 +1 @@ +../skills+ \ No newline at end of file diff --git a/README.md b/README.md @@ -80,10 +80,16 @@ The `--history-loader` option executes the specified shell command as the curren pip install verify-everything ``` -Or install from source: +Or with [pipx](https://pipx.pypa.io/): ```bash -pip install git+https://github.com/imbue-ai/vet.git +pipx install verify-everything +``` + +Or with [uv](https://docs.astral.sh/uv/): + +```bash +uv tool install verify-everything ``` ### Usage diff --git a/skills/vet/SKILL.md b/skills/vet/SKILL.md @@ -11,14 +11,17 @@ Vet reviews git diffs and conversation history to find issues in code changes an ## Installation -Install vet using pip or uv: +Install vet using pip, pipx, or uv: ```bash # Using pip pip install verify-everything -# Using uv (recommended) -uv pip install verify-everything +# Using pipx +pipx install verify-everything + +# Using uv +uv tool install verify-everything # Verify installation: vet --help