What problem does it solve? Choosing and correctly wiring the right @hono/* middleware package for a Hono app is time-consuming, since the honojs/middleware monorepo spans dozens of packages across validation, auth, observability, servers, renderers, OpenAPI, transpilers, and utilities. ## Core Features & Use Cases - Middleware Selection Guidance: Maps integration needs to the correct @hono package, covering validators (Zod, Valibot, TypeBox, ArkType, Ajv, Typia, Effect, Conform, Standard Schema, TypeDriver), auth (Auth.js, Clerk, Firebase, OIDC, OAuth providers, Stytch, Cloudflare Access, sessions), and observability (OpenTelemetry, Prometheus, Sentry). - Server & Renderer Integration: Provides working setup patterns for GraphQL, tRPC, and MCP servers, plus React Renderer, Qwik City, and Inertia SSR integrations. - OpenAPI & Utilities: Covers Swagger UI/Editor, Zod OpenAPI route definitions, esbuild/Bun transpilers, event emitters, structured logging, UA blocking, Casbin authorization, tsyringe DI, and SSG plugins. - Use Case: When adding request validation to a Hono API, the skill directs you to @hono/zod-validator with the shared validator(target, schema, hook) contract and shows how to read validated data via c.req.valid('json'). ## Quick Start Ask the agent to add Zod-based request validation to a Hono route using the appropriate @hono middleware package.