msw-skill AGENTS.md

msw-skill AGENTS.md is an instructions file for Codex, OpenCode from anivar/msw-skill. It costs 3,992 tokens per session, scanned A, original, MIT.

A guide for using MSW version 2 to mock network requests in JavaScript or TypeScript. MSW, or Mock Service Worker, intercepts requests and returns test responses without needing a real API.

In plain words
What is it for?
It helps write and review HTTP, GraphQL, server-sent event, and WebSocket mocks, configure MSW in tests or browsers, and migrate older handlers to version 2.
Why use it?
It prevents outdated MSW version 1 patterns from being used in new or migrated code. It also standardizes how handlers, servers, browser workers, and test responses are written.

Instructions file for CodexOpenCode

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 instructions/anivar/msw-skill/agents-md
Clone the repo
git clone --depth 1 https://github.com/anivar/msw-skill

Made for: Codex, OpenCode.

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 msw-skill AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/anivar/msw-skill/agents-md.svg)](https://agentmods.dev/instructions/anivar/msw-skill/agents-md)
Your own site
<a href="https://agentmods.dev/instructions/anivar/msw-skill/agents-md"><img src="https://agentmods.dev/badge/instructions/anivar/msw-skill/agents-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,992 This file is loaded in full into every session.
When invoked 3,992 The same file — it is already loaded in full.
Security scan A 1 finding. 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.03992 $0.03992
Opus 5 $0.01996 $0.01996
Sonnet 5 $0.00798 $0.00798
Haiku 4.5 $0.00399 $0.00399

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

Security

Grade A, and why

msw-skill AGENTS.md 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 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.

Makes network callslowCapability

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

const real = await fetch(bypass(request))
AGENTS.md · 490 lines

How it starts

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

MSW v2 — Complete Guide

This document is for AI agents and LLMs to follow when writing, reviewing, or debugging MSW (Mock Service Worker) handlers, server setup, and test patterns. It compiles all rules and references into a single executable guide.

Baseline: msw ^2.15.0


Abstract

MSW (Mock Service Worker) is a network-level API mocking library for JavaScript/TypeScript. It intercepts HTTP and GraphQL requests using the http and graphql namespaces, returning mock responses via HttpResponse; it also mocks Server-Sent Events with sse and WebSocket connections with ws. In tests, setupServer (from msw/node) intercepts at the request-client level; in the browser, setupWorker (from msw/browser) uses a Service Worker; React Native uses msw/native. MSW v2 completely removed the v1 rest namespace, res(ctx.*) response composition, and (req, res, ctx) resolver signature. This guide covers all v2 patterns, testing best practices, and migration from v1.


Table of Contents

  1. Handler Design — CRITICAL
  2. Setup & Lifecycle — CRITICAL
  3. Request Reading — HIGH
  4. Response Construction — HIGH
  5. Test Patterns — HIGH
  6. GraphQL — MEDIUM
  7. Utilities — MEDIUM

1. Handler Design

Impact: CRITICAL

Rule: Use http Namespace Instead of rest

The rest namespace was removed in MSW 2.0. All HTTP handlers use http.

// INCORRECT — rest does not exist in v2
import { rest } from 'msw'
rest.get('/api/user', (req, res, ctx) => res(ctx.json({ name: 'John' })))

// CORRECT
import { http, HttpResponse } from 'msw'
http.get('/api/user', () => HttpResponse.json({ name: 'John' }))

Rule: Never Put Query Parameters in Handler URL Predicates

MSW matches by pathname only. Query parameters are stripped from the predicate, so including them widens the handler to every request on that path rather than narrowing it. MSW logs a warning when it finds them.

Read the full file on GitHub · 490 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 · 490 lines · 3,992 tokens per session scan A d66730444471

Subscribe to this mod's changes

msw-skill AGENTS.md is an instructions file published in the GitHub repository anivar/msw-skill (1 stars, last pushed 26d ago), licensed MIT. It adds 3,992 tokens to every session, about $0.0200 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

zod-skill AGENTS.md

Instructions for anivar/zod-skill, covering zod v4 — complete guide, abstract, 1. parsing & type safety, rule: use safeparse() for user input and rule: use parseasync for async refinements.

anivar/zod-skill · 4,602 tokens

jest-skill AGENTS.md

Instructions for anivar/jest-skill, covering jest — complete guide, abstract, 1. mock design, rule: clearallmocks vs resetallmocks vs restoreallmocks and rule: always restore jest.spyon.

anivar/jest-skill · 5,070 tokens

redux-saga-skill AGENTS.md

Instructions for anivar/redux-saga-skill, covering redux-saga — complete guide, abstract, 1. effects & yielding, rule: always yield effects and rule: use call() for async functions.

anivar/redux-saga-skill · 3,440 tokens

developer-docs-framework AGENTS.md

AGENTS.md instructions for anivar/developer-docs-framework, covering tech docs, when to use this skill, foundational frameworks, rule categories by priority and quick reference.

anivar/developer-docs-framework · 21,969 tokens

mcp-steroid CLAUDE.md

Instructions for jonnyzzz/mcp-steroid, covering claude.md, agents.md, design philosophy, recursive context lookup (do this before sub-folder work), sub-folder guides and must do.

jonnyzzz/mcp-steroid · 6,916 tokens

growmos AGENTS.md

Instructions for codician-team/growmos: This repository keeps a knowledge graph in .growmos/ (entities, typed relations, provenance, profiles, a journal). It is the shared world model that survives context windows. Treat it as memory you read at the start of work and write to as you develop. Zero-config commands.

codician-team/growmos · 606 tokens