Download Enterprise Core
Free self-hosted foundation tier — manager stack images plus fleet agent installers for Cursor, Claude Code, and Codex collectors.
Fleet agent installers
Install the collector on each developer machine. Agents push heartbeats and session events to your self-hosted manager — no GHCR or registry login required.
macOS (.pkg) and Windows (.msi) packages are
not Apple-notarized and not Microsoft
Authenticode-signed. Gatekeeper and SmartScreen will warn — each developer must
explicitly allow the install on their workstation. See
agent install instructions.
Native installers register the agent as an OS service so it starts at login and
automatically restarts when the workstation reboots — macOS LaunchAgent, Linux user
systemd, and Windows logon scheduled task. Portable JAR installs can enable the same
behavior with the included service helper scripts. Pick the macOS package that matches
the machine: Apple Silicon (-arm64.pkg) or Intel (-x64.pkg).
Public CDN: https://app.retrysight.com/enterprise/tier-core/latest/
Runs as a service after install
Once installed, the fleet agent stays running across reboot and user login so collectors resume without a manual start.
- macOS (.pkg) — Apple Silicon or Intel (not universal); not notarized;
use Right-click → Open / Open Anyway (see install help),
then the package installs LaunchAgent
com.retrysight.agentwithRunAtLoadandKeepAlive. - Linux (.deb) — enables a user systemd unit
retrysight-agent.service(systemctl --global enable). - Windows (.msi) — not Authenticode-signed; use SmartScreen
More info → Run anyway (see install help), then
run
register-autostart.ps1once after install to create theRetrySightAgentAtLogOn scheduled task. - Portable JAR — use
infra/scripts/install-agent-service.sh(macOS/Linux) orinfra/windows/install-agent-service.ps1for the same auto-start behavior.
Manager stack Docker images
Load postgres, manager, and frontend from the public CDN, then start them with the
published docker-compose.yml — no docker login required. GHCR
mirrors remain available for private ops workflows.
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-postgres-0.1.0-rc.6.tar.gz | docker load
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-manager-0.1.0-rc.6.tar.gz | docker load
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-frontend-0.1.0-rc.6.tar.gz | docker load
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/docker-compose.yml -o docker-compose.yml
docker compose up -d Helm chart
Load Docker images from CDN first, then install the Helm chart. The chart defaults to
images.composeStyle=true so Kubernetes uses those local tags (not private
GHCR). For minikube, minikube image load the three images before
helm upgrade --install.
Chart: retrysight-0.1.0-rc.6.tgz.
# 1) Download the chart
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-0.1.0-rc.6.tgz -o retrysight-0.1.0-rc.6.tgz
# 2) Load Docker images from CDN (tags: retrysight/tier-core-<component>:0.1.0-rc.6)
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-postgres-0.1.0-rc.6.tar.gz | docker load
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-manager-0.1.0-rc.6.tar.gz | docker load
curl -fsSL https://app.retrysight.com/enterprise/tier-core/latest/retrysight-frontend-0.1.0-rc.6.tar.gz | docker load
# 3) Make images available to the cluster (minikube example)
# Skip if your node already shares the host Docker daemon.
for c in postgres manager frontend; do
minikube image load retrysight/tier-core-$c:0.1.0-rc.6
done
# 4) Install with CDN/local image names (composeStyle=true is the chart default; do not pull private GHCR)
helm upgrade --install retrysight ./retrysight-0.1.0-rc.6.tgz \
--set images.composeStyle=true \
--set images.repository=retrysight/tier-core \
--set images.tag=0.1.0-rc.6 \
--set images.pullPolicy=IfNotPresent
# Dashboard → kubectl port-forward svc/retrysight-frontend 8080:8080
# Manager API → kubectl port-forward svc/retrysight-manager 28471:28471 What you get
- Fleet agent — Linux .deb, Apple Silicon or Intel macOS .pkg, Windows .msi, or portable JAR
- macOS/Windows packages are not notarized or Authenticode-signed — follow install help to allow them
- Agent installs as an OS service and auto-starts after workstation reboot
- Manager stack — PostgreSQL, manager API, and dashboard (CDN Docker tars + compose file)
- SSO wizard and API key management from Core
After install
- Load CDN Docker images and
docker compose up -d, or Helm-install the manager stack - Open the dashboard on port 8080
- Create an agent API key in Admin → API keys
- Install fleet agents on developer machines and point them at your manager URL — native packages register OS auto-start so the agent comes back after reboot
- Confirm heartbeats on the Agents page
Other tiers
Compare capabilities on Enterprise tiers. Higher tiers: see pricing or contact sales.