cloudflare/moltworker: README-based editorial guide
A guide grounded in the README, repository metadata, and license for installing and checking cloudflare/moltworker.
Project scope
cloudflare/moltworker describes itself in the README as "Run OpenClaw, (formerly Moltbot, formerly Clawdbot) on Cloudflare Workers". This article keeps to facts that can be checked in the repository. Stars, forks, and promotional badges are signals of attention, not proof of quality. Under "OpenClaw on Cloudflare Workers", the README says: > Experimental: This is a proof of concept demonstrating that OpenClaw can run in Cloudflare Sandbox. It is not officially supported and may break without notice. Use at your own risk.. That establishes the project's stated boundary, not a production test.
Suitable use cases
The README's "Container Cost Estimate" section gives a useful starting point for deciding whether the project fits: CPU is billed on active usage only, not provisioned capacity. The 10% utilization estimate is a rough baseline for a lightly-used personal assistant; your actual cost will vary with usage.. If that problem is not yours, popularity is a poor reason to adopt it. Project names, commands, and component names are kept as written so a reader can return to the primary source without guessing at terminology. Another checkable README item is: AI Gateway (optional, for API routing/analytics). It can shape a first test, but it does not replace testing in the intended environment.
How it works
The operating model is spread across sections such as "Container Cost Estimate". The source evidence includes: This project uses a standard-1 Cloudflare Container instance (1/2 vCPU, 4 GiB memory, 8 GB disk). Below are approximate monthly costs assuming the container runs 24/7, based on Cloudflare Containers pricing:. This article does not turn missing architecture, performance, or security details into claims. A real deployment still needs a look at the repository layout, configuration files, and release history.
Installation and first run
Start installation from the README's documented entry point. A command that can be checked in the source is: # Install dependencies npm install # Set your API key (direct Anthropic access) npx wrangler secret put ANTHROPIC_API_KEY # Or use Cloudflare AI Gateway instead (see "Optional: Cloudflare AI Gateway" below) # npx wrangler secret put CLOUDFLARE_AI_GATEWAY_API_KEY # npx wrangler secret put CF_AI_GATEWAY_ACCOUNT_ID # npx wrangler secret put CF_AI_GATEWAY_GATEWAY_ID # Generate and set a gateway token (required for remote access) # Save this token - you'll need it to access the Control UI export M When the README contains no runnable command, this article does not invent one. Open its "Requirements" section and confirm system dependencies, default ports, and first-run initialization before using a public server.