Token导航 LogoToken导航TokenDH.com
效率操作浏览器clawhub未标认证来源可访问clear审计通过

word-jumble单词混乱

Agent Skill

word-jumble 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,581

周安装

189

GitHub Stars

2

下载量

1,497
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:word-jumble(单词混乱)
来源仓库:https://github.com/robin-marv/word-jumble
安装命令:
openclaw skills install word-jumble
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install word-jumble

简介

生成单词拼图游戏,包含字母乱序、提示插图与可打印答题卡组合。

  • 适合语言教学、儿童娱乐或团队建设活动中增加趣味互动环节。
  • 自定义词库可扩展至专业术语或品牌名称,适应多样化应用场景。
  • 输出为 JPG 图像与 TXT 答案分离设计,便于线上线下混合使用。
  • 避免选用生僻词或敏感词汇,防止引发不必要的误解或文化冲突。

SKILL.md

name
word-jumble
description
Generate a Word Jumble puzzle — scrambled words with circled letters that spell out a final idiom, plus a cartoon illustration hint and a printable puzzle image. Use when asked to generate a word jumble, create a daily puzzle, or schedule a jumble. Output is a puzzle JSON file, a cartoon image, and a printable 900×900px screenshot — posting/scheduling is the caller's responsibility. Note: uses the platform image_generate tool to create cartoon illustrations, which sends prompts to an external image generation API (whichever provider is configured).

Word Jumble

Generates a complete Word Jumble puzzle: 4 scrambled words → circled letters → final idiom answer, with a cartoon hint image and a printable rendered screenshot.

This skill does not post anywhere. Posting is the caller's responsibility.

Output

All output goes into an output/ directory (create if needed, default: ~/.openclaw/workspace/word-jumbles/):

  • output/YYYY-MM-DD-puzzle.json — raw puzzle data
  • output/images/YYYY-MM-DD-cartoon.jpg — tall cartoon hint image (9:16)
  • output/images/YYYY-MM-DD-printable.png — rendered 1200×900 printable screenshot

Puzzle Format

type Puzzle = {
  scrambles: {
    scrambled: string[];      // shuffled letters
    unscrambled: string[];    // correct word, letter by letter
    circled: number[];        // 1-indexed positions in unscrambled
    clue_letters: string[];   // letters at those positions (must match)
    clue: string;             // wordplay clue, no answer giveaway
  }[];
  final_puzzle: {
    scrambled: string[];      // circled letters shuffled (spaces for word breaks)
    clue: string;             // clue for the idiom, no answer giveaway
    solution: string[];       // answer letters + spaces
    imageUrl: string;         // relative path to cartoon image
  };
}

Validation Invariants (must all pass)

  1. sorted(scrambled) === sorted(unscrambled) for every word
  2. clue_letters[i] === unscrambled[circled[i] - 1] for all i (1-indexed)
  3. sorted(all clue_letters) === sorted(solution letters excluding spaces)

Always validate in code before proceeding. Use scripts/validate_puzzle.py:

python3 scripts/validate_puzzle.py output/YYYY-MM-DD-puzzle.json

Step-by-Step Process

1. Generate the puzzle JSON

Prompt the LLM (yourself) with this structure:

Make a Word Jumble puzzle whose final answer is a common idiom. Use 4 words (8–10 letters each). Each word has 2–3 circled letters. Verify every circled position extracts the right letter. Verify circled letters anagram to the final answer. Format as JSON matching the Puzzle type.

Then validate the output in code using validate_puzzle.py. Regenerate if invalid — do not proceed with a broken puzzle.

2. Generate the cartoon image

Use image_generate with a 9:16 aspect ratio. The image must:

  • Illustrate the idiom literally and visually (e.g. "bite the dust" → cowboy falling face-first)
  • Be black and white, hand-drawn newspaper comic style
  • Contain no text, no labels, no words that could give away the answer
  • Be a strong visual hint — funny and evocative

Save to output/images/YYYY-MM-DD-cartoon.jpg.

3. Render the printable

Bake the puzzle JSON and cartoon path into assets/puzzle-template.html:

  • Replace __PUZZLE_JSON__ with the JSON string
  • Replace __CARTOON_IMAGE__ with the cartoon filename (relative, same directory when served)

Serve the HTML locally (localhost only):

cd <tmpdir containing html + cartoon> && python3 -m http.server 7891 --bind 127.0.0.1

Open http://localhost:7891/puzzle.html in the browser tool, resize viewport to 900×900, screenshot (fullPage: false), save to output/images/YYYY-MM-DD-printable.png. (Layout is fluid — the body fills 100% width, so the viewport width controls the final puzzle width.)

Kill the server after screenshotting.

4. Return results

Hand back:

  • Path to the printable PNG
  • Path to the cartoon image
  • The puzzle JSON (or path to it)

Do not post anywhere — the caller decides what to do with the output.

Notes

  • Pick fresh idioms each run — avoid repeating recent answers
  • Clues should be clever wordplay, never a synonym of the answer
  • The cartoon image should be funny and slightly absurdist — it's the soul of the puzzle
  • If image_generate is unavailable, skip the cartoon and note it in output

Security

  • The local HTTP server binds to 127.0.0.1 only — not accessible from the network
  • The answer key is printed in plain text, upside-down, in small print at the bottom of the page. This is intentional — it's a puzzle, not a secret. The answer being technically present in the DOM is fine: it's visually hidden by rotation, and the four scrambled clue words are not shown anywhere, so there's still plenty of solving to do.
  • Image generation sends prompts to an external API — callers should be aware of this

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.43%
按下载量换算1,354

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills