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

FORGE

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

Linux / WSL
$ curl -fsSL https://forge-gom.vexoo.ai/install | bash
Windows
> irm https://forge-gom.vexoo.ai/install.ps1 | iex
available for: Linux x64 · Windows x64

02 · Install

One binary. One command.

Forge ships as a single self-contained binary with the built-in provider list

Bare install

Just Forge

Plain Forge with the built-in provider list. Pick a model when prompted.

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

03 · Reload

Activate Forge in your current terminal

Pick up the new PATH without opening a fresh window.

Linux / WSL
$ source ~/.bashrc # or: exec bash
Windows
# exit then reopen, or:> $env:Path = "$env:USERPROFILE\.forge\bin;$env:Path"

04 · Launch

Run it.

One command. Forge boots straight into your terminal.

Any shell
$ forge

05 · Removal

Reversible. Clean. Promise.

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

Linux / WSL
$ rm -rf ~/.forge ~/.config/forge ~/.local/share/forge ~/.cache/forge ~/.local/state/forge$ sed -i '/# forge/,+1d' ~/.bashrc
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')