What problem does it solve? Building HTTP servers with Effect v4's unstable effect/unstable/http modules requires navigating a service-based router model, schema decoding, multipart handling, and platform adapters that differ significantly from v3 — this Skill provides the exact patterns and API references to do it correctly. ## Core Features & Use Cases - Routing & Middleware: Register routes with HttpRouter.add/addAll/use, decode path/search params with schemas, and compose route-scoped or global middleware with typed error handling. - Request & Response Handling: Schema-validate JSON/form/multipart bodies, build responses with HttpServerResponse constructors, stream bodies, manage cookies, and map domain errors to status codes via HttpServerRespondable. - Platform Serving & Testing: Serve on Node or Bun with graceful shutdown, handle WebSocket upgrades, serve static files, and test handlers in-memory without binding a real port. - Use Case: You need a typed REST endpoint that accepts a multipart file upload with size limits, validates fields against a Schema, and returns a 413 on oversized files — this Skill gives the exact Multipart limit references and error mapping code. ## Quick Start Ask the AI to create an Effect v4 HTTP server with a GET route, schema-decoded path params, and a NodeHttpServer layer on port 3000.