What problem does it solve? Adding structured, validated API routes to an existing Cloudflare Workers project involves repetitive boilerplate: route files, middleware, typed bindings, error handling, and endpoint documentation. This Skill automates that scaffolding so you get consistent, typed Hono routes without writing the same patterns by hand. ## Core Features & Use Cases - Route File Generation: Creates one route file per resource group with full CRUD handlers, Zod validation via @hono/zod-validator, and typed Env bindings for D1, KV, and R2. - Middleware & Error Handling: Adds auth middleware, CORS configuration, and a standard JSON error handler so APIs never return HTML redirects to fetch clients. - Documentation & RPC Typing: Generates an API_ENDPOINTS.md file documenting every endpoint, and supports end-to-end type safety between Worker and client using Hono's hc client. - Use Case: After bootstrapping a Worker project, ask for a users and posts API. The Skill produces src/routes/users.ts and src/routes/posts.ts with validated CRUD endpoints, wires them into src/index.ts, and writes matching endpoint documentation. ## Quick Start Add CRUD API routes for users and posts with Zod validation and auth middleware to my existing Cloudflare Workers project, then generate the API_ENDPOINTS.md documentation.