macOS & Linux
The install script detects your OS and architecture, downloads the latest GitHub release, installs stackpilot into ~/.local/bin, and installs the bundled recipes beside the executable.
curl -fsSL https://raw.githubusercontent.com/gODtECH-Ctl-Create/StackPilot/main/scripts/install.sh | bashWindows PowerShell
Run PowerShell as your normal user. The installer downloads the Windows x86_64 archive, installs stackpilot.exe and its recipes into your user profile, and updates your user PATH.
irm https://raw.githubusercontent.com/gODtECH-Ctl-Create/StackPilot/main/scripts/install.ps1 | iexVerify the installation
stackpilot --version
stackpilot doctor
stackpilot recipes
stackpilot plan smoke-test --recipe base --non-interactivestackpilot --version should report stackpilot 0.2.6. doctor should validate the bundled recipe directory, and recipes should list the base recipe.
Then create your first backend service:
stackpilot new my-service --language RustRelease support
| Platform | Architecture | Release package |
|---|---|---|
| Windows | x86_64 | published |
| Linux | x86_64 | published |
| macOS | x86_64 | published |
| macOS | Apple Silicon | published |
Install from source
If you already have a Rust toolchain, Cargo can install StackPilot directly from the repository. Release installers are recommended for normal users because they also install the recipe library required by the CLI.
cargo install --git https://github.com/gODtECH-Ctl-Create/StackPilot.git