From d5584a04b461509a142d6543b21ebe431b18b700 Mon Sep 17 00:00:00 2001 From: zumayaaustin-creator Date: Tue, 23 Jun 2026 08:59:27 -0700 Subject: [PATCH] docs: add Windows prerequisites --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index cc209ea..a720645 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,8 @@ chmod +x install.sh && ./install.sh ## πŸ“‹ Prerequisites +### Linux/macOS + | Tool | Required? | Install | |------|-----------|---------| | Python 3.10+ | βœ… Required | `sudo apt install python3 python3-pip` | @@ -111,8 +113,20 @@ chmod +x install.sh && ./install.sh | Hermes Agent | ⚠ For memory/scheduling | `curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh \| bash` | | Gemini CLI | ⚠ For Google AI | `npm install -g @google/gemini-cli` | +### Windows + +| Tool | Required? | Install | Verify / Next Step | +|------|-----------|---------|--------------------| +| Python 3.10+ | βœ… Required | Install from [python.org/downloads/windows](https://www.python.org/downloads/windows/) and enable **β€œAdd python.exe to PATH”** during setup. | `python --version` | +| Node.js 18+ | ⚠ For opencode and Gemini CLI | Install from [nodejs.org](https://nodejs.org/). | `node --version` and `npm --version` | +| opencode | ⚠ For code tasks | `npm install -g @opencode/cli` | Confirm the CLI is available in a new terminal session. | +| Gemini CLI | ⚠ For Google AI | `npm install -g @google/gemini-cli` | Run `gemini auth login` and complete OAuth in the browser. | +| Hermes Agent | ⚠ For memory/scheduling | Windows support must be verified separately if the upstream installer remains Bash-only. | Check the upstream Hermes Agent install docs before relying on native Windows support. | + > ⚠ = Optional β€” the dashboard works with any subset of installed agents. +> **PowerShell execution policy:** if you use PowerShell scripts, allow local scripts for your user with `Set-ExecutionPolicy -Scope CurrentUser RemoteSigned`, or run a single installer invocation with `powershell -ExecutionPolicy Bypass -File .\install.ps1`. + --- ## πŸ”§ Configuration