English | 简体中文 | 日本語 | Français | Русский
This project is a secondary development (fork) based on Bytedance's open-source Deer-Flow project. The original project is released under the MIT License.
- We strictly comply with the original MIT open-source agreement and have retained the original
LICENSEfile in the project directory. - We express our sincere gratitude to the Bytedance Deer-Flow team for their outstanding contributions to the Super Agent Harness ecosystem.
- This secondary development version has no commercial affiliation with Bytedance, and any consequences arising from this project or its usage are completely unrelated to the original authors.
While the original Aura is incredibly powerful, its deployment process is heavily geared towards developers (requiring knowledge of command line, environment variables, Docker, etc.).
The core goal of this project is to completely productize this powerful Agent engine for everyday users:
- 💻 Native Desktop Clients: Breaking out of the browser by providing standalone
.exe(Windows),.dmg(macOS), and Linux desktop packages. - ⚡ One-Line / One-Click Installation: Abandoning complex
make devcommands in favor of fully automated out-of-the-box deployment. - 🔋 Drastic Performance Tuning: Automatically running in production mode, turning off heavy CPU/Memory development watchers, making it run smoothly even on standard laptops.
(🚧 These features are currently under active development)
🍎 macOS / 🐧 Linux Terminal:
bash -c "$(curl -fsSL https://raw.githubusercontent.com/kairowan/Aura/main/install.sh)"🪟 Windows PowerShell:
iwr -useb https://raw.githubusercontent.com/kairowan/Aura/main/install.ps1 | iexFor the native standalone desktop experience, you can build the Electron wrappers for macOS, Windows, or Linux natively:
cd desktop
npm install
npm run dist:mac # Generates Aura-macOS.dmg inside desktop/dist
# OR
npm run dist:win # Generates Aura-Windows.exe inside desktop/dist
# OR
npm run dist:linux # Generates AppImage and deb packages inside desktop/distAura now includes a Capacitor mobile shell scaffold in /mobile. It connects Android or iOS clients to a deployed Aura web workspace instead of embedding the local desktop runtime.
If you are a developer looking to contribute, the incredibly powerful underlying architecture of Aura (LangGraph, Skills, Tools) has been fully preserved.
- Fast Track macOS Start: Double-click
start_optimized.commandin the project root to start the production-grade tuned servers. - Mobile Shell: See
/mobile/README.mdfor Android and iOS setup.
Thanks again to Bytedance for providing such a powerful AI pipeline foundation. PRs and suggestions are welcome!