Install WaveForward alpha.

WaveForward is closed-source during the private alpha. Invited users can sign in, download the verified alpha package, and connect local machines that run their own agent credentials.

Private alpha kit Verified package
  • Installer kit waveforward-alpha-kit.tar.gz
  • Release manifest waveforward-alpha-manifest.json
  • Python wheel waveforward-*-py3-none-any.whl
  • Checksums SHA-256 files

Install in three steps

The download files are served from the hosted app after sign-in. The public website documents the process without exposing private release artifacts.

1

Download the alpha kit

Sign in to the hosted app, open Settings, and download the private alpha kit or release manifest from Downloads.

https://app.waveforward.tech/
Settings -> Downloads
waveforward-alpha-kit.tar.gz
2

Install locally

Extract the kit and install the verified wheel into a local WaveForward environment.

tar -xzf waveforward-*-alpha-kit.tar.gz
cd waveforward-*-alpha
sh install.sh --manifest waveforward-alpha-manifest.json
waveforward --version
3

Connect a machine

Create a setup command in Settings, then run the daemon from the workspace that should execute agent turns.

waveforward daemon \
  --server https://app.waveforward.tech \
  --auth-token <setup-token> \
  --machine "Laptop"

Upgrade safely

Every alpha release includes a manifest and checksums. Check the manifest before applying an update, then restart any running daemon.

waveforward update-check waveforward-alpha-manifest.json --verify-asset
waveforward update-install waveforward-alpha-manifest.json --apply
systemctl --user restart waveforward-daemon.service