What problem does it solve? Developers building edge applications on Cloudflare Workers with Bun need correct project scaffolding, wrangler configuration, and knowledge of which APIs work in the V8 Workers runtime versus Bun-specific APIs, and mistakes here cause deployment failures and runtime errors. ## Core Features & Use Cases - Project Scaffolding & Configuration: Set up package.json scripts, wrangler.toml bindings, and Bun-based dev and deploy workflows. - Workers Runtime Patterns: Implement fetch handlers, Hono routing, KV storage, D1 databases, Durable Objects, R2 buckets, and cron triggers. - Testing & Production Builds: Test workers with bun:test and Miniflare, then bundle with Bun.build targeting browser APIs before deploying with wrangler. - Use Case: A developer wants to ship a JSON API backed by D1 and KV on Cloudflare's edge network; this Skill provides the wrangler.toml bindings, typed Env interfaces, and deploy commands to get it running. ## Quick Start Ask the assistant to scaffold a new Cloudflare Workers project with Bun, configure wrangler.toml with KV and D1 bindings, and deploy it.