testing-perf

testing-perf is a skill for Claude Code from yonatangross/orchestkit. It costs 55 tokens per session (1,707 once invoked), scanned A, original, MIT.

A set of patterns for performance and load testing, which checks how software behaves under many requests or users. It covers k6, Locust, pytest execution, test classification, reporting, and parallel runs.

In plain words
What is it for?
Use it to write load, stress, spike, or soak tests; optimize pytest runs; configure CI test execution; and analyze performance results.
Why use it?
It helps teams test speed, capacity, and failure behavior instead of relying only on ordinary correctness tests.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: agent in frontmatter; mentions Claude Code.

Part of the ork plugin — 106 skills, 35 commands, 36 agents, 32 hooks shipped together

Good fit Use it to write load, stress, spike, or soak tests; optimize pytest runs; configure CI test execution; and analyze performance results.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/yonatangross/orchestkit/testing-perf
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.

Any agent
npx skills add yonatangross/orchestkit --skill testing-perf
Clone the repo
git clone --depth 1 https://github.com/yonatangross/orchestkit

Made for: Claude Code.

Or install ork, the plugin that ships this one along with the rest of its 106 skills, 35 commands, 36 agents, 32 hooks.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/yonatangross/orchestkit/testing-perf.svg)](https://agentmods.dev/skills/yonatangross/orchestkit/testing-perf)
Your own site
<a href="https://agentmods.dev/skills/yonatangross/orchestkit/testing-perf"><img src="https://agentmods.dev/badge/skills/yonatangross/orchestkit/testing-perf.svg" alt="Measured on agentmods" height="20"></a>
Per session 55 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,707 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00055 $0.01707
Opus 5 $0.00028 $0.00853
Sonnet 5 $0.00011 $0.00341
Haiku 4.5 $0.00006 $0.00171

Measured 3d ago against content hash 0a6c94c12141, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

testing-perf 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 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.

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.

plugins/ork/skills/testing-perf/SKILL.md · 179 lines

How it starts

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

Performance & Load Testing Patterns

Focused skill for performance testing, load testing, and pytest execution optimization. Covers k6, Locust, pytest-xdist parallel execution, custom plugins, and test type classification.

Quick Reference

Area File Purpose
k6 Load Testing rules/perf-k6.md Thresholds, stages, custom metrics, CI integration
Locust Testing rules/perf-locust.md Python load tests, task weighting, auth flows
Test Types rules/perf-types.md Load, stress, spike, soak test patterns
Execution rules/execution.md Coverage reporting, parallel execution, failure analysis
Pytest Markers rules/pytest-execution.md Custom markers, xdist parallel, worker isolation
Pytest Plugins rules/pytest-plugins.md Factory fixtures, plugin hooks, anti-patterns
k6 Patterns references/k6-patterns.md Staged ramp-up, authenticated requests, test types
xdist Parallel references/xdist-parallel.md Distribution modes, worker isolation, CI config
Custom Plugins references/custom-plugins.md conftest plugins, installable plugins, hook reference
Perf Checklist checklists/performance-checklist.md Planning, setup, metrics, load patterns, analysis
Pytest Checklist checklists/pytest-production-checklist.md Config, markers, parallel, fixtures, CI/CD
Test Template scripts/test-case-template.md Full test case documentation template

k6 Quick Start

Set up a load test with thresholds and staged ramp-up:

import http from 'k6/http';
import { check, sleep } from 'k6';

export const options = {
  stages: [
    { duration: '30s', target: 20 },  // Ramp up
    { duration: '1m', target: 20 },   // Steady state
    { duration: '30s', target: 0 },   // Ramp down
  ],
  thresholds: {
    http_req_duration: ['p(95)<500'],  // 95th percentile under 500ms
    http_req_failed: ['rate<0.01'],    // Less than 1% error rate
  },
};

export default function () {
  const res = http.get('http://localhost:8000/api/health');
  check(res, {
    'status is 200': (r) => r.status === 200,
    'response time < 200ms': (r) => r.timings.duration < 200,
  });
  sleep(1);
}

Read the full file on GitHub · 179 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. 3d ago First seen · 179 lines · 55 tokens per session scan A 0a6c94c12141

Subscribe to this mod's changes

testing-perf is a skill published in the GitHub repository yonatangross/orchestkit (231 stars, last pushed today), licensed MIT. It adds 55 tokens to every session and 1,707 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-09-05.

Related

Other skills, from other repositories

performance-tester

Design and run performance tests to identify bottlenecks, validate SLOs, and measure system capacity. Covers load tests, stress tests, and spike tests.

AtulPurohit/Antigravity-Awesome-Skills · 36 tokens

load-testing-expert

Expert in performance and load testing using JMeter, k6, Gatling, load patterns, metrics analysis, and performance optimization. Use when the user mentions performance, testing, QA, scalability, performance testing, or JMeter, or when the task involves Load Testing Types, Key Metrics, Tools & Frameworks, or k6 Load…

personamanagmentlayer/pcl · 75 tokens

k6-load-testing

Comprehensive k6 load testing skill for API, browser, and scalability testing. Write realistic load scenarios, analyze results, and integrate with CI/CD.

tmolavi/mcp-agent-skills-hub · 35 tokens

performance-testing

Test application performance, scalability, and resilience. Use when planning load testing, stress testing, or optimizing system performance.

summarybotng/summarybot-ng · 26 tokens

k6-load-testing

Comprehensive k6 load testing skill for API, browser, and scalability testing. Write realistic load scenarios, analyze results, and integrate with CI/CD.

LiHongwei-cn/lihongwei-cn · 35 tokens

http-load-profiler

Run stepped HTTP load tests with ab/wrk, ramping concurrency levels to collect p50/p90/p99 latency, detect performance inflection points, and recommend optimal concurrency. Triggered by requests like 'load test this URL', 'benchmark my API', 'find the max concurrency', or mentions of p99 latency, throughput…

zebbern/claude-code-guide · 76 tokens