effect-fiber

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

A guide to managing lightweight background tasks in Effect, a TypeScript library for describing and running reliable programs. It covers starting, waiting for, cancelling, and supervising those tasks.

In plain words
What is it for?
Building cancellable jobs, restarting work, keeping only the newest task, and supervising one task, keyed tasks, or groups of tasks.
Why use it?
It helps prevent background work from being abandoned, duplicated, or left running after it should stop.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Building cancellable jobs, restarting work, keeping only the newest task, and supervising one task, keyed tasks, or groups of tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mpsuesser/pi-effect-harness/effect-fiber
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.

Any agent
npx skills add mpsuesser/pi-effect-harness --skill effect-fiber
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-fiber

README.md
[![agentmods](https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-fiber/github.svg)](https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-fiber)
Your own site
<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-fiber"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-fiber/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for effect-fiber

Your own site · 80×15
<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-fiber"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-fiber.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 85 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,944 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00085 $0.07944
Opus 5 $0.00043 $0.03972
Sonnet 5 $0.00017 $0.01589
Haiku 4.5 $0.00009 $0.00794

Measured 9d ago against content hash fa895b0cd7ca, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

effect-fiber 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 9d 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-fiber/SKILL.md · 730 lines

How it starts

The opening of the file, as written. The whole thing — 730 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 fiber lifecycle, interruption, and supervision with Fiber, FiberHandle, FiberMap, and FiberSet.

Effect Source Reference

The Effect v4 source is available at ~/.cache/effect-v4/. Browse and read files there directly to look up APIs, types, and implementations.

Reference this for:

  • Fiber interface and await/join/interrupt operations (packages/effect/src/Fiber.ts)
  • Fork variants, interruption combinators, run* APIs (packages/effect/src/Effect.ts)
  • Single-slot supervision (packages/effect/src/FiberHandle.ts)
  • Keyed fiber collections (packages/effect/src/FiberMap.ts)
  • Grow-only fiber collections (packages/effect/src/FiberSet.ts)
  • Runtime internals — FiberImpl, fork/interrupt mechanics (packages/effect/src/internal/effect.ts)
  • v3 → v4 fork renames (migration/forking.md), keep-alive changes (migration/fiber-keep-alive.md — partially stale, see section 9)
  • Real usage and edge cases (packages/effect/test/FiberHandle.test.ts, FiberMap.test.ts, FiberSet.test.ts)

Core Model

A Fiber<A, E = never> is a handle to a lightweight, cooperatively scheduled execution of an Effect that may still be running or may have completed. It is the unit of concurrency in Effect. A fiber's outcome is an Exit<A, E> — success with A, or failure with a Cause<E> that can contain typed errors, defects, and interruptions.

import {
	Cause,
	Deferred,
	Effect,
	Exit,
	Fiber,
	FiberHandle,
	FiberMap,
	FiberSet,
	Schedule,
	Scope,
	Semaphore
} from 'effect';

Key facts to internalize:

  • Structured concurrency. A fiber forked with Effect.forkChild is attached to its parent: when the parent fiber completes (success, failure, or interruption), all still-running children are interrupted before the parent's exit settles. forkScoped/forkIn tie the fiber's lifetime to a Scope instead; forkDetach produces a global fiber with no automatic lifetime.
  • Interruption is cooperative. It is observed at effect boundaries; uninterruptible regions and finalizers run to completion first. Interrupting is itself an effect that waits for the target to fully settle.
  • Fiber ids are plain numbers in v4 (there is no composite FiberId type). Interruptors are recorded in the Cause as a ReadonlySet<number>.
  • Exit is an Effect. You can yield* an Exit directly to propagate its result into the current fiber.
  • Useful synchronous members on the fiber object: fiber.id, fiber.pollUnsafe(): Exit<A, E> | undefined, fiber.addObserver(cb): () => void (returns an unsubscribe function), fiber.interruptUnsafe(fiberId?).

Read the full file on GitHub · 730 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. 9d ago First seen · 730 lines · 85 tokens per session scan A fa895b0cd7ca

Subscribe to this mod's changes

effect-fiber is a skill published in the GitHub repository mpsuesser/pi-effect-harness (24 stars, last pushed 2mo ago), licensed MIT. It adds 85 tokens to every session and 7,944 once invoked, about $0.0004 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.