effect-scope

effect-scope is a skill for Claude Code, Codex from mpsuesser/pi-effect-harness. It costs 91 tokens per session (7,728 once invoked), scanned A, original, MIT.

A TypeScript skill for managing resources that need cleanup, such as files, connections, temporary data, or event listeners, with the Effect library.

In plain words
What is it for?
Use it when acquiring and releasing resources with Effect scopes, finalizers, managed lifetimes, or resources that must be replaced and closed safely.
Why use it?
It helps ensure cleanup still happens when work finishes normally, fails, or is interrupted.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/mpsuesser/pi-effect-harness/effect-scope
Any agent
npx skills add mpsuesser/pi-effect-harness --skill effect-scope
Clone the repo
git clone --depth 1 https://github.com/mpsuesser/pi-effect-harness

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for effect-scope

README.md
[![agentmods](https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-scope.svg)](https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-scope)
Your own site
<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-scope"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-scope.svg" alt="Measured on agentmods" height="20"></a>
Per session 91 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,728 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00091 $0.07728
Opus 5 $0.00046 $0.03864
Sonnet 5 $0.00018 $0.01546
Haiku 4.5 $0.00009 $0.00773

Measured 5d ago against content hash 20b2fe2bbc1e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

effect-scope scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

harnesses/effect/skills/effect-scope/SKILL.md · 680 lines

How it starts

The opening of the file, as written. The whole thing — 680 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are an Effect TypeScript expert specializing in resource lifecycle management with Scope, finalizers, and scoped effects.

Effect Source Reference

The Effect v4 source is at ~/.cache/effect-v4/. Read it directly when in doubt — v4 differs substantially from v3 and from most training data.

Key files:

  • packages/effect/src/Scope.tsScope/Closeable interfaces, state model, make, fork, close, provide, use, addFinalizer(Exit)
  • packages/effect/src/Effect.tsacquireRelease, acquireDisposable, acquireUseRelease, addFinalizer, scoped, scopedWith, scope, the onExit/ensuring/onError/onInterrupt family, forkScoped/forkIn (grep; the file is huge)
  • packages/effect/src/internal/effect.ts — runtime semantics: finalizer ordering, close behavior, scoped implementation (search for scopeClose, scopeCloseFinalizers)
  • packages/effect/src/ScopedRef.ts — resource-backed mutable reference with release-on-replace
  • packages/effect/src/Layer.ts — how layers fork and refcount scopes (fromBuild, memoMapBuild)
  • packages/effect/test/Scope.test.ts + test/ScopedRef.test.ts — edge-case semantics
  • ai-docs/src/01_effect/04_resources/ — runnable lessons: acquireRelease inside a Layer, background tasks via Layer.effectDiscard + forkScoped, LayerMap
  • migration/scope.md + migration/v3-to-v4.md — v3 → v4 renames (Scope.extendScope.provide, Layer.scopedLayer.effect)

Core Model

A Scope is a lifetime boundary. Acquiring a resource registers a cleanup effect (a finalizer) on the scope; closing the scope runs all registered finalizers with the Exit value that ended the work. Scope appears in an effect's requirements R like any other service:

// Acquiring puts Scope into R…
const acquireRelease: <A, E, R, R2>(
	acquire: Effect.Effect<A, E, R>,
	release: (a: A, exit: Exit.Exit<unknown, unknown>) => Effect.Effect<unknown, never, R2>,
	options?: { readonly interruptible?: boolean }
) => Effect.Effect<A, E, R | R2 | Scope.Scope>;

// …and eliminating Scope decides the resource's lifetime
const scoped: <A, E, R>(
	self: Effect.Effect<A, E, R>
) => Effect.Effect<A, E, Exclude<R, Scope.Scope>>;

Read the full file on GitHub · 680 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 680 lines · 91 tokens per session scan A 20b2fe2bbc1e

Subscribe to this mod's changes

effect-scope is a skill published in the GitHub repository mpsuesser/pi-effect-harness (24 stars, last pushed 2mo ago), licensed MIT. It adds 91 tokens to every session and 7,728 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.