commit ce08a692a1c4d840f371c324cada7c7b25cbd864
parent 6bb0499bb7666b732eb4dedf0da535c1e519e710
Author: Andrew Laack <andrew.laack@imbue.com>
Date: Thu, 5 Feb 2026 17:11:56 -0600
Update readme'
Diffstat:
1 file changed, 1 insertion(+), 13 deletions(-)
diff --git a/README.md b/README.md
@@ -28,7 +28,7 @@ vet "Refactor storage layer" --base-commit main
Vet ships as an [agent skill](https://agentskills.io) that coding agents like [OpenCode](https://opencode.ai) and [Codex](https://github.com/openai/codex) can discover and use automatically. When installed, agents will proactively run vet after code changes and include conversation history for better analysis.
-### Install the skill globally
+### Install the skill
```bash
for dir in ~/.agents ~/.opencode ~/.claude ~/.codex; do
@@ -46,18 +46,6 @@ done
This places the skill in `~/.agents/skills/vet/`, `~/.opencode/skills/vet/`, `~/.claude/skills/vet/`, and `~/.codex/skills/vet/`, so it is discovered by OpenCode, Claude Code, and Codex.
-### Install per-project
-
-To have agents use vet automatically in a specific repo, copy the skill into the project:
-
-```bash
-for dir in .agents .opencode .claude .codex; do
- cp -r /path/to/vet/skills/vet "$dir/skills/vet"
-done
-git add .agents/skills/vet .opencode/skills/vet .claude/skills/vet .codex/skills/vet && \
- git commit -m "Add vet agent skill"
-```
-
## How it works
Vet snapshots the repo and diff, optionally adds a goal and agent conversation, runs LLM checks, then filters/deduplicates findings into a final list of issues.