wheel-of-fortune

Web & Frontend Development
v1.0.0
Benign

Use this skill when a user is stuck choosing between multiple options and wants a fun, random way to decide.

505 downloads505 installsby @peetzweg

Setup & Installation

Install command

clawhub install peetzweg/wheel-of-fortune

If the CLI is not installed:

Install command

npx clawhub@latest install peetzweg/wheel-of-fortune

Or install with OpenClaw CLI:

Install command

openclaw skills install peetzweg/wheel-of-fortune

or paste the repo link into your assistant's chat

Install command

https://github.com/openclaw/skills/tree/main/skills/peetzweg/wheel-of-fortune

What This Skill Does

Generates a URL to an interactive 3D spinning wheel for making random decisions. You give it a list of options (optionally weighted), and it builds a link the user can click to spin.

Use this skill when a user is stuck choosing between multiple options and wants a fun, random way to decide.

When to Use It

  • Picking a random restaurant when the group can't decide
  • Choosing between movie or activity options
  • Running a weighted random selection where some options are more likely
  • Adding a fun element to team decisions or standups
  • Breaking a deadlock between two or more equal choices
View original SKILL.md file
# Glucksrad — Decision Wheel

Use this skill when a user is stuck choosing between multiple options and wants a fun, random way to decide. Generate a URL that opens an interactive 3D spinning wheel.

## When to use

- The user can't decide between a few options (e.g. "where should we eat?", "which movie should we watch?")
- The user explicitly asks you to pick one at random or spin a wheel
- There are 2–20 concrete options to choose from

Do NOT use this when the user needs a reasoned recommendation — only when randomness is welcome.

## URL format

```
https://makedecisionforme.netlify.app/?items=Option1:Weight,Option2:Weight,Option3:Weight
```

### Rules

- **Base URL**: `https://makedecisionforme.netlify.app/`
- **Query parameter**: `items` — comma-separated list of entries
- **Entry format**: `Name:Weight`
  - `Name` — the option label. URL-encode special characters (spaces → `%20`, `&` → `%26`, etc.)
  - `Weight` — optional integer (defaults to `1`). Higher weight = larger slice on the wheel. Use weights when the user indicates a preference or when options aren't equally likely.
- Items are separated by commas (`,`). Do not add spaces between items.

### Examples

Equal chances:
```
?items=Pizza,Sushi,Tacos,Burgers
```

Weighted (Pizza is 3x more likely than Sushi):
```
?items=Pizza:3,Sushi:1,Tacos:2
```

Names with spaces:
```
?items=Thai%20Food,Fish%20and%20Chips,Mac%20%26%20Cheese
```

## How to respond

1. Collect the options from the user's message.
2. Build the URL with the `items` query parameter.
3. Present the link to the user so they can click it and spin the wheel.

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Picking a random restaurant when the group can't decide

AGENT
  1. 1Picking a random restaurant when the group can't decide
  2. 2Choosing between movie or activity options
  3. 3Running a weighted random selection where some options are more likely
  4. 4Adding a fun element to team decisions or standups
  5. 5Breaking a deadlock between two or more equal choices
OUTPUT
Use this skill when a user is stuck choosing between multiple options and wants a fun, random way to decide.

Share this skill

Security Audits

VirusTotalBenign
OpenClawBenign
View full report

These signals reflect official OpenClaw status values. A Suspicious status means the skill should be used with extra caution.

Details

LanguageMarkdown
Last updatedFeb 26, 2026