From 6f475723fca56a35159b6c8a82039eabfa227f39 Mon Sep 17 00:00:00 2001 From: A Walker Date: Mon, 16 Feb 2026 17:57:39 -0600 Subject: [PATCH] docs(readme): add PATH hint for ~/.cargo/bin in Quick Start `cargo install` places the binary in ~/.cargo/bin, which may not be in the user's PATH by default. This adds an explicit export step so new users don't hit a "not found" error after install. Co-Authored-By: Claude Opus 4.6 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index b1e00d2..dcc7465 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,9 @@ cd zeroclaw cargo build --release --locked cargo install --path . --force --locked +# Ensure ~/.cargo/bin is in your PATH +export PATH="$HOME/.cargo/bin:$PATH" + # Quick setup (no prompts) zeroclaw onboard --api-key sk-... --provider openrouter