From 2e380c478283c72099f9c5c8a8fa278cca411896 Mon Sep 17 00:00:00 2001 From: James Joseph Date: Sun, 5 Apr 2026 12:47:24 -0500 Subject: [PATCH] docs(skill): add install instructions to Bootstrap section Point to the releases page with OS/arch variants and a curl+tar snippet so agents can install the `ergo` binary themselves when missing, rather than only asking the user to install it. --- .claude/skills/ergo/SKILL.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.claude/skills/ergo/SKILL.md b/.claude/skills/ergo/SKILL.md index 5479c61..0570c40 100644 --- a/.claude/skills/ergo/SKILL.md +++ b/.claude/skills/ergo/SKILL.md @@ -18,7 +18,12 @@ Turn a feature request into a repo-local plan tracked by `ergo`: a backlog of we ## Bootstrap -1. Expect `ergo` to be globally installed. If missing, ask the user to install it. +1. Expect `ergo` to be globally installed. If missing, install a precompiled binary from the [releases page](https://github.com/jamestjat/ergo/releases) — pick the archive matching the host OS/arch (`darwin_arm64`, `darwin_amd64`, `linux_arm64`, `linux_amd64`, `windows_arm64`, `windows_amd64`), extract, and move `ergo` onto `PATH`. On macOS/Linux: + ```bash + # replace VERSION, OS, ARCH + curl -sSL https://github.com/jamestjat/ergo/releases/download/vVERSION/ergo_VERSION_OS_ARCH.tar.gz \ + | tar -xz -C /usr/local/bin ergo + ``` 2. Run `ergo --help` and `ergo quickstart` to learn the CLI before creating plans. ## Planning