Vexoo
Ministry of Electronics & Information Technology, Government of India
Government of Maharashtra seal

FORGE

Your AI coding agent — wired to Vexoo's stack.

01 · Install

One binary. One command.

Forge ships as a single self-contained binary with the built-in provider list. Select a model to get started.

Bare install

Just Forge

Linux / macOS / WSL
$ curl -fsSL https://forge-gom.vexoo.ai/install | bash
Windows PowerShell
> irm https://forge-gom.vexoo.ai/install.ps1 | iex

02 · Activate Terminal

Activate Forge in your current terminal

So the updated PATH takes effect immediately — without opening a new terminal window.

Linux / macOS / WSL
$ source ~/.zshrc 2>/dev/null || source ~/.bashrc # or: exec $SHELL
Windows
# exit then reopen, or:> $env:Path = "$env:USERPROFILE\.forge\bin;$env:Path"

03 · Launch

Run it.

One command. Forge boots straight into your terminal.

Any shell
$ forge

04 · Removal

Reversible. Clean. Promise.

No daemons, no registry sprawl. Everything Forge writes lives under a handful of dot-dirs.

Linux / macOS / WSL
$ rm -rf ~/.forge ~/.config/forge ~/.local/share/forge ~/.cache/forge ~/.local/state/forge$ for f in ~/.zshrc ~/.bashrc; do [ -f "$f" ] && sed -i.bak '/# forge/,+1d' "$f" && rm -f "$f.bak"; done
Windows PowerShell
> Remove-Item -Recurse -Force "$env:USERPROFILE\.forge","...\.config\forge","...\.local\share\forge","...\.cache\forge","...\.local\state\forge" -ErrorAction SilentlyContinue> $p = ([Environment]::GetEnvironmentVariable('Path','User') -split ';') | Where-Object { $_ -and ($_ -notmatch '\.forge\\bin$') }> [Environment]::SetEnvironmentVariable('Path', ($p -join ';'), 'User')