# Send Boggle Solver to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "boggle",
    "name": "Boggle Solver",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/christianhaberl/boggle",
    "canonicalUrl": "https://clawhub.ai/christianhaberl/boggle",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/boggle",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=boggle",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "data/README.md",
      "data/download.py",
      "scripts/solve.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "boggle",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T03:17:31.330Z",
      "expiresAt": "2026-05-07T03:17:31.330Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=boggle",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=boggle",
        "contentDisposition": "attachment; filename=\"boggle-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "boggle"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/boggle"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/boggle",
    "downloadUrl": "https://openagent3.xyz/downloads/boggle",
    "agentUrl": "https://openagent3.xyz/skills/boggle/agent",
    "manifestUrl": "https://openagent3.xyz/skills/boggle/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/boggle/agent.md"
  }
}
```
## Documentation

### 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)

Read the 4x4 grid from the photo (left-to-right, top-to-bottom)
Show the grid to the user and ask for confirmation before solving
Only after user confirms → run the solver
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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: christianhaberl
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T03:17:31.330Z
- Expires at: 2026-05-07T03:17:31.330Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/boggle)
- [Send to Agent page](https://openagent3.xyz/skills/boggle/agent)
- [JSON manifest](https://openagent3.xyz/skills/boggle/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/boggle/agent.md)
- [Download page](https://openagent3.xyz/downloads/boggle)