relay: Skill for Claude Code

.agents/skills/wrdn-effect-raw-fetch-boundary/SKILL.md

wrdn-effect-raw-fetch-boundary is a skill for Claude Code from adarshp14/relay. It costs 38 tokens per session (477 once invoked), scanned A, a copy of wrdn-effect-raw-fetch-boundary, MIT.

A coding rule that routes HTTP requests through Effect services instead of calling fetch directly. Effect is a TypeScript library that can replace services, such as network clients, during tests.

In plain words
What is it for?
Building SDK and protocol-provider code, injecting test HTTP clients, and adapting third-party libraries that require fetch.
Why use it?
It keeps network code testable without changing global fetch behavior or connecting to real services. Tests can use local servers or replace the HTTP client with a test version.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: installed under .agents/ (shared by several agents).

This is adarshp14/relay's own configuration. It tells Claude Code how to work on relay itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything relay configures →

Reuse

Borrowing it

Nothing to install: this file belongs to adarshp14/relay. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/adarshp14/relay/main/.agents/skills/wrdn-effect-raw-fetch-boundary/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/adarshp14/relay

Made for: Claude Code.

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 wrdn-effect-raw-fetch-boundary

README.md
[![agentmods](https://agentmods.dev/badge/skills/adarshp14/relay/wrdn-effect-raw-fetch-boundary/github.svg)](https://agentmods.dev/skills/adarshp14/relay/wrdn-effect-raw-fetch-boundary)
Your own site
<a href="https://agentmods.dev/skills/adarshp14/relay/wrdn-effect-raw-fetch-boundary"><img src="https://agentmods.dev/badge/skills/adarshp14/relay/wrdn-effect-raw-fetch-boundary/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 wrdn-effect-raw-fetch-boundary

Your own site · 80×15
<a href="https://agentmods.dev/skills/adarshp14/relay/wrdn-effect-raw-fetch-boundary"><img src="https://agentmods.dev/badge/skills/adarshp14/relay/wrdn-effect-raw-fetch-boundary.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 38 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 477 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin 97% copy Near-identical to another mod 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.00038 $0.00477
Opus 5 $0.00019 $0.00238
Sonnet 5 $0.00008 $0.00095
Haiku 4.5 $0.00004 $0.00048

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

Security

Grade A, and why

wrdn-effect-raw-fetch-boundary scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

const response = await fetch(url);
Origin

This is a copy

97% identical to wrdn-effect-raw-fetch-boundary — 2 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.agents/skills/wrdn-effect-raw-fetch-boundary/SKILL.md · 59 lines

What it actually says

HTTP in core SDK and protocol plugins should go through Effect services so tests can replace real networks with local protocol fixtures or mock HttpClient layers.

Fix Shape

  • Prefer effect/unstable/http HttpClient and HttpClientRequest for ordinary HTTP calls.
  • Accept a Layer.Layer<HttpClient.HttpClient> option on plugin/provider code when callers need to inject a test client.
  • In tests, use real local servers plus FetchHttpClient.layer or a captured HttpClient service from the test layer.
  • Do not add fetch-shaped abstractions in SDK or plugin seams. If a third-party library truly only accepts fetch, keep the adapter in the owning package, name the forced boundary explicitly, and delegate internally to Effect HttpClient.
  • Do not type new protocol/plugin seams as typeof globalThis.fetch; keep the ambient runtime boundary out of domain and test APIs.
  • Do not patch globalThis.fetch. Replace those tests with a local server, HttpClient layer, or the approved Effect-backed adapter.
  • Do not add a broad allowlist entry unless the file is a platform entrypoint or a temporary migration target.

Approved Boundaries

  • Worker/handler objects whose public API must expose a fetch method.
  • Test calls to a worker or Miniflare binding's .fetch(...) method.
  • Small adapters for libraries that only accept fetch, if the implementation delegates to Effect HttpClient.
  • Browser UI event handlers may remain raw only until app-side boundaries are classified; prefer SDK/client APIs where available.

Bad

const response = await fetch(url);
const fetchImpl = options.fetch ?? globalThis.fetch;

Good

const client = yield * HttpClient.HttpClient;
const response = yield * client.execute(HttpClientRequest.get(url));
const plugin = graphqlPlugin({ httpClientLayer: testHttpClientLayer });
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. 8d ago First seen · 59 lines · 38 tokens per session scan A e7372c09bd40

Subscribe to this mod's changes

wrdn-effect-raw-fetch-boundary is a skill published in the GitHub repository adarshp14/relay (0 stars, last pushed 2mo ago), licensed MIT. It adds 38 tokens to every session and 477 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 97% identical to wrdn-effect-raw-fetch-boundary, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

webiny-api-cms-custom-field-type

How to implement a custom CMS field type that integrates with the model builder's fluent API. Covers extending DataFieldBuilder, composing validator interfaces, creating a FieldTypeFactory, registering via DI, and module augmentation for TypeScript autocomplete on the fields() registry.

webiny/webiny-js · 60 tokens

nodejs-sdk

Type-safe Node.js API client SDK with validation, mocking, retry, and logging. Use when building API clients for Node.js applications.

pontjs/pontx · 31 tokens

graphql-api-development

Comprehensive guide for building GraphQL APIs including schema design, queries, mutations, subscriptions, resolvers, type system, error handling, authentication, authorization, caching strategies, and production best practices.

manutej/luxor-claude-marketplace · 42 tokens

node

Provides domain-specific best practices for Node.js development with TypeScript, covering type stripping, async patterns, error handling, streams, modules, testing, performance, caching, logging, and more. Use when setting up Node.js projects with native TypeScript support, configuring type stripping…

ushibo/brigade · 162 tokens

fastify-best-practices

Guides development of Fastify Node.js backend servers and REST APIs using TypeScript or JavaScript. Use when building, configuring, or debugging a Fastify application — including defining routes, implementing plugins, setting up JSON Schema validation, handling errors, optimising performance, managing authentication…

ushibo/brigade · 137 tokens

fastapi

FastAPI best practices and conventions. Use when working with FastAPI APIs, Pydantic models, dependencies, streaming responses including Server-Sent Events (SSE), and serving frontend apps. Keeps FastAPI code clean and up to date with the latest features and patterns.

fastapi/fastapi · 57 tokens