What problem does it solve? Building APIs with Hono requires knowing its specific routing syntax, middleware patterns, validation helpers, and runtime adapters. This Skill provides inline API reference knowledge and testing workflows so you can write correct Hono code without leaving your editor to search documentation. ## Core Features & Use Cases - Routing & Middleware Reference: Covers path parameters, wildcards, route grouping with app.route() and basePath(), plus built-in middleware like CORS, JWT, and basic auth. - Validation & Type-Safe RPC: Shows Zod and Valibot validator integration and the Hono Client (hc) pattern for end-to-end type inference between server and client. - Endpoint Testing Without a Server: Uses npx hono request and app.request() to test endpoints directly, with workers-fetch as a fallback for Cloudflare Workers bindings. - Use Case: You are scaffolding a REST API on Cloudflare Workers. Use this Skill to set up typed routes with Zod validation, add JWT middleware, and verify each endpoint with npx hono request before deploying. ## Quick Start Ask the AI to create a Hono API route with Zod validation and test it using npx hono request.