Getting Started

Installation

Install

Run this in your terminal:

curl -fsSL https://forg.pro/install | sh

The installer detects your OS and architecture, downloads the correct binary, places forg in /usr/local/bin, and removes any old forg-agent binary if present.

Verify

forg version
# forg 3.1.0 (darwin/arm64)

Activate

Get your license key from forg.pro/dashboard SettingsLicense.

forg activate lic_<your-key>

That's it. FORG auto-detects your installed AI coding tools and wires the adapters.

Removing a previous installation

If you have an old forg-agent binary or a broken install, clean it up first:

# Remove forg-agent (v1.x name)
which forg-agent && rm "$(which forg-agent)"

# Remove forg (any version)
which forg && rm "$(which forg)"

# Remove data + keychain entry
rm -rf ~/.local/share/forg            # Linux
rm -rf ~/Library/"Application Support"/forg  # macOS

# Then re-install
curl -fsSL https://forg.pro/install | sh

System requirements

PlatformSupported
macOS 12+ (arm64 / x86_64)
Linux x86_64 / arm64 (glibc 2.31+)
Windows 10+ x86_64

No runtime required. The binary is self-contained.

Manual download

If you can't run the install script, download the binary directly from forg.pro/download and place it on your PATH.

Uninstall

forg deactivate        # revokes license, wipes local state
rm "$(which forg)"     # removes the binary
© 2026 UpgradIQ, Inc.Edit this page on GitHub