Install
openclaw skills install shuf-toolRandomly shuffle lines of text input. Use for random sampling, data randomization, and selection tasks.
openclaw skills install shuf-toolRandomize the order of input lines. Supports random selection of N lines and sampling with or without replacement for statistical tasks.
shuf-tool [options] [file]
-n N: Output only N random lines-i LO-HI: Treat each number LO..HI as an input line-r: Allow repeated output (sampling with replacement)-e: Treat each argument as an input lineshuf-tool names.txt
shuf-tool -n 5 data.txt
shuf-tool -i 1-100