fp-taskeither-ref

Quick reference for TaskEither. Use when user needs async error handling, API calls, or Promise-based operations that can fail.

Content Preview
---
name: fp-taskeither-ref
description: Quick reference for TaskEither. Use when user needs async error handling, API calls, or Promise-based operations that can fail.
risk: unknown
source: community
version: 1.0.0
tags: [fp-ts, taskeither, async, promise, error-handling, quick-reference]
---

# TaskEither Quick Reference

TaskEither = async operation that can fail. Like `Promise<Either<E, A>>`.

## Create

```typescript
import * as TE from 'fp-ts/TaskEither'

TE.right(value)          // Async 
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/fp-taskeither-ref.md \
  https://raw.githubusercontent.com/sickn33/antigravity-awesome-skills/main/skills/fp-taskeither-ref/SKILL.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/sickn33/antigravity-awesome-skills

Then reference at skills/fp-taskeither-ref/SKILL.md

Related Skills