Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Comment on lines +135 to +139
Copy link

Copilot AI Apr 18, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The upgrade instructions call this an “agent skill”, but hey skill install is currently documented/implemented as Claude-specific and also creates a symlink under ~/.claude/skills/hey in addition to writing ~/.agents/skills/hey/SKILL.md. Consider clarifying this here (e.g., mention Claude explicitly and/or the two target locations) so users understand what gets updated when they rerun the command.

Copilot uses AI. Check for mistakes.

## Development

```bash
Expand Down
Loading