HSX_E_INPUT_MISSING_VALUE
Flag missing value.
What this error means
A flag that takes a value was passed without one.
When this error stops a command, hs-x exits with code 10. With --json, the failure is reported as a structured error whose code field is HSX_E_INPUT_MISSING_VALUE — stable to match on in scripts and agents.
Likely causes
- Flag was the last token on the command line
- Value got eaten by quoting
How to fix it
- Pass the value:
--flag <value>
Still stuck? Re-run the command with --debug for the wire-level detail, or hs-x doctor to check accounts, link state, and connectivity in one pass.
Keep going