What problem does it solve? Effect's API surface changes between versions, and AI assistants often generate outdated v2/v3 patterns from memory. This Skill grounds all Effect-related code generation and answers in the actual effect-smol source repository, eliminating hallucinated APIs and stale patterns. ## Core Features & Use Cases - Source-Verified Answers: Clones and searches the effect-smol repository to verify exact APIs, examples, and naming patterns before writing any Effect code. - Idiomatic Code Generation: Produces Effect v4 patterns including Effect.gen workflows, Effect.fn named effects, Schema-based domain modeling, and explicit layer composition. - Testing Guidance: Applies repo-specific test helpers like testEffect and it.live for filesystem, HTTP, child process, and timing behavior. - Use Case: When adding a new service method to the codebase, the Skill checks the effect-smol source and existing repo conventions first, then writes a typed service with branded ID schemas and TaggedErrorClass errors that match house style. ## Quick Start Ask the assistant to implement a new Effect service or refactor existing code to Effect v4 patterns, and it will verify every API against the effect-smol source before writing code.