Install
openclaw skills install boggleSolve 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 install boggleFast trie-based DFS solver with dictionary-only matching. No AI/LLM guessing — words are validated exclusively against bundled dictionaries (359K English + 1.35M German).
# 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
| Flag | Description |
|---|---|
--lang en/de | Language (default: en; always run EN and DE separately) |
--min N | Minimum word length (default: 3) |
--json | JSON output with scores |
--dict FILE | Custom dictionary (repeatable) |
QUENHARI... → "QU" occupies one position)Dictionaries are auto-downloaded from GitHub on first run if missing.
data/words_english_boggle.txt — 359K English wordsdata/words_german_boggle.txt — 1.35M German words