docs: add Windows quickstart.ps1 instructions to getting-started.md (#5668)

- Add Windows (PowerShell) section alongside Linux/macOS
- Reference .\quickstart.ps1 for native Windows users
- Add Set-ExecutionPolicy note for script execution
- Link to environment-setup.md for WSL alternatives
This commit is contained in:
Milton Adina
2026-03-15 05:05:39 -05:00
committed by GitHub
parent 0e7b11b5b2
commit 06f1d4dcef
+18
View File
@@ -13,6 +13,8 @@ This guide will help you set up the Aden Agent Framework and build your first ag
The fastest way to get started: The fastest way to get started:
**Linux / macOS:**
```bash ```bash
# 1. Clone the repository # 1. Clone the repository
git clone https://github.com/adenhq/hive.git git clone https://github.com/adenhq/hive.git
@@ -25,6 +27,22 @@ cd hive
uv run python -c "import framework; import aden_tools; print('✓ Setup complete')" uv run python -c "import framework; import aden_tools; print('✓ Setup complete')"
``` ```
**Windows (PowerShell):**
```powershell
# 1. Clone the repository
git clone https://github.com/adenhq/hive.git
cd hive
# 2. Run automated setup
.\quickstart.ps1
# 3. Verify installation (optional, quickstart.ps1 already verifies)
uv run python -c "import framework; import aden_tools; print('Setup complete')"
```
> **Note:** On Windows, running `.\quickstart.ps1` requires PowerShell 5.1+. If you see a "running scripts is disabled" error, run `Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass` first. Alternatively, use WSL — see [environment-setup.md](./environment-setup.md) for details.
## Building Your First Agent ## Building Your First Agent
Agents are not included by default in a fresh clone. Agents are not included by default in a fresh clone.