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/jest-skill/agents-mdgit clone --depth 1 https://github.com/anivar/jest-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/jest-skill/agents-md)<a href="https://agentmods.dev/instructions/anivar/jest-skill/agents-md"><img src="https://agentmods.dev/badge/instructions/anivar/jest-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.05070 | $0.05070 |
| Opus 5 | $0.02535 | $0.02535 |
| Sonnet 5 | $0.01014 | $0.01014 |
| Haiku 4.5 | $0.00507 | $0.00507 |
Grade A, and why
jest-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 4d 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.
| Node module (`axios`) | `<rootDir>/__mocks__/axios.js` | Yes | How it starts
The opening of the file, as written. The whole thing — 648 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Jest — Complete Guide
This document is for AI agents and LLMs to follow when writing, reviewing, or debugging Jest tests. It compiles all rules and references into a single executable guide.
Baseline: jest ^30.0.0 with JavaScript or TypeScript (audited against jest 30.4.2)
Abstract
Jest is the most widely-used JavaScript testing framework, providing a test runner, assertion library, mock system, and coverage reporter in one package. This guide covers the most impactful patterns and pitfalls: mock lifecycle management (clear vs reset vs restore), async testing traps (floating promises, missing assertion guards), matcher selection (toBe vs toEqual vs toStrictEqual), timer mocking (recursive safety, async timers), module mocking (hoisting, ESM, per-test mocks), snapshot testing (determinism, property matchers), configuration (coverage thresholds, environments, ESM transforms), and CI optimization (workers, sharding). Each rule includes incorrect and correct code examples targeting specific mistakes AI agents commonly make.
Table of Contents
- Mock Design — CRITICAL
- Async Testing — CRITICAL
- Matcher Usage — HIGH
- Timer Mocking — HIGH
- Test Structure — HIGH
- Module Mocking — MEDIUM
- Snapshot Testing — MEDIUM
- Configuration — MEDIUM
- Performance & CI — MEDIUM
1. Mock Design
Impact: CRITICAL
Rule: clearAllMocks vs resetAllMocks vs restoreAllMocks
Jest provides three mock-cleanup functions with very different behaviors. Using the wrong one leaves stale mocks in place.
// INCORRECT — clearAllMocks only clears call history, not implementations
afterEach(() => {
jest.clearAllMocks();
});
test('first', () => {
jest.spyOn(Math, 'random').mockReturnValue(0.5);
expect(Math.random()).toBe(0.5);
});
test('second', () => {
// Math.random is STILL mocked — returns 0.5
expect(Math.random()).not.toBe(0.5); // FAILS
});
// CORRECT — restoreAllMocks restores original implementations
afterEach(() => {
jest.restoreAllMocks();
});
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.
- 4d ago First seen · 648 lines · 5,070 tokens per session scan A 90ac0406de57
jest-skill AGENTS.md is an instructions file published in the GitHub repository anivar/jest-skill (6 stars, last pushed 26d ago), licensed MIT. It adds 5,070 tokens to every session, about $0.0253 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.
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.
msw-skill AGENTS.md
AGENTS.md instructions for anivar/msw-skill, covering msw v2 — complete guide, abstract, 1. handler design, rule: use http namespace instead of rest and rule: never put query parameters in handler url predicates.
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.
Math-To-Manim tests.instructions.md
Guidelines for writing and maintaining tests in Math-To-Manim.
ai AGENTS.md
AGENTS.md instructions for vercel/ai, covering agents.md, project overview, repository structure, key directories and core package dependencies.