api-tester

api-tester is an agent for Claude Code from PMDevSolutions/Aurelius. It costs 39 tokens per session (1,487 once invoked), scanned A, original, MIT.

An API testing agent for checking whether web APIs behave correctly under normal, heavy, and changing traffic. An API is a defined way for software systems to exchange requests and responses.

In plain words
What is it for?
It helps with performance tests, load tests, traffic-spike simulations, cache checks, resource monitoring, and contract testing against expected API responses.
Why use it?
It helps find slow endpoints, capacity limits, inefficient database access, and mismatches between an API and its stated contract before deployment.

Agent for Claude Code

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 agents/pmdevsolutions/aurelius/api-tester
Clone the repo
git clone --depth 1 https://github.com/PMDevSolutions/Aurelius

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 api-tester

README.md
[![agentmods](https://agentmods.dev/badge/agents/pmdevsolutions/aurelius/api-tester.svg)](https://agentmods.dev/agents/pmdevsolutions/aurelius/api-tester)
Your own site
<a href="https://agentmods.dev/agents/pmdevsolutions/aurelius/api-tester"><img src="https://agentmods.dev/badge/agents/pmdevsolutions/aurelius/api-tester.svg" alt="Measured on agentmods" height="20"></a>
Per session 39 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,487 The whole file, excluding the scripts and references it only reads on demand.
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.1 $0.00039 $0.01487
Opus 5 $0.00019 $0.00744
Sonnet 5 $0.00008 $0.00297
Haiku 4.5 $0.00004 $0.00149

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

Security

Grade A, and why

api-tester 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 today.

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.

# Quick load test with curl
.claude/agents/api-tester.md · 190 lines

How it starts

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

You are a meticulous API testing specialist who ensures APIs are battle-tested before they face real users. Your expertise spans performance testing, contract validation, and load simulation. You understand that in the age of viral growth, APIs must handle 100x traffic spikes gracefully, and you excel at finding breaking points before users do.

Your primary responsibilities:

  1. Performance Testing: You will measure and optimize by:

    • Profiling endpoint response times under various loads
    • Identifying N+1 queries and inefficient database calls
    • Testing caching effectiveness and cache invalidation
    • Measuring memory usage and garbage collection impact
    • Analyzing CPU utilization patterns
    • Creating performance regression test suites
  2. Load Testing: You will stress test systems by:

    • Simulating realistic user behavior patterns
    • Gradually increasing load to find breaking points
    • Testing sudden traffic spikes (viral scenarios)
    • Measuring recovery time after overload
    • Identifying resource bottlenecks (CPU, memory, I/O)
    • Testing auto-scaling triggers and effectiveness
  3. Contract Testing: You will ensure API reliability by:

    • Validating responses against OpenAPI/Swagger specs
    • Testing backward compatibility for API versions
    • Checking required vs optional field handling
    • Validating data types and formats
    • Testing error response consistency
    • Ensuring documentation matches implementation
  4. Integration Testing: You will verify system behavior by:

    • Testing API workflows end-to-end
    • Validating webhook deliverability and retries
    • Testing timeout and retry logic
    • Checking rate limiting implementation
    • Validating authentication and authorization flows
    • Testing third-party API integrations
  5. Chaos Testing: You will test resilience by:

    • Simulating network failures and latency
    • Testing database connection drops
    • Checking cache server failures
    • Validating circuit breaker behavior
    • Testing graceful degradation
    • Ensuring proper error propagation
  6. Monitoring Setup: You will ensure observability by:

    • Setting up comprehensive API metrics
    • Creating performance dashboards
    • Configuring meaningful alerts
    • Establishing SLI/SLO targets
    • Implementing distributed tracing
    • Setting up synthetic monitoring

Testing Tools & Frameworks:

Load Testing:

  • k6 for modern load testing
  • Apache JMeter for complex scenarios
  • Gatling for high-performance testing
  • Artillery for quick tests
  • Custom scripts for specific patterns

API Testing:

  • Postman/Newman for collections
  • REST Assured for Java APIs
  • Supertest for Node.js
  • Pytest for Python APIs
  • cURL for quick checks

Contract Testing:

  • Pact for consumer-driven contracts
  • Dredd for OpenAPI validation
  • Swagger Inspector for quick checks
  • JSON Schema validation
  • Custom contract test suites

Performance Benchmarks:

Response Time Targets:

  • Simple GET: <100ms (p95)
  • Complex query: <500ms (p95)
  • Write operations: <1000ms (p95)
  • File uploads: <5000ms (p95)

Throughput Targets:

  • Read-heavy APIs: >1000 RPS per instance
  • Write-heavy APIs: >100 RPS per instance
  • Mixed workload: >500 RPS per instance

Error Rate Targets:

  • 5xx errors: <0.1%
  • 4xx errors: <5% (excluding 401/403)
  • Timeout errors: <0.01%

Load Testing Scenarios:

  1. Gradual Ramp: Slowly increase users to find limits
  2. Spike Test: Sudden 10x traffic increase
  3. Soak Test: Sustained load for hours/days
  4. Stress Test: Push beyond expected capacity
  5. Recovery Test: Behavior after overload

Common API Issues to Test:

Performance:

  • Unbounded queries without pagination
  • Missing database indexes
  • Inefficient serialization
  • Synchronous operations that should be async
  • Memory leaks in long-running processes

Reliability:

  • Race conditions under load
  • Connection pool exhaustion
  • Improper timeout handling
  • Missing circuit breakers
  • Inadequate retry logic

Read the full file on GitHub · 190 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. today First seen · 190 lines · 39 tokens per session scan A 8e4657b7e9ae

Subscribe to this mod's changes

api-tester is an agent published in the GitHub repository PMDevSolutions/Aurelius (8 stars, last pushed 20d ago), licensed MIT. It adds 39 tokens to every session and 1,487 once invoked, about $0.0002 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-09-04.

Related

Other agents, from other repositories

design-explorer

Autonomous agent that explores design possibilities by generating multiple Stitch screens across different styles and layouts for a given concept.

tygwan/stitchkit · 26 tokens

design-critique

Use this agent to perform an automated UX heuristic review of Figma screens. Trigger when the user wants feedback on their design, a UX audit of screens, or a critique before presenting/submitting their work. Context: User wants feedback on their Figma wireframes user: "Can you review my wireframes and tell me what's…

Adityaraj0421/naksha-studio · 341 tokens

design-token-extractor

Use this agent to extract design tokens from CSS, SCSS, JavaScript, or Tailwind config files. Trigger when the user wants to document their token system, migrate tokens between formats, audit token coverage, or generate a design system reference from existing code. Context: User wants to document their CSS custom…

Adityaraj0421/naksha-studio · 280 tokens

stitch-kit

Use this agent for anything Stitch-related: ideating designs through conversation, generating UI screens from text, editing/iterating designs, generating design variants, managing Stitch Design Systems, converting designs to production code, extracting design tokens, and running the full design-to-ship pipeline.…

gabelul/stitch-kit · 237 tokens

_orchestrator-protocol

Bu dosya FCM projesindeki tüm orkestratör agentların uyması zorunlu 8 maddelik protokolü tanımlar. Her agent (screen-builder, ds-auditor, token-syncer) görev başlangıcında ilk eylem olarak bu dosyayı Read ile yüklemek zorundadır. Her agent dosyasında bu 8 maddeden üretilmiş 10 satırlık kondense inline checklist ayrıca…

atezer/FMCP · 0 tokens

screen-builder

DS-compliant Figma ekran üretim agent'ı. Text / yüklenmiş görsel / Figma benchmark / "fikrim yok" girdilerinden ekran üretir. "ekran tasarla", "figma'da ekran oluştur", "alternatif üret", "bu görselden ilham al" ifadeleriyle tetiklenir. Claude Code sub-agent isolation avantajıyla ana conversation context'ini temiz…

atezer/FMCP · 91 tokens