skills$openclaw/boggle
christianhaberl8.9k

by christianhaberl

boggle – OpenClaw Skill

boggle is an OpenClaw Skills integration for coding workflows. Solve Boggle boards — find all valid words (German + English) on a 4x4 letter grid. Use when the user shares a Boggle photo, asks for words on a grid, or plays word games. Includes 1.7M word dictionaries (DE+EN).

8.9k stars1.8k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameboggle
descriptionSolve Boggle boards — find all valid words (German + English) on a 4x4 letter grid. Use when the user shares a Boggle photo, asks for words on a grid, or plays word games. Includes 1.7M word dictionaries (DE+EN). OpenClaw Skills integration.
ownerchristianhaberl
repositorychristianhaberl/boggle
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @christianhaberl/boggle
last updatedFeb 7, 2026

Maintainer

christianhaberl

christianhaberl

Maintains boggle in the OpenClaw Skills directory.

View GitHub profile
File Explorer
8 files
.
data
download.py
573 B
README.md
210 B
scripts
solve.py
8.3 KB
_meta.json
280 B
README.md
1.6 KB
SKILL.md
2.2 KB
SKILL.md

name: boggle description: Solve Boggle boards — find all valid words (German + English) on a 4x4 letter grid. Use when the user shares a Boggle photo, asks for words on a grid, or plays word games. Includes 1.7M word dictionaries (DE+EN).

Boggle Solver

Fast trie-based DFS solver with dictionary-only matching. No AI/LLM guessing — words are validated exclusively against bundled dictionaries (359K English + 1.35M German).

Workflow (from photo)

  1. Read the 4x4 grid from the photo (left-to-right, top-to-bottom)
  2. Show the grid to the user and ask for confirmation before solving
  3. Only after user confirms → run the solver
  4. Always run English and German SEPARATELY — present as two labeled sections (🇬🇧 / 🇩🇪)

Solve a board

# English
python3 skills/boggle/scripts/solve.py ELMU ZBTS ETVO CKNA --lang en

# German
python3 skills/boggle/scripts/solve.py ELMU ZBTS ETVO CKNA --lang de

Each row is one argument (4 letters). Or use --letters:

python3 skills/boggle/scripts/solve.py --letters ELMUZBTSETVOCKNA --lang en

Options

FlagDescription
--lang en/deLanguage (default: en; always run EN and DE separately)
--min NMinimum word length (default: 3)
--jsonJSON output with scores
--dict FILECustom dictionary (repeatable)

Scoring (standard Boggle)

  • 3-4 letters: 1 pt
  • 5 letters: 2 pts
  • 6 letters: 3 pts
  • 7 letters: 5 pts
  • 8+ letters: 11 pts

How it works

  • Builds a trie from dictionary files (one-time, ~11s)
  • DFS traversal from every cell, pruned by trie prefixes
  • Adjacency: 8 neighbors (horizontal, vertical, diagonal)
  • Each cell used at most once per word
  • Qu tile support: Standard Boggle "Qu" tiles are handled as a single cell (e.g., QUENHARI... → "QU" occupies one position)
  • All matching is dictionary-only — no generative/guessed words

Data

Dictionaries are auto-downloaded from GitHub on first run if missing.

  • data/words_english_boggle.txt — 359K English words
  • data/words_german_boggle.txt — 1.35M German words

Performance

  • Trie build: ~11s (first run, 1.7M words)
  • Solve: <5ms per board
README.md

🎲 Boggle Solver — OpenClaw Skill

Fast trie-based DFS Boggle solver for OpenClaw.

Features

  • 1.7M dictionary words — 359K English + 1.35M German
  • Qu-tile support — standard Boggle rules
  • < 5ms solve time per board
  • JSON output with Boggle scoring
  • Bilingual — run English and German separately

Install

clawdhub install boggle

Or manually copy the skills/boggle/ folder into your OpenClaw workspace.

Usage

# English
python3 scripts/solve.py ELMU ZBTS ETVO CKNA --lang en

# German
python3 scripts/solve.py ELMU ZBTS ETVO CKNA --lang de

# With --letters flag
python3 scripts/solve.py --letters ELMUZBTSETVOCKNA --lang en

# JSON output
python3 scripts/solve.py ELMU ZBTS ETVO CKNA --lang en --json

Options

FlagDescription
--lang en/deDictionary language (default: en)
--min NMinimum word length (default: 3)
--jsonJSON output with scores
--dict FILECustom dictionary (repeatable)

Scoring (standard Boggle)

  • 3-4 letters: 1 pt
  • 5 letters: 2 pts
  • 6 letters: 3 pts
  • 7 letters: 5 pts
  • 8+ letters: 11 pts

How it works

  • Builds a trie from dictionary files
  • DFS traversal from every cell, pruned by trie prefixes
  • Adjacency: 8 neighbors (horizontal, vertical, diagonal)
  • Each cell used at most once per word
  • Qu tiles handled as single cell
  • All matching is dictionary-only — no AI guessing

AI-Reviewed

This skill was reviewed by Codex and Gemini Code Assist across 5 review rounds. All findings addressed.

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install boggle?

Run openclaw add @christianhaberl/boggle in your terminal. This installs boggle into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/christianhaberl/boggle. Review commits and README documentation before installing.