·effect-ts-resources
</>

effect-ts-resources

Use when managing resource lifecycles (DB connections, file handles, sockets) where cleanup must be guaranteed despite failures, interruptions, or potential resource leaks.

12Installs·2Trend·@mrevanzak

Installation

$npx skills add https://github.com/mrevanzak/effect-ts-skills --skill effect-ts-resources

How to Install effect-ts-resources

Quickly install effect-ts-resources AI skill to your development environment via command line

  1. Open Terminal: Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.)
  2. Run Installation Command: Copy and run this command: npx skills add https://github.com/mrevanzak/effect-ts-skills --skill effect-ts-resources
  3. Verify Installation: Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Source: mrevanzak/effect-ts-skills.

SKILL.md

View raw

Overview Manage resource lifecycles using Scope and acquireRelease to guarantee cleanup. Cleanup always runs, even if the program fails, throws, or is interrupted.

Core Pattern Manual try/finally is error-prone in Effect because it bypasses interruption handling.

| try { conn.open() } finally { conn.close() } | Effect.acquireRelease(open, close) |

Use when managing resource lifecycles (DB connections, file handles, sockets) where cleanup must be guaranteed despite failures, interruptions, or potential resource leaks. Source: mrevanzak/effect-ts-skills.

Facts (cite-ready)

Stable fields and commands for AI/search citations.

Install command
npx skills add https://github.com/mrevanzak/effect-ts-skills --skill effect-ts-resources
Category
</>Dev Tools
Verified
First Seen
2026-03-10
Updated
2026-03-11

Browse more skills from mrevanzak/effect-ts-skills

Quick answers

What is effect-ts-resources?

Use when managing resource lifecycles (DB connections, file handles, sockets) where cleanup must be guaranteed despite failures, interruptions, or potential resource leaks. Source: mrevanzak/effect-ts-skills.

How do I install effect-ts-resources?

Open your terminal or command line tool (Terminal, iTerm, Windows Terminal, etc.) Copy and run this command: npx skills add https://github.com/mrevanzak/effect-ts-skills --skill effect-ts-resources Once installed, the skill will be automatically configured in your AI coding environment and ready to use in Claude Code, Cursor, or OpenClaw

Where is the source repository?

https://github.com/mrevanzak/effect-ts-skills

Details

Category
</>Dev Tools
Source
skills.sh
First Seen
2026-03-10