performance-testing

performance-testing is a skill for Claude Code, Codex from latestaiagents/agent-skills. It costs 59 tokens per session (2,280 once invoked), scanned B, original, MIT.

A guide for testing how software behaves under different amounts of use. Load tests check expected traffic, stress tests find breaking points, and soak tests look for problems during long runs.

In plain words
What is it for?
Use it to test APIs and other systems with tools such as k6 or Artillery. It also helps establish performance baselines and plan capacity.
Why use it?
It helps reveal slow responses, capacity limits, sudden-traffic failures, and memory leaks before users encounter them.

Skill for Claude CodeCodex

Part of the qa-testing plugin — 6 skills, 3 commands shipped together

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

Made for: Claude Code, Codex.

Or install qa-testing, the plugin that ships this one along with the rest of its 6 skills, 3 commands.

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 performance-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/latestaiagents/agent-skills/performance-testing.svg)](https://agentmods.dev/skills/latestaiagents/agent-skills/performance-testing)
Your own site
<a href="https://agentmods.dev/skills/latestaiagents/agent-skills/performance-testing"><img src="https://agentmods.dev/badge/skills/latestaiagents/agent-skills/performance-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,280 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 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.00059 $0.02280
Opus 5 $0.00030 $0.01140
Sonnet 5 $0.00012 $0.00456
Haiku 4.5 $0.00006 $0.00228

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

Security

Grade B, and why

performance-testing scanned grade B with 2 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 yesterday.

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.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

sudo mv k6-v0.47.0-linux-amd64/k6 /usr/local/bin/

Makes network callslowCapability

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

curl https://github.com/grafana/k6/releases/download/v0.47.0/k6-v0.47.0-linux-amd64.tar.gz -L | tar xvz
plugins/qa-testing/skills/performance/performance-testing/SKILL.md · 356 lines

How it starts

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

Performance Testing

Ensure your systems handle load with comprehensive performance testing.

When to Use

  • Establishing performance baselines
  • Load testing before releases
  • Stress testing to find breaking points
  • Capacity planning
  • Identifying bottlenecks

Performance Test Types

Type Purpose Load Pattern
Load Test Verify expected load Steady, target users
Stress Test Find breaking point Ramp up until failure
Spike Test Handle sudden traffic Quick spike, then down
Soak Test Find memory leaks Steady load, long duration
Scalability Auto-scaling validation Step increases

k6 Load Testing

Installation

# macOS
brew install k6

# Docker
docker run -i grafana/k6 run - <script.js

Basic Load Test

// tests/load/basic.js
import http from 'k6/http';
import { check, sleep } from 'k6';

export const options = {
  stages: [
    { duration: '2m', target: 100 }, // Ramp up to 100 users
    { duration: '5m', target: 100 }, // Stay at 100 users
    { duration: '2m', target: 0 },   // Ramp down
  ],
  thresholds: {
    http_req_duration: ['p(95)<500'], // 95% of requests < 500ms
    http_req_failed: ['rate<0.01'],   // Error rate < 1%
  },
};

export default function () {
  const response = http.get('https://api.example.com/users');

  check(response, {
    'status is 200': (r) => r.status === 200,
    'response time < 500ms': (r) => r.timings.duration < 500,
  });

  sleep(1); // Think time between requests
}

Stress Test

// tests/load/stress.js
import http from 'k6/http';
import { check } from 'k6';

export const options = {
  stages: [
    { duration: '2m', target: 100 },
    { duration: '5m', target: 100 },
    { duration: '2m', target: 200 },
    { duration: '5m', target: 200 },
    { duration: '2m', target: 300 },
    { duration: '5m', target: 300 },
    { duration: '2m', target: 400 }, // Breaking point?
    { duration: '5m', target: 400 },
    { duration: '10m', target: 0 },  // Recovery
  ],
};

export default function () {
  const response = http.get('https://api.example.com/search?q=test');

  check(response, {
    'status is 200': (r) => r.status === 200,
    'no errors': (r) => !r.body.includes('error'),
  });
}

Read the full file on GitHub · 356 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. yesterday First seen · 356 lines · 59 tokens per session scan B bd63a6defb96

Subscribe to this mod's changes

performance-testing is a skill published in the GitHub repository latestaiagents/agent-skills (5 stars, last pushed 4mo ago), licensed MIT. It adds 59 tokens to every session and 2,280 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

fw-app-dev

Expert-level skill for building, debugging, reviewing, and migrating Freshworks Platform 3.0 marketplace apps. REQUIRES Node.js 24.x + FDK 10.x. New UI apps default to React Meta (DEW, metaConfig.framework react); vanilla Crayons is opt-in. Commands: /fdk-react-create, /fdk-react-migrate, /fdk-fix, /fdk-migrate…

freshworks-developers/fw-dev-tools · 111 tokens

ai-amazon-brand-analytics

Skill "ai-amazon-brand-analytics" from skillsaiagent/aiskills, covering ai-amazon-brand-analytics amazon 品牌分析助手, 概述, 什么时候使用, 调用方式 and 命令示例.

skillsaiagent/aiskills · 72 tokens

ai-amazon-international-listings

Amazon 本地化助手适合运营、产品、销售、software在用户提出“海外 Listing 说对了吗”这类问题,需要快速拆解目标、判断重点并形成可执行结果时使用,帮助基于输入材料生成商品/店铺诊断、卖点与风险提示、运营动作建议。.

skillsaiagent/aiskills · 75 tokens

ai-amazon-inventory-management

Skill "ai-amazon-inventory-management" from skillsaiagent/aiskills, covering ai-amazon-inventory-management amazon 库存诊断助手, 概述, 什么时候使用, 调用方式 and 命令示例.

skillsaiagent/aiskills · 76 tokens

ai-amazon-repricing-strategy

Skill "ai-amazon-repricing-strategy" from skillsaiagent/aiskills, covering ai-amazon-repricing-strategy amazon 调价诊断助手, 概述, 什么时候使用, 调用方式 and 命令示例.

skillsaiagent/aiskills · 75 tokens

ai-amazon-return-reduction

Skill "ai-amazon-return-reduction" from skillsaiagent/aiskills, covering ai-amazon-return-reduction amazon 退货诊断助手, 概述, 什么时候使用, 调用方式 and 命令示例.

skillsaiagent/aiskills · 75 tokens