CLI Bash Prototypes And Setup Checks
Prompt:
Use nxuskit-cli to prototype this workflow as a Bash/JSON pipeline before adding app code.Follow-up setup prompt:
Use nxuskit-cli provider and license status checks to verify my setup before we implement SDK code.Starter fixture: examples/fixtures/starters/cli-bash-workspace/
Expected behavior:
- Probe
nxuskit-cli --helpandnxuskit-cli --versionbefore recommending subcommands. - Probe subcommand help before use.
- Prefer JSON input and output.
- Use
jqor structured parsing. - Avoid arbitrary
bash -cwrappers. - Avoid printing credentials or asking for secrets.
Verification:
nxuskit-cli --helpnxuskit-cli --versionnxuskit-cli provider status --jsonnxuskit-cli license status --jsonbash scripts/json-call-prototype.shGood result:
- Provider status and license status are visible before SDK code is changed.
- The CLI prototype can be inspected and rerun.