Binary Deployment
Yunque Agent compiles to a single zero-dependency binary. Download and run — that's it.
Download
Get the latest release from GitHub Releases.
Available platforms:
yunque-agent-linux-amd64yunque-agent-linux-arm64yunque-agent-darwin-amd64(macOS Intel)yunque-agent-darwin-arm64(macOS Apple Silicon)yunque-agent-windows-amd64.exeyunque-agent-windows-arm64.exe
Run
bash
# Linux/macOS
chmod +x yunque-agent-linux-amd64
# Create config
echo "LLM_API_KEY=your-key" > .env
# Start
./yunque-agent-linux-amd64The agent starts on port 9090 by default.
Build from Source
bash
# Requires Go 1.25+
git clone https://github.com/LittleXiaYuan/Tori.git
cd yunque-agent
# Build for current platform
make build
# Build for all platforms (6 targets)
make release
# Output in dist/
ls dist/Systemd Service (Linux)
ini
[Unit]
Description=Yunque Agent
After=network.target
[Service]
Type=simple
WorkingDirectory=/opt/yunque-agent
ExecStart=/opt/yunque-agent/yunque-agent
EnvironmentFile=/opt/yunque-agent/.env
Restart=always
RestartSec=5
[Install]
WantedBy=multi-user.target