Self-hosted CI/CD agents for fast, secure, multi-OS execution
Low footprint
Real-time logs
Safe updates
Cross-platform
Runner Capabilities
Orbnetes agents execute pipelines fast, stream live logs, and keep delivery operations secure across your infrastructure.

Fast Execution
Claims jobs instantly and runs pipelines with minimal host overhead.
Live Visibility
Streams step logs, statuses, and timings in real time.
Secure Operation
Uses token-based registration and controlled update delivery from trusted sources.
Download verified agent binaries and install them on your target platform in a
few commands.
Linux Files
orbnetes-agent-linux-amd64.tar.gzorbnetes-agent-linux-arm64.tar.gzorbnetes-agent-linux-armv7.tar.gzSHA256SUMS.txtmanifest.json
Linux Install
mkdir -p ~/orbnetes-agent
cd ~/orbnetes-agent
BASE_URL="https://download.repo.orbnetes.cloud/latest"
curl -fL "$BASE_URL/orbnetes-agent-linux-amd64.tar.gz" -o orbnetes-agent-linux-amd64.tar.gz
curl -fL "$BASE_URL/SHA256SUMS.txt" -o SHA256SUMS.txt
curl -fL "$BASE_URL/manifest.json" -o manifest.json
grep " orbnetes-agent-linux-amd64.tar.gz$" SHA256SUMS.txt | sha256sum -c -
tar xzf orbnetes-agent-linux-amd64.tar.gz
sudo ./orbnetes-agent --install
macOS Files
orbnetes-agent-darwin-amd64.tar.gzorbnetes-agent-darwin-arm64.tar.gzSHA256SUMS.txtmanifest.json
macOS Install
mkdir -p ~/orbnetes-agent
cd ~/orbnetes-agent
BASE_URL="https://download.repo.orbnetes.cloud/latest"
curl -fL "$BASE_URL/orbnetes-agent-darwin-amd64.tar.gz" -o orbnetes-agent-darwin-amd64.tar.gz
curl -fL "$BASE_URL/SHA256SUMS.txt" -o SHA256SUMS.txt
curl -fL "$BASE_URL/manifest.json" -o manifest.json
grep " orbnetes-agent-darwin-amd64.tar.gz$" SHA256SUMS.txt | shasum -a 256 -c -
tar xzf orbnetes-agent-darwin-amd64.tar.gz
sudo ./orbnetes-agent --install
Windows Files
orbnetes-agent-windows-amd64.ziporbnetes-agent-windows-arm64.zipSHA256SUMS.txtmanifest.json
Windows Install (PowerShell)
New-Item -ItemType Directory -Force C:\orbnetes-agent | Out-Null
Set-Location C:\orbnetes-agent
$baseUrl = "https://download.repo.orbnetes.cloud/latest"
Invoke-WebRequest -Uri "$baseUrl/orbnetes-agent-windows-amd64.zip" -OutFile "orbnetes-agent-windows-amd64.zip"
Invoke-WebRequest -Uri "$baseUrl/SHA256SUMS.txt" -OutFile "SHA256SUMS.txt"
Invoke-WebRequest -Uri "$baseUrl/manifest.json" -OutFile "manifest.json"
Expand-Archive .\orbnetes-agent-windows-amd64.zip -DestinationPath . -Force
.\orbnetes-agent.exe --install
Open-source agent, transparent security
The Orbnetes Agent source code is publicly available on GitHub so your team can review implementation details, verify behavior, and adopt with confidence.