skillshare v0.18.5 Release Notes
Release date: 2026-04-01
TL;DR
--helpfor all commands — every CLI command now shows usage info when--helpor-his passed, instead of accidentally executing the command
--help Support for All Commands
All CLI commands now handle --help / -h and display usage information with available flags and examples. Previously, 7 commands (push, pull, sync, status, collect, doctor, ui) did not check for --help, so running e.g. skillshare push --help would actually push to the remote instead of showing help.
skillshare push --help # shows usage, flags, and examples
skillshare sync -h # shows --dry-run, --force, --json, etc.
skillshare ui --help # shows --port, --host, --no-open, etc.Each command's help output includes:
- A brief description of what the command does
- All available flags with short descriptions
- Usage examples
This was reported as #113.
Changelog
- 3f7cfc7 feat: add --help support to all commands