Skip to content

Commit 068353a

Browse files
heidihowilsonclaude
andcommitted
docs(landing): expand install methods + add update section
The landing page only showed go install, missing the curl-pipe / brew / scoop paths that already ship. Add them, plus per-channel update instructions so users know how to upgrade once they've installed. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 3e6b170 commit 068353a

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

docs/index.html

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,42 @@
232232

233233
<!-- INSTALL -->
234234
<h2>Install</h2>
235+
236+
<h3>curl-pipe (Linux + macOS)</h3>
237+
<pre><code>curl -sSL https://heidihowilson.github.io/skillscope/install.sh | sh</code></pre>
238+
<p>Picks the first writable directory on your <code>PATH</code>. Pin a version with <code>SKILLSCOPE_VERSION=v0.2.0</code>. sha256-verified against the release's <code>checksums.txt</code>.</p>
239+
240+
<h3>Homebrew (macOS + Linux)</h3>
241+
<pre><code>brew install heidihowilson/tap/skillscope</code></pre>
242+
243+
<h3>Scoop (Windows)</h3>
244+
<pre><code>scoop bucket add heidihowilson https://github.com/heidihowilson/scoop-bucket
245+
scoop install skillscope</code></pre>
246+
247+
<h3>go install</h3>
235248
<pre><code>go install github.com/heidihowilson/skillscope/cmd/skillscope@latest</code></pre>
249+
236250
<p>Pre-built binaries for Linux / macOS / Windows ship with every release — see the <a href="https://github.com/heidihowilson/skillscope/releases">Releases page</a>.</p>
237251

252+
<!-- UPDATE -->
253+
<h2>Update</h2>
254+
<p>Use the same channel you installed from:</p>
255+
256+
<h3>curl-pipe</h3>
257+
<pre><code>curl -sSL https://heidihowilson.github.io/skillscope/install.sh | sh</code></pre>
258+
<p>Re-run the installer — it always grabs the latest release and overwrites the existing binary.</p>
259+
260+
<h3>Homebrew</h3>
261+
<pre><code>brew update &amp;&amp; brew upgrade skillscope</code></pre>
262+
263+
<h3>Scoop</h3>
264+
<pre><code>scoop update skillscope</code></pre>
265+
266+
<h3>go install</h3>
267+
<pre><code>go install github.com/heidihowilson/skillscope/cmd/skillscope@latest</code></pre>
268+
269+
<p>Check what you're running with <code>skillscope --version</code>.</p>
270+
238271
<!-- DEMO -->
239272
<h2>What it looks like</h2>
240273
<p class="dim" style="color:var(--fg-dim)">Matrix view: rows = skills, columns = scope, dots = harnesses that have the skill at that scope.</p>

0 commit comments

Comments
 (0)