Downloads
Download the Aether bridge binary for your operating system and the Unity SDK package.
Bridge Binaries
The Aether bridge is a standalone executable that connects Unity to your AI IDE via MCP.
Windows
Windows x64:
- File:
aether-bridge-windows-x64-vX.Y.Z.zip - SHA256: See
SHA256SUMS.txt
Download and run:
1unzip aether-bridge-windows-x64-vX.Y.Z.zip
2.\aether-bridge-windows-x64.exemacOS
macOS ARM64 (Apple Silicon):
- File:
aether-bridge-macos-arm64-vX.Y.Z.zip - SHA256: See
SHA256SUMS.txt
macOS x64 (Intel):
- File:
aether-bridge-macos-x64-vX.Y.Z.zip - SHA256: See
SHA256SUMS.txt
After downloading:
1unzip aether-bridge-macos-*-vX.Y.Z.zip
2chmod +x ./aether-bridge-darwin-*
3./aether-bridge-darwin-arm64 # or darwin-x64 (inside the zip)⚠️macOS Gatekeeper
On first run, macOS may block the binary. Right-click and select "Open" to allow it, or run:
1xattr -d com.apple.quarantine ./aether-bridge-darwin-*Linux
Linux x64:
- File:
aether-bridge-linux-x64-vX.Y.Z.tar.gz - SHA256: See
SHA256SUMS.txt
After downloading:
1tar -xzf aether-bridge-linux-x64-vX.Y.Z.tar.gz
2chmod +x ./aether-bridge-linux-x64
3./aether-bridge-linux-x64Unity SDK
Download the Unity SDK package to add Aether to your Unity project.
Package: aether-sdk-vX.Y.Z.zip (served via CDN)
Installation Methods
Method 1: Zip Install (Recommended)
- Download the Unity SDK zip from the Downloads page (served via CDN)
- Extract it (it contains an
Aether/folder) - Copy
Aether/into your Unity project’sAssets/folder (so you haveAssets/Aether) - Unity will auto-import the scripts
Method 2: Unity Package Manager (UPM)
- Open Package Manager
- Click + → Add package from git URL
- Enter:
https://github.com/finexma-dev/aether.git?path=unity-sdk/Aether - Click Add
Verification
After installation, verify the SDK is installed:
- Check that
Assets/Aether/directory exists - Look for
Aether.csin the Unity project - The Aether menu should appear in the Unity Editor
What Gets Installed
The Unity SDK adds the following to your project:
- Runtime Scripts: Core Aether functionality
- Editor Scripts: Settings and Live Inspector windows
- Assembly Definitions: Proper namespace isolation
ℹ️File Locations
- Runtime:
Assets/Aether/Runtime/ - Editor:
Assets/Aether/Editor/ - Generator:
Assets/Aether/Generator/
Next Steps
After downloading: