What problem does it solve? Effect v4 and effect-smol APIs differ significantly from older Effect v2/v3 versions, and AI-generated code often relies on outdated patterns or hallucinated APIs. This Skill grounds all Effect-related work in the actual current source code, preventing incorrect implementations. ## Core Features & Use Cases - Source-Verified API Usage: Clones and searches the effect-smol repository to verify exact APIs, examples, and naming patterns before writing code. - Idiomatic Patterns: Enforces current conventions like Effect.gen for workflows, Effect.fn for named effects, Schema for data shapes, and Schema.TaggedErrorClass for typed errors. - Testing Guidance: Directs use of testEffect helpers and it.live for filesystem, git, HTTP, and process tests, with explicit layer composition. - Use Case: When asked to add a new service method with typed errors to an Effect-based codebase, the Skill first checks the effect-smol source and existing repo patterns, then implements the service using current v4 APIs with proper layer wiring. ## Quick Start Ask the assistant to implement a new Effect service with typed errors and tests, verifying all APIs against the effect-smol source first.