From 87862ab1f6b779d8686e41aa3ee5472003a2b642 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arn=C3=BE=C3=B3r=20S=C3=A6varsson?= Date: Sat, 18 Apr 2026 15:09:30 +0000 Subject: [PATCH] docs: Add upgrade instructions to README Add explicit upgrade workflow documenting the three-step process: 1. git pull (fetch latest changes) 2. make install (rebuild binary with updated embedded skill) 3. hey skill install (copy updated skill to ~/.agents/skills/hey/) The agent skill is embedded in the binary at build time, so users need to rebuild and reinstall after pulling updates to keep the skill in sync with the latest CLI version. --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 8525306..5c9dd0e 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,19 @@ hey-cli ships with an embedded agent skill so your agent can interact with HEY o hey skill install # install the skill globally for your agent ``` +## Upgrading + +To update hey-cli to the latest version: + +```bash +cd /path/to/hey-cli +git pull # fetch latest changes +make install # rebuild binary with updated embedded skill +hey skill install # update agent skill to match new binary +``` + +The agent skill is embedded in the binary at build time, so all three steps are required to keep everything in sync. + ## Development ```bash