Install
openclaw skills install @terrycarter1985/dice-rollerRoll dice using standard tabletop notation (e.g. 2d6+3, 1d20, 4d6kh3). Use when the user asks to roll dice, generate random numbers within a dice-shaped distribution, resolve RPG-style checks, or needs reproducible random rolls via a seed. Supports modifiers and "keep highest" (kh) notation.
openclaw skills install @terrycarter1985/dice-rollerRoll dice in standard notation via scripts/roll.py.
python3 scripts/roll.py <spec> [--seed N] [--quiet]
spec: dice notation — <count>d<sides>[+/-<mod>][kh<keep>]
2d6, 1d20+5, 3d8-1, 4d6kh3 (roll 4d6, keep highest 3)--seed N: optional integer seed for reproducible rolls--quiet: print only the totalDefault prints rolls, kept dice (if applicable), modifier, and total:
Rolls: [6, 2] | Modifier: +3 | Total: 11
--quiet prints only the integer total.
kh keep count cannot exceed dice rolled.