effect-patterns-core-concepts
SKILL.md
Effect-TS Patterns: Core Concepts
This skill provides 49 curated Effect-TS patterns for core concepts. Use this skill when working on tasks related to:
- core concepts
- Best practices in Effect-TS applications
- Real-world patterns and solutions
🟢 Beginner Patterns
Combining Values with zip
Rule: Use zip to run two computations and combine their results into a tuple, preserving error and context handling.
Good Example:
import { Effect, Either, Option, Stream } from "effect";