CLICommands
tournament
snug tournament <COMMAND>Tournament bracket management.
Subcommands
| Command | What it does |
|---|---|
list | List tournaments |
info | Get tournament details |
create | Create a new tournament |
register | Register for a tournament |
participants | List participants in a tournament |
start | Start a tournament and generate brackets |
matches | List matches for a tournament |
report-score | Report a match score |
standings | Show standings for a tournament |
complete | Finalize a tournament and crown the winner |
Run snug tournament <command> --help for that command's own options.
The global options apply everywhere.
Examples
snug tournament create --name "Summer Championship" --format single_elimination --max-participants 16
snug tournament create --name "Grand Prix" --format double_elimination --max-participants 8
snug tournament create --name "League Season" --format round_robin --max-participants 6
snug tournament create --name "Chess Open" --format swiss --max-participants 12 --check-in-minutes 30
snug tournament list
snug tournament info <tournament-id>
snug tournament participants <tournament-id>
snug tournament matches <tournament-id>
snug tournament register <tournament-id>
snug tournament start <tournament-id>
snug tournament report-score <tournament-id> <match-id> --winner <participant-id> --score "2-1"
snug tournament standings <tournament-id>
snug tournament complete <tournament-id>Next
- tournament guide - what the service does and when to reach for it.
- API reference - every endpoint these commands call.
- CLI reference - global options, output modes, and exit codes.