Installation
Vyges is distributed as prebuilt binaries (the source is private). Every release
bundles all three binaries — vyges, vyges-pdk-store, vyges-catalog — and installs
them into ~/.vyges/bin.
These instructions describe the intended public install flow. The public release repo (
vyges-tools/cli) and Homebrew tap (vyges/homebrew-tap) go live with the first published release.
Homebrew (macOS / Linux)
brew install vyges/tap/vyges
This installs all three binaries in one shot.
curl installer (macOS / Linux)
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/vyges-tools/cli/releases/latest/download/vyges-installer.sh | sh
The installer places the binaries in ~/.vyges/bin. Add it to your PATH if it isn’t
already:
export PATH="$HOME/.vyges/bin:$PATH"
Windows (PowerShell)
irm https://github.com/vyges-tools/cli/releases/latest/download/vyges-installer.ps1 | iex
The Vyges Loom engines (on demand)
The sign-off engines — the Vyges Loom suite — are not bundled with the CLI.
Fetch the whole suite when you want it, then invoke any engine through vyges:
vyges install loom # downloads the Loom engines into ~/.vyges/bin
vyges loom sta-si demo # run any engine as: vyges loom <engine> ...
Each engine is also a standalone vyges-<engine> binary on your PATH (e.g.
vyges-sta-si), which is what vyges loom <engine> dispatches to and what flow
authors integrate against directly.
Verify
vyges --version
vyges modules # shows which Vyges modules are installed (incl. the loom suite)
Supported platforms
- macOS (Apple Silicon)
- Linux (x86-64 and arm64)
- Windows (x86-64)