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 instructions/anivar/msw-skill/agents-mdgit clone --depth 1 https://github.com/anivar/msw-skillWrote 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/instructions/anivar/msw-skill/agents-md)<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>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.03992 | $0.03992 |
| Opus 5 | $0.01996 | $0.01996 |
| Sonnet 5 | $0.00798 | $0.00798 |
| Haiku 4.5 | $0.00399 | $0.00399 |
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)) 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
- Handler Design — CRITICAL
- Setup & Lifecycle — CRITICAL
- Request Reading — HIGH
- Response Construction — HIGH
- Test Patterns — HIGH
- GraphQL — MEDIUM
- 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.
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.
- 3d ago First seen · 490 lines · 3,992 tokens per session scan A d66730444471
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.
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.
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.
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.
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.
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.
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.