Install PitFast.
Install the standalone PitFast CLI binary and runtime execution daemon on your developer machine or CI runner.
Download and install the verified Linux binary to /usr/local/bin/pit:
bash
curl -fsSL https://get.pitfast.dev/linux | sh
# Or install manually with verified SHA-256:
wget https://releases.pitfast.dev/latest/pitfast-linux-amd64.tar.gz
tar -xvf pitfast-linux-amd64.tar.gz
sudo mv pit /usr/local/bin/Verify Toolchain Support with pit doctor
PitFast inspects your local environment to ensure compiler toolchains (Rust, TinyGo, Cargo-component, Node) are correctly installed for component generation:
bash
pit doctor languages
# Sample output:
# [✓] Rust 1.82.0 (wasm32-wasip2 target ready)
# [✓] TinyGo 0.33.0 (wasi target ready)
# [✓] Node.js 22.4.0 (jco componentize-js ready)
# [✓] Python 3.12 (componentize-py ready)
# [!] C# toolchain not found (optional)Ready to build? Move on to service creation:Source in. Component out →