What problem does it solve? Building HTTP APIs requires repetitive boilerplate for routing, request parsing, middleware, validation, and error handling. This Skill provides ready-to-use Hono patterns on the Bun runtime so you can scaffold type-safe APIs without re-deriving framework idioms. ## Core Features & Use Cases - Routing & Request Handling: HTTP method routes, path parameters, wildcards, route groups, base paths, and query/body parsing via the Hono context object. - Middleware & Validation: Built-in middleware (CORS, logger, basic/bearer auth, compression, ETag, secure headers) plus Zod schema validation through @hono/zod-validator. - Type-Safe RPC Client: Export the app type and consume it with hono/client for end-to-end typed API calls. - Use Case: Scaffold a versioned REST API with /api/v1 route groups, protect admin endpoints with bearer auth, validate POST bodies with Zod schemas, and expose a typed client for your frontend. ## Quick Start Ask the AI to create a Hono API on Bun with CRUD routes for users, Zod-validated request bodies, and CORS middleware enabled.