hstack (local stack)
Validation (typecheck, lint, test)
Run checks on the active checkout or stack-scoped (recommended).
Most hstack commands support --help and --json.
Validate the active checkout (non-stack)
hstack typecheck all
hstack lint all
hstack test allTarget a specific area:
hstack typecheck ui
hstack typecheck cli
hstack typecheck serverValidate inside a stack (recommended)
Stack-scoped validation applies that stack’s env (ports, server URLs, DB config, CLI home, etc).
hstack stack typecheck exp1 all
hstack stack lint exp1 all
hstack stack test exp1 allTarget a specific area:
hstack stack typecheck exp1 ui
hstack stack lint exp1 cli
hstack stack test exp1 serverCI-oriented checks
hstack also provides a ci command for standardized runs:
hstack ci --helpUse this when you want a repeatable “policy” run (and to align with what maintainers will run).