Prefix installed version with v and name both CLI and Coder starts

1d3187e15a16 · AtlantisPleb · · parent 073c3b496bce

Prefix installed version with v and name both CLI and Coder starts

install.sh now prints the version with a v (e.g., v0.0.4) in both
user-facing lines. The closing message now says to run 'coder' to start
Coder or 'openagents' to see CLI commands.

Update the installer test to match the new copy.

Generated with [Devin](https://devin.ai)

Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-Authored-By
Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>

Deploy story

What this commit did to the running system — joined from the forge receipt chain, the part a commit page elsewhere cannot show.

pushed
by user · WAL seq 457 · 2026-08-26T17:36:01.220121Z

Changed files

  • modified priv/static/install.sh
  • modified test/openagents_web/install_script_test.exs

Diff

2 files changed, +4 -3

priv/static/install.sh modified +2 -2

@@ -235,7 +235,7 @@ else

235 235
    fi
236 236
fi
237 237
238
echo "Installing OpenAgents CLI $version ($platform)..." >&2
238
echo "Installing OpenAgents CLI v$version ($platform)..." >&2
239 239
240 240
binary_path="$DOWNLOAD_DIR/openagents-$platform"
241 241
artifact_base="${BASE_URL_PRIMARY}/openagents-${version}-${platform}"

@@ -382,4 +382,4 @@ export PATH="$HOME/.openagents/bin:$PATH"

382 382
fi
383 383
384 384
echo "" >&2
385
echo "OpenAgents $version installed. Run 'openagents' to start." >&2
385
echo "OpenAgents v$version installed. Run 'coder' to start Coder or 'openagents' to see CLI commands." >&2
test/openagents_web/install_script_test.exs modified +2 -1

@@ -220,7 +220,8 @@ defmodule OpenAgentsWeb.InstallScriptTest do

220 220
    test "says one line about what it installed, and names openagents" do
221 221
      script = File.read!(@script)
222 222
223
      assert script =~ ~s(OpenAgents $version installed. Run 'openagents' to start.)
223
      assert script =~
224
               ~s(OpenAgents v$version installed. Run 'coder' to start Coder or 'openagents' to see CLI commands.)
224 225
225 226
      # The closing block used to carry a shadow warning, a PATH comparison and
226 227
      # a note about a different CLI. It was noise on a successful install.

This page updates live while a promote is in flight · changelog