Wheel of Fortune

v1.0.0

Generate a link to an interactive 3D wheel to randomly choose from 2 to 20 user-provided options, optionally weighted by preference.

0· 703·1 current·1 all-time
bypeetzweg/@peetzweg

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for peetzweg/wheel-of-fortune.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Wheel of Fortune" (peetzweg/wheel-of-fortune) from ClawHub.
Skill page: https://clawhub.ai/peetzweg/wheel-of-fortune
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install peetzweg/wheel-of-fortune

ClawHub CLI

Package manager switcher

npx clawhub@latest install wheel-of-fortune
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The SKILL.md describes generating a decision-wheel URL and nothing in the package requests unrelated credentials, binaries, or files. Although the registry entry lacks a short description, the runtime instructions make the purpose clear and proportionate.
Instruction Scope
Instructions are narrowly scoped: collect user options, build the items= query, and present the link. One important note: the options are placed in the URL query and therefore are sent to the external site (https://makedecisionforme.netlify.app/) when the user clicks the link — avoid putting sensitive or private data in options.
Install Mechanism
No install spec and no code files — instruction-only skill. Nothing is written to disk or executed locally by the skill itself.
Credentials
The skill requests no environment variables, credentials, or config paths. This is proportionate for a simple link-generation helper.
Persistence & Privilege
always is false and the skill does not request any elevated or persistent privileges or attempt to modify other skills or system settings.
Assessment
This skill is lightweight and coherent: it only constructs a URL to an externally hosted decision wheel and shows it to the user. Before installing or using it, consider: (1) Privacy — any option text you include will appear in the link query string and may be logged by the external site or intermediaries, so do not put passwords, personal IDs, or other sensitive data in the options. (2) Trust the external site — the skill sends users to makedecisionforme.netlify.app; if you have concerns, open the link in a safe environment or inspect the site first. (3) No credentials are requested and nothing is installed locally. If you want stricter guarantees, request the publisher add a registry description and confirm the target URL is stable and trustworthy.

Like a lobster shell, security has layers — review code before you run it.

latestvk97067eqa8hyk3qb4h51h5egks8117xg
703downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

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.

Comments

Loading comments...