sails-dev-env
Installation
SKILL.md
Sails Dev Env
Goal
Get the machine to a verified baseline for standard Sails Rust work: rustup, Rust toolchains, Wasm targets, cargo-sails, and the latest official gear binary.
Sequence
- Detect whether the builder is on
macOS,Linux, orWindows. - If
rustupis missing, install it with the official bootstrap for that platform. - Install or update the
stableandnightlytoolchains, then addwasm32-unknown-unknownandwasm32v1-none. - Install the Sails Rust CLI with
cargo install sails-cli --locked, which providescargo-sailsand the standard greenfield bootstrap commandcargo sails new <project-name>. - Install the latest official
gearrelease binary fromhttps://get.gear.rs/(see Commands below for platform-specific download). - Verify the toolchain with
rustup show,cargo sails --version, andgear --version. - Route back into
../sails-new-app/SKILL.md,../ship-sails-app/SKILL.md,../sails-gtest/SKILL.md, or../sails-local-smoke/SKILL.mddepending on the builder's next task.