Installation
Homebrew (macOS / Linux)
Section titled “Homebrew (macOS / Linux)”brew install bobisme/tap/wraithcurl (macOS / Linux)
Section titled “curl (macOS / Linux)”curl -fsSL https://wraith.cx/install.sh | shThe installer detects your OS and architecture, downloads the latest release from GitHub, verifies the SHA-256 checksum, and installs to /usr/local/bin (or ~/.local/bin if /usr/local/bin is not writable).
Override the install directory:
WRAITH_INSTALL_DIR=~/bin curl -fsSL https://wraith.cx/install.sh | shManual download
Section titled “Manual download”Download the latest release archive from GitHub Releases.
Available targets:
wraith-<version>-x86_64-unknown-linux-gnu.tar.gzwraith-<version>-aarch64-unknown-linux-gnu.tar.gzwraith-<version>-x86_64-apple-darwin.tar.gzwraith-<version>-aarch64-apple-darwin.tar.gz
Extract and move the binary:
tar -xzf wraith-*.tar.gzsudo install -m 0755 wraith /usr/local/bin/wraithVerify
Section titled “Verify”wraith --versionRequirements
Section titled “Requirements”- OS: macOS (x86_64, ARM64) or Linux (x86_64, ARM64)
- Runtime dependencies: none — wraith is a single static binary
- Recording: access to the upstream API you want to twin
- LLM-assisted repair (optional): local model via ollama, or cloud provider API key
Next steps
Section titled “Next steps”wraith init myapi --base-url https://api.example.comSee the Quickstart to build your first twin in 5 minutes.