effect-parallelization

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

A guide to running Effect programs concurrently, meaning several pieces of work can run at the same time. It covers parallel work, racing alternatives, limits on simultaneous tasks, and coordination tools.

In plain words
What is it for?
Use it to fan out work over a collection, limit parallel operations with semaphores, race alternatives for the first result, coordinate tasks, and apply timeouts.
Why use it?
It helps organise concurrent work while controlling how much runs at once and how competing tasks are handled.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-parallelization.svg)](https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-parallelization)
Your own site
<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-parallelization"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-parallelization.svg" alt="Measured on agentmods" height="20"></a>
Per session 79 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,139 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.00079 $0.07139
Opus 5 $0.00039 $0.03570
Sonnet 5 $0.00016 $0.01428
Haiku 4.5 $0.00008 $0.00714

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

Security

Grade A, and why

effect-parallelization 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 3d 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-parallelization/SKILL.md · 674 lines

How it starts

The opening of the file, as written. The whole thing — 674 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 declarative concurrency — Effect.all, Effect.forEach, racing, and the coordination primitives Semaphore, PartitionedSemaphore, and Latch.

Effect Source Reference

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

Key files:

  • packages/effect/src/Effect.tsall, forEach, race/raceAll/raceFirst/raceAllFirst, firstSuccessOf, timeout/timeoutOption/timeoutOrElse, zip/zipWith, filter/filterMap/filterMapEffect, partition, validate, findFirst, replicate/replicateEffect, withConcurrency (very large file — grep for the export, then read its JSDoc)
  • packages/effect/src/Types.ts — the Concurrency type (number | "unbounded" | "inherit")
  • packages/effect/src/References.tsCurrentConcurrency reference read by "inherit"
  • packages/effect/src/Semaphore.ts — counting semaphore: make, withPermit(s), withPermitsIfAvailable, take/release/releaseAll, resize
  • packages/effect/src/PartitionedSemaphore.ts — keyed permit pool with round-robin fairness across partitions
  • packages/effect/src/Latch.ts — open/closed gate: make, open, close, release, await, whenOpen
  • packages/effect/src/internal/effect.ts — the actual implementations (forEachConcurrent, raceAll, ...) when you need exact semantics
  • packages/effect/test/Effect.test.tsforEach/all/partition/validate/raceAll describe blocks with interruption edge cases
  • packages/effect/test/Semaphore.test.ts, test/PartitionedSemaphore.test.ts, test/Latch.test.ts — real usage with TestClock
  • migration/v3-to-v4.md — rename map (e.g. Effect.makeSemaphoreSemaphore.make)

Core Model

Concurrency in Effect is declarative: combinators that operate on many effects take a concurrency option, fork child fibers internally, and uphold structured concurrency — when the combined effect finishes, fails, or is interrupted, every in-flight child fiber is interrupted before the result is produced.

Read the full file on GitHub · 674 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. 3d ago First seen · 674 lines · 79 tokens per session scan A f729d65c348f

Subscribe to this mod's changes

effect-parallelization is a skill published in the GitHub repository mpsuesser/pi-effect-harness (23 stars, last pushed 2mo ago), licensed MIT. It adds 79 tokens to every session and 7,139 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.

Related

Other skills, from other repositories

ts-sdk-author

Design, build, verify, and publish production-grade TypeScript SDKs as npm packages inside a pnpm monorepo. Covers workspace layout, public API and module boundaries, plugin extension points, branded types and library-tuned tsconfig, tsdown bundling (vs tsup/tsc-only/unbuild), package.json exports with dual ESM+CJS…

mindfold-ai/Trellis · 219 tokens

effect

Opinionated guide for building production TypeScript applications with Effect v4. Use when implementing Effect workflows, services, layers, schemas, configuration, schedules, caches, streams, HTTP clients, or tests.

kitlangton/skills · 42 tokens

code-design

TypeScript conventions, code design principles (SOLID, self-documenting code, file organization), structural design heuristics (dependency width, LoD, output arguments), pnpm rules, ES2024 target, Pi SDK patterns, and Biome/ESLint conflict workarounds. Load during implementation, refactoring, or code review.

gotgenes/pi-anthropic-auth · 72 tokens

pi

Use when needing a minimal, extensible terminal AI coding agent harness in TypeScript with plugin architecture. Pi: minimalist terminal AI coding agent emphasizing simplicity and composability.

znlgis/opengis-skills · 35 tokens

typescript-style

Validate TypeScript/React code against style and architectural conventions.

peteski22/agent-pragma · 14 tokens

effect-best-practices

Enforces Effect-TS patterns for services, errors, layers, and atoms. Use when writing code with Effect.Service, Schema.TaggedError, Layer composition, or effect-atom React components.

betalyra/effect-skills · 45 tokens