Agent Skills: Decide Skill 🎲

Decision helper β€” coin flip, dice roll, pick from options, Magic 8-Ball.

UncategorizedID: timkrase/clawdis-skills/decide

Install this agent skill to your local

pnpm dlx add-skill https://github.com/timkrase/clawdis-skills/tree/HEAD/decide

Skill Files

Browse the full folder contents for decide.

Download Skill

Loading file tree…

decide/SKILL.md

Skill Metadata

Name
decide
Description
Decision helper β€” coin flip, dice roll, pick from options, Magic 8-Ball.

Decide Skill 🎲

When you can't decide, let fate decide for you!

Quick Start

# Coin flip
{baseDir}/scripts/decide.js flip

# Roll dice (default: d6)
{baseDir}/scripts/decide.js roll
{baseDir}/scripts/decide.js roll d20
{baseDir}/scripts/decide.js roll 3d6

# Pick from options
{baseDir}/scripts/decide.js pick "Pizza" "Burger" "Sushi"

# Magic 8-Ball
{baseDir}/scripts/decide.js 8ball "Should I go to the gym?"

# Yes or No
{baseDir}/scripts/decide.js yesno

# Random number (1-100 default, or specify range)
{baseDir}/scripts/decide.js number
{baseDir}/scripts/decide.js number 1 10

Commands

| Command | Description | Example | |---------|-------------|---------| | flip | Coin flip (Heads/Tails) | decide.js flip | | roll | Dice roll (NdX format) | decide.js roll 2d20 | | pick | Random pick from options | decide.js pick A B C | | 8ball | Magic 8-Ball wisdom | decide.js 8ball "Will it work?" | | yesno | Simple yes/no | decide.js yesno | | number | Random number | decide.js number 1 100 |

Usage in Chat

When Tim can't decide:

  • "Pizza oder Burger?" β†’ pick "Pizza" "Burger"
  • "Soll ich Sport machen?" β†’ 8ball or yesno
  • "Gib mir eine Zahl zwischen 1 und 10" β†’ number 1 10
  • "WΓΌrfel mal" β†’ roll

Add dramatic flair to your responses! 🎭

Output Format

Returns JSON for easy parsing:

{
  "type": "flip",
  "result": "Heads",
  "emoji": "πŸͺ™"
}

Use --raw for plain text output (just the result).