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.
npx skills add mpsuesser/pi-effect-harness --skill effect-ai-streaminggit clone --depth 1 https://github.com/mpsuesser/pi-effect-harnessWrote 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.
[](https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-ai-streaming)<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-ai-streaming"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-ai-streaming/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.
<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-ai-streaming"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-ai-streaming.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00032 | $0.02888 |
| Opus 5 | $0.00016 | $0.01444 |
| Sonnet 5 | $0.00006 | $0.00578 |
| Haiku 4.5 | $0.00003 | $0.00289 |
Grade A, and why
effect-ai-streaming 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.
How it starts
The opening of the file, as written. The whole thing — 412 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Effect AI Streaming
When to Use This Skill
- Real-time streaming responses from language models
- Building chat interfaces with incremental updates
- Managing conversation history with streaming
- Protecting concurrent stream operations
- Accumulating stream parts with side effects
- Converting stream responses to prompt history
Import Patterns
CRITICAL: Always use namespace imports:
import * as Stream from 'effect/Stream';
import * as Effect from 'effect/Effect';
import * as Channel from 'effect/Channel';
import * as SubscriptionRef from 'effect/SubscriptionRef';
import * as Match from 'effect/Match';
import * as Response from 'effect/unstable/ai/Response';
StreamPart Protocol
stream := start → delta* → end
StreamPart lifecycle for each content type follows a three-phase protocol:
text :: text-start → text-delta* → text-end
reasoning :: reasoning-start → reasoning-delta* → reasoning-end
toolParam :: tool-params-start → tool-params-delta* → tool-params-end
finish :: { type: "finish", reason: FinishReason, usage: Usage }
Each streaming sequence has a unique id field that links start/delta/end parts.
Part Type Matching
Stream parts use a type field (not _tag), so use Match.when with type checks:
import * as Match from 'effect/Match';
import * as Effect from 'effect/Effect';
const processPart = (part: StreamPart) =>
Match.value(part).pipe(
Match.when({ type: 'text-delta' }, ({ delta }) =>
Effect.sync(() => console.log(delta))
),
Match.when({ type: 'reasoning-delta' }, ({ delta }) =>
Effect.sync(() => logReasoning(delta))
),
Match.when({ type: 'finish' }, ({ usage, reason }) =>
Effect.sync(() => recordUsage(usage, reason))
),
Match.orElse(() => Effect.void)
);
Direct type checks also work well for simple branching:
if (part.type === 'text-delta') {
console.log(part.delta);
}
Accumulation Pattern
Accumulate stream parts incrementally using mutable state for efficiency:
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.
- 9d ago First seen · 412 lines · 32 tokens per session scan A 1d4788e81193
effect-ai-streaming is a skill published in the GitHub repository mpsuesser/pi-effect-harness (24 stars, last pushed 2mo ago), licensed MIT. It adds 32 tokens to every session and 2,888 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.
Other skills, from other repositories
effect-patterns-concurrency
Effect-TS patterns for Concurrency. Use when working with concurrency in Effect-TS applications.
effect-patterns-making-http-requests
Effect-TS patterns for Making Http Requests. Use when working with making http requests in Effect-TS applications.
effect-patterns-streams
Effect-TS patterns for Streams. Use when working with streams in Effect-TS applications.
effect-patterns-streams-sinks
Effect-TS patterns for Streams Sinks. Use when working with streams sinks in Effect-TS applications.
effect-patterns-error-handling
Effect-TS patterns for Error Handling. Use when working with error handling in Effect-TS applications.
effect-patterns-resource-management
Effect-TS patterns for Resource Management. Use when working with resource management in Effect-TS applications.