From 87f4e4cb9b6c17002fc445aad601f8d9ee1eb82e Mon Sep 17 00:00:00 2001 From: teknium1 Date: Thu, 5 Mar 2026 06:30:09 -0800 Subject: [PATCH] chore: remove Windows install options from landing page - Remove PowerShell and CMD tabs from hero and install sections - Add WSL to the Linux/macOS tab label - Update Windows notice: experimental/unsupported, recommend WSL2 - Add Docs nav link pointing to /docs/ - Clean up platform detection JS (always default to linux) --- landingpage/index.html | 19 +++++-------------- landingpage/script.js | 16 +--------------- 2 files changed, 6 insertions(+), 29 deletions(-) diff --git a/landingpage/index.html b/landingpage/index.html index 2d1f99972..7ae7be162 100644 --- a/landingpage/index.html +++ b/landingpage/index.html @@ -36,6 +36,7 @@ @@ -100,7 +93,7 @@ -

Works on Linux, macOS & WSL · No prerequisites · Installs everything automatically

+

Works on Linux, macOS & WSL2 · No prerequisites · Installs everything automatically

diff --git a/landingpage/script.js b/landingpage/script.js index 422ba3bea..8af7d95d6 100644 --- a/landingpage/script.js +++ b/landingpage/script.js @@ -7,26 +7,12 @@ const PLATFORMS = { linux: { command: 'curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash', prompt: '$', - note: 'Works on Linux, macOS & WSL · No prerequisites · Installs everything automatically', + note: 'Works on Linux, macOS & WSL2 · No prerequisites · Installs everything automatically', stepNote: 'Installs uv, Python 3.11, clones the repo, sets up everything. No sudo needed.', }, - powershell: { - command: 'irm https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.ps1 | iex', - prompt: 'PS>', - note: 'Windows PowerShell · Requires Git for Windows · Installs everything automatically', - stepNote: 'Requires Git for Windows. Installs uv, Python 3.11, sets up everything.', - }, - cmd: { - command: 'curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.cmd -o install.cmd && install.cmd && del install.cmd', - prompt: '>', - note: 'Windows CMD · Requires Git for Windows · Installs everything automatically', - stepNote: 'Requires Git for Windows. Downloads and runs the installer, then cleans up.', - }, }; function detectPlatform() { - const ua = navigator.userAgent.toLowerCase(); - if (ua.includes('win')) return 'powershell'; return 'linux'; }