What problem does it solve? Building APIs that run consistently across Cloudflare Workers, Deno, Bun, and Node.js usually requires rewriting code per platform. This Skill provides guidance for creating a single Hono codebase that runs on any WinterCG-compatible runtime with full TypeScript type safety. ## Core Features & Use Cases - Routing and Middleware: Define REST routes, route groups, and apply built-in middleware like logger, cors, jwt, and bearerAuth. - Validation and Type Safety: Validate request bodies, queries, and params with zValidator and Zod schemas for fully typed handlers. - End-to-End RPC Client: Export route types and consume them with the hc client for autocomplete across frontend and backend. - Use Case: Build a Cloudflare Workers API backed by a D1 database, with JWT authentication and typed bindings, then deploy it with Wrangler. ## Quick Start Ask the AI to scaffold a Hono API with CRUD routes, Zod validation, and JWT auth for deployment on Cloudflare Workers.