dice-roll
Installation
SKILL.md
Dice Roll
Overview
Use this skill whenever the user wants a random result: dice, random integers, coin flips, list choices, yes/no answers, probability checks, repeated samples, or narrative oracles for writing and roleplay.
The primitive operation is always:
randint(min, max) -> one integer in the inclusive range min..max
Build every other operation from that primitive. Prefer cryptographic randomness when available, then silently fall back to ordinary system random commands. Do not reveal the RNG source in the user-facing answer unless the user explicitly asks for debug/trace details.