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 skills/latestaiagents/agent-skills/performance-testingnpx skills add latestaiagents/agent-skills --skill performance-testinggit clone --depth 1 https://github.com/latestaiagents/agent-skillsWrote 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/skills/latestaiagents/agent-skills/performance-testing)<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>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.00059 | $0.02280 |
| Opus 5 | $0.00030 | $0.01140 |
| Sonnet 5 | $0.00012 | $0.00456 |
| Haiku 4.5 | $0.00006 | $0.00228 |
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 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'),
});
}
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.
- yesterday First seen · 356 lines · 59 tokens per session scan B bd63a6defb96
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.
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…
ai-amazon-brand-analytics
Skill "ai-amazon-brand-analytics" from skillsaiagent/aiskills, covering ai-amazon-brand-analytics amazon 品牌分析助手, 概述, 什么时候使用, 调用方式 and 命令示例.
ai-amazon-international-listings
Amazon 本地化助手适合运营、产品、销售、software在用户提出“海外 Listing 说对了吗”这类问题,需要快速拆解目标、判断重点并形成可执行结果时使用,帮助基于输入材料生成商品/店铺诊断、卖点与风险提示、运营动作建议。.
ai-amazon-inventory-management
Skill "ai-amazon-inventory-management" from skillsaiagent/aiskills, covering ai-amazon-inventory-management amazon 库存诊断助手, 概述, 什么时候使用, 调用方式 and 命令示例.
ai-amazon-repricing-strategy
Skill "ai-amazon-repricing-strategy" from skillsaiagent/aiskills, covering ai-amazon-repricing-strategy amazon 调价诊断助手, 概述, 什么时候使用, 调用方式 and 命令示例.
ai-amazon-return-reduction
Skill "ai-amazon-return-reduction" from skillsaiagent/aiskills, covering ai-amazon-return-reduction amazon 退货诊断助手, 概述, 什么时候使用, 调用方式 and 命令示例.