✓ Verified 💻 Development ✓ Enhanced Data

Wheel Of Fortune

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

Rating
4.7 (378 reviews)
Downloads
6,589 downloads
Version
1.0.0

Overview

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

Complete Documentation

View Source →

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

text
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:

text
?items=Pizza,Sushi,Tacos,Burgers

Weighted (Pizza is 3x more likely than Sushi):

text
?items=Pizza:3,Sushi:1,Tacos:2

Names with spaces:

text
?items=Thai%20Food,Fish%20and%20Chips,Mac%20%26%20Cheese

How to respond

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

Installation

Terminal bash

openclaw install wheel-of-fortune
    
Copied!

💻Code Examples

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

httpsmakedecisionformenetlifyappitemsoption1weightoption2weightoption3weight.txt
### 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:

Tags

#web_and-frontend-development

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author peetzweg
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install wheel-of-fortune