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:
@@ -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.
|
||||||
|
|||||||
Reference in New Issue
Block a user