What problem does it solve? Building Hono web applications requires knowing a wide API surface—routing patterns, middleware, validators, JSX rendering, streaming, and RPC clients—and looking up unfamiliar APIs slows development. This Skill provides inline Hono API knowledge plus CLI-based documentation search and endpoint testing so you can write correct Hono code without leaving your workflow. ## Core Features & Use Cases - Inline API Reference: Covers app construction, routing, context, request parsing, middleware, Zod/Valibot validation, JSX components, streaming/SSE, testing with app.request(), and the type-safe RPC client. - Documentation Search: Use npx hono search and npx hono docs to look up unfamiliar Hono APIs and middleware details on demand. - Request Testing: Use npx hono request or app.request() to test endpoints without starting an HTTP server. - Use Case: You are building a type-safe API backend and need to add validated POST routes, CORS middleware, and an RPC client export—this Skill gives you the exact patterns and type-chaining requirements to do it correctly. ## Quick Start Use the hono skill to create a Hono API with a validated POST /posts route, CORS middleware, and an exported AppType for the RPC client.