Install¶
macOS and Linux¶
For local development from this repository:
make build
./bin/fgai --help
To install to /usr/local/bin:
make install
fgai --help
To install somewhere else:
make install PREFIX="$HOME/.local"
Make sure PREFIX/bin is on your PATH.
Go install¶
When the module is available remotely:
go install github.com/SiriusVoyager/fgai-cli/cmd/fgai@latest
fgai --help
Windows¶
Download the Windows archive and extract fgai.exe into a directory on PATH,
for example %USERPROFILE%\bin.
From PowerShell:
fgai.exe --help
fgai.exe version
Windows support is Tier 2 until browser login and shell behavior are fully validated.
Release archives¶
Release archives are built for:
macOS arm64 and amd64;
Linux arm64 and amd64;
Windows amd64 preview.
macOS and Linux archives contain a binary named fgai. Windows archives contain
fgai.exe.
Developer-only source-tree command¶
This form is only for contributors working from the source tree:
go run ./cmd/fgai --help
Do not use go run in end-user runbooks.