Hosted browser automation API for agents. Screenshots, Playwright scripts, workflows — no local Chrome needed.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install riddle或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install riddle⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/riddle/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: riddle description: "Hosted browser automation API for agents. Screenshots, Playwright scripts, workflows — no local Chrome needed." version: 1.0.0 tags: - browser - screenshots - playwright - automation - api - scraping homepage: https://riddledc.com metadata: openclaw: emoji: "🔍" install: - id: riddle-plugin kind: node label: "Install Riddle plugin (@riddledc/openclaw-riddledc)" ---
Riddle gives your agent a browser without running Chrome locally. One API call: navigate, click, fill forms, take screenshots, capture network traffic. All execution happens on Riddle's servers — your agent stays lean.
> Quick Start: Sign up at riddledc.com/register and get 5 minutes of free browser time — no credit card needed. After that, pricing is $0.50/hour, billed per second. A single screenshot costs roughly $0.004.
@sparticuz/chromium, no Puppeteer version conflicts, no ENOENT / spawn failuresStep 1: Sign up — Create a free account at riddledc.com/register. No credit card required. You get 5 minutes of browser time free.
Step 2: Get your API key — After signing up, grab your API key from the dashboard.
Step 3: Install and configure the plugin:
# Install the plugin
openclaw plugins install @riddledc/openclaw-riddledc
# Allow the tools
openclaw config set tools.alsoAllow --json '["openclaw-riddledc"]'
# Set your API key
openclaw config set plugins.entries.openclaw-riddledc.config.apiKey "YOUR_RIDDLE_API_KEY"
One gotcha: OpenClaw requires plugins in the plugins.allow list. The CLI doesn't have an append flag, so check your current list and add openclaw-riddledc:
# See what you have
openclaw config get plugins.allow
# Add openclaw-riddledc to the array (or edit ~/.openclaw/openclaw.json directly)
jq '.plugins.allow += ["openclaw-riddledc"]' ~/.openclaw/openclaw.json > tmp && mv tmp ~/.openclaw/openclaw.json
# Restart
openclaw gateway restart
After install, you have five tools:
riddle_screenshot — Screenshot a URL. Simplest use case.
Take a screenshot of https://example.com
riddle_screenshots — Batch screenshots of multiple URLs in one job.
Screenshot these three pages: https://example.com, https://example.com/about, https://example.com/pricing
riddle_steps — Run a step-by-step workflow (goto, click, fill, screenshot at each step).
Go to https://example.com/login, fill the email field with "[email protected]", fill the password field, click the submit button, then screenshot the result.
riddle_script — Run full Playwright code for complex automation.
Run a Playwright script that navigates to https://example.com, waits for the dashboard to load, extracts all table rows, and screenshots the page.
riddle_run — Low-level API pass-through for custom payloads.
All tools return screenshots saved to ~/.openclaw/workspace/riddle/screenshots/ (not inline base64) with file paths in the response. Add include: ["har"] to also capture full network traffic.
Need to interact with a page behind login? Pass cookies, localStorage, or custom headers:
Screenshot https://app.example.com/dashboard with these cookies: [session=abc123]
The plugin supports cookies, localStorage entries, and custom HTTP headers as auth parameters.
This plugin was built with the concerns raised by the Moltbook agent community in mind — specifically the discussion around skill provenance, capability manifests, and runtime boundaries.
What this plugin declares (capability manifest in openclaw.plugin.json):
api.riddledc.com — hardcoded allowlist enforced at runtime, not just config time~/.openclaw/workspace/riddle/RIDDLE_API_KEY, which is only sent to the declared endpointWhat this means in practice:
Verify it yourself:
npm audit signatures @riddledc/openclaw-riddledcCHECKSUMS.txt in the packageSECURITY.md in the packageThis is a plugin (auditable code), not a skill (prompt text). You can read every line before installing.
Riddle uses transparent per-execution pricing. A simple screenshot costs fractions of a cent. See riddledc.com for current pricing.
安装 Riddle 后,可以对 AI 说这些话来触发它
Help me get started with Riddle
Explains what Riddle does, walks through the setup, and runs a quick demo based on your current project
Use Riddle to hosted browser automation API for agents
Invokes Riddle with the right parameters and returns the result directly in the conversation
What can I do with Riddle in my design & creative workflow?
Lists the top use cases for Riddle, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/riddle/ 目录(个人级,所有项目可用),或 .claude/skills/riddle/(项目级)。重启 AI 客户端后,用 /riddle 主动调用,或让 AI 根据上下文自动发现并使用。
Riddle 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Riddle 可免费安装使用。请查阅仓库了解许可证信息。
Hosted browser automation API for agents. Screenshots, Playwright scripts, workflows — no local Chrome needed.
Riddle 属于「Design & Creative」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my design & creative tasks using Riddle
Identifies repetitive steps in your workflow and sets up Riddle to handle them automatically