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)
This commit is contained in:
teknium1
2026-03-05 06:30:09 -08:00
parent ada3713e77
commit 87f4e4cb9b
2 changed files with 6 additions and 29 deletions

View File

@@ -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';
}