Install Glade and Run the First Local Check
Guided help
Install Glade, prove the binary, and run the first local check from a terminal.
- Run `glade doctor`.
- Initialize an SFDX project.
- Read the first `glade check` result.
Before you start
- You have a terminal open at the project root.
- You have an SFDX project open at the project root.
- Your shell can find
gladeonPATH.
Steps
1. Prove the install
bash
glade version
glade doctorExpected: glade doctor ends with Ready.

2. Initialize and check the project
bash
test -f glade.yml || glade init --project . --yes
glade config validate --project .
glade check --project .Expected: glade check exits 0 for clean source or exits 1 with file and line diagnostics.

Common wrong turn
glade: command not found means the install directory is not on PATH. Add ~/.local/bin to PATH, restart the terminal, and run glade doctor again.