api-testing

A set of methods for testing APIs, the interfaces that let software systems exchange requests and responses. It covers contract, component, and integration testing for REST and GraphQL APIs.

In plain words
What is it for?
Use it to plan API tests, validate schemas and contracts between services, and test APIs with or without their real dependencies.
Why use it?
It helps catch incorrect responses, error handling problems, and breaking changes from the consumer's point of view.

Skill for Claude CodeCodex

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 skills/int2t05/engineering-skills/api-testing
Any agent
npx skills add int2t05/engineering-skills --skill api-testing
Clone the repo
git clone --depth 1 https://github.com/int2t05/engineering-skills

Made for: Claude Code, Codex.

Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,079 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00056 $0.01079
Opus 5 $0.00028 $0.00540
Sonnet 5 $0.00011 $0.00216
Haiku 4.5 $0.00006 $0.00108

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

Security

Grade A, and why

api-testing 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 2d 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.

skills/06-test/api-testing/SKILL.md · 116 lines

How it starts

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

API Testing Patterns

API testing verifies contracts and behavior from the consumer perspective — correct responses, proper error handling, acceptable performance. Focus on what matters to consumers, not implementation details.

When to use

  • Testing REST or GraphQL APIs
  • Validating microservice contracts
  • Designing API test strategies
  • Preventing breaking API changes
  • Triggers on "test API", "contract testing", "integration test", "API 测试", "接口测试", "契约测试"

Not for: generating test scaffolds for non-API code (use test-generation); browser/E2E flows (use e2e-testing); the TDD loop itself (use tdd).

Steps

1. Identify the testing level

Level Purpose Dependencies Speed
Contract Provider-consumer agreement None Fast
Component API in isolation Mocked external deps Fast
Integration Real dependencies Database, services Slower

2. Test the contract, not implementation

Test from the consumer perspective using schema validation, not exact values. Consumers depend on the contract (status codes, response shape); they don't care about internal structure.

Pattern — Consumer-Driven Contracts: schema validation against the contract (status codes, response shape), not exact values — code example in references/templates/api-test-scaffold.md. Use Pact or Spring Cloud Contract for consumer-driven contract testing in microservice architectures.

3. Cover critical scenarios

Scenario Must test Example
Auth 401/403 handling Expired token, wrong user, cross-user access
Input 400 validation Missing fields, wrong types, out-of-range values
Errors 500 graceful handling DB down, timeout, upstream failure
Idempotency Duplicate prevention Same idempotency key → same result
Concurrency Race conditions Parallel checkout on shared inventory

Read the full file on GitHub · 116 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 2d ago First seen · 116 lines · 56 tokens per session scan A fde3a28200ba

Subscribe to this mod's changes

api-testing is a skill published in the GitHub repository int2t05/engineering-skills (3 stars, last pushed 14d ago), licensed MIT. It adds 56 tokens to every session and 1,079 once invoked, about $0.0003 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-31.