Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

### Linux/macOS

```bash
# 1. Clone the repository
git clone https://github.com/adenhq/hive.git
Expand All @@ -25,6 +27,20 @@ cd hive
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')"
```

## Building Your First Agent

### Option 1: Using Claude Code Skills (Recommended)
Expand Down