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 agentmods add skills/mpsuesser/pi-effect-harness/effect-pathnpx skills add mpsuesser/pi-effect-harness --skill effect-pathgit 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-path)<a href="https://agentmods.dev/skills/mpsuesser/pi-effect-harness/effect-path"><img src="https://agentmods.dev/badge/skills/mpsuesser/pi-effect-harness/effect-path.svg" alt="Measured on agentmods" 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 | $0.00022 | $0.01668 |
| Opus 5 | $0.00011 | $0.00834 |
| Sonnet 5 | $0.00004 | $0.00334 |
| Haiku 4.5 | $0.00002 | $0.00167 |
Grade A, and why
effect-path 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.
How it starts
The opening of the file, as written. The whole thing — 283 lines — stays where its author put it; the contents beside it link to each section on GitHub.
path
Use effect Path abstraction for platform-abstract file path operations. Apply this skill when working with file paths, joining segments, resolving absolute paths, or converting between file URLs and paths. Path.layer supplies POSIX semantics from effect; Node.js and Bun platform layers provide host-specific path semantics. @effect/platform-browser does not provide a BrowserPath layer in beta.74, so browser code should provide Path.layer or a custom layer explicitly.
Import Pattern
import { Path } from 'effect';
Service Injection
import { Path } from 'effect';
import { Effect } from 'effect';
const program = Effect.gen(function* () {
const path = yield* Path.Path;
});
Path Separator
import { Path } from 'effect';
import { Effect } from 'effect';
// Get platform-specific separator
const program = Effect.gen(function* () {
const path = yield* Path.Path;
const separator = path.sep; // "/" on Unix, "\" on Windows
});
Path Operations
join - Combine path segments
import { Path } from 'effect';
import { Effect } from 'effect';
const program = Effect.gen(function* () {
const path = yield* Path.Path;
const fullPath = path.join('src', 'components', 'Button.tsx');
// "src/components/Button.tsx" on Unix
// "src\components\Button.tsx" on Windows
});
resolve - Convert to absolute path
import { Path } from 'effect';
import { Effect } from 'effect';
const program = Effect.gen(function* () {
const path = yield* Path.Path;
const absolutePath = path.resolve('src', 'index.ts');
// "/Users/username/project/src/index.ts" on Unix
// "C:\Users\username\project\src\index.ts" on Windows
});
normalize - Clean up path
import { Path } from 'effect';
import { Effect } from 'effect';
const program = Effect.gen(function* () {
const path = yield* Path.Path;
const clean = path.normalize('/foo/bar//baz/asdf/quux/..');
// "/foo/bar/baz/asdf"
});
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.
- 5d ago First seen · 283 lines · 22 tokens per session scan A 0dc459eaca0b
effect-path is a skill published in the GitHub repository mpsuesser/pi-effect-harness (23 stars, last pushed 2mo ago), licensed MIT. It adds 22 tokens to every session and 1,668 once invoked, about $0.0001 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-building-apis
Effect-TS patterns for Building Apis. Use when working with building apis in Effect-TS applications.
effect-patterns-building-data-pipelines
Effect-TS patterns for Building Data Pipelines. Use when working with building data pipelines in Effect-TS applications.
effect-patterns-error-management
Effect-TS patterns for Error Management. Use when working with error management 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.