What problem does it solve? Building web servers and APIs that run consistently across Cloudflare Workers, Deno, Bun, Node.js, AWS Lambda, and other JavaScript runtimes requires learning each platform's quirks. This Skill provides complete guidance for Hono, a Web Standards-based framework where the same application code runs everywhere with only entry-point wiring differing. ## Core Features & Use Cases - Routing, Middleware & Context: Register routes with path params, wildcards, and regex; compose middleware with typed context variables; handle requests, responses, cookies, and errors via HTTPException and app.onError. - Type-Safe RPC & Validation: Share route types between server and client with hc(), validate requests with validator() or zValidator, and infer path params automatically from inline handlers. - JSX, Streaming & SSG: Render server-side JSX with layouts and Suspense streaming, stream SSE and WebSocket responses, and generate static sites with toSSG. - Use Case: Build a REST API on Cloudflare Workers with D1 bindings, typed via the Bindings generic, validated with zValidator, and consumed by a fully typed RPC client in a frontend app. ## Quick Start Use the hono skill to scaffold a Hono API with routing, middleware, and typed RPC for deployment on Cloudflare Workers.