effect-testing

effect-testing is a skill for Claude Code, Codex from mpsuesser/pi-effect-harness. It costs 49 tokens per session (8,499 once invoked), scanned A, original, MIT.

Testing guidance for Effect, a TypeScript library for managing asynchronous work and services, and for ordinary TypeScript functions. It explains when to use the Effect-specific test tools or Vitest, a JavaScript testing framework.

In plain words
What is it for?
Testing asynchronous operations, services, layers, clocks, errors, transactions, and pure functions, including property-based tests that check many generated inputs.
Why use it?
It helps developers choose suitable testing tools instead of applying the wrong test style to Effect-based code.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-testing.svg)](https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-testing)
Your own site
<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-testing"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 8,499 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.00049 $0.08499
Opus 5 $0.00024 $0.04249
Sonnet 5 $0.00010 $0.01700
Haiku 4.5 $0.00005 $0.00850

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

Security

Grade A, and why

effect-testing 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 4d 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-testing/SKILL.md · 1,262 lines

How it starts

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

Effect Testing Skill

This skill provides comprehensive guidance for testing Effect-based applications using @effect/vitest and standard vitest.

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:

  • Testing utilities: packages/effect/src/Testing.ts
  • @effect/vitest source: packages/vitest/
  • Migration guide: MIGRATION.md
  • Effect source: packages/effect/src/

Framework Selection

CRITICAL: Choose the correct testing framework based on the code being tested.

Use @effect/vitest for Effect Code

Use @effect/vitest when testing:

  • Functions that return Effect<A, E, R>
  • Code that uses services and layers
  • Time-dependent operations with TestClock
  • Asynchronous operations coordinated with Effect
  • STM (Software Transactional Memory) operations
import { it, expect } from '@effect/vitest';
import { Effect } from 'effect';

declare const fetchUser: (id: string) => Effect.Effect<{ id: string }, Error>;

it.effect('should fetch user', () =>
	Effect.gen(function* () {
		const user = yield* fetchUser('123');
		expect(user.id).toBe('123');
	})
);

Use Regular vitest for Pure Functions

Use standard vitest for:

  • Pure functions with no Effect wrapper
  • Simple data transformations
  • Helper utilities
  • Type constructors (brands, newtypes)
import { describe, expect, it } from 'vitest';

declare const Cents: {
	make: (value: bigint) => bigint;
	add: (a: bigint, b: bigint) => bigint;
};

describe('Cents', () => {
	it('should add cents correctly', () => {
		const result = Cents.add(Cents.make(100n), Cents.make(50n));
		expect(result).toBe(150n);
	});
});

Test Variants

it.effect - Default Test Environment

Provides TestContext including TestClock, TestRandom, etc.

import { it, expect } from '@effect/vitest';
import { Effect } from 'effect';

declare const someEffect: Effect.Effect<number>;
declare const expected: number;

it.effect('test name', () =>
	Effect.gen(function* () {
		// Test implementation with TestContext available
		const result = yield* someEffect;
		expect(result).toBe(expected);
	})
);

Read the full file on GitHub · 1,262 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. 4d ago First seen · 1,262 lines · 49 tokens per session scan A 1053b3eb5ff1

Subscribe to this mod's changes

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