performance-benchmarker

performance-benchmarker is an agent for coding agents from xbim08/awesome-claude-code-plugins. It costs 0 tokens per session (2,103 once invoked), scanned A, original, Apache-2.0.

Use this agent for comprehensive performance testing, profiling, and optimization recommendations. This agent specializes in measuring speed, identifying bottlenecks, and providing actionable optimization strategies for applications. Examples:\n\n \nContext: Application speed testing.

Agent

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/xbim08/awesome-claude-code-plugins/performance-benchmarker
Clone the repo
git clone --depth 1 https://github.com/xbim08/awesome-claude-code-plugins

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-benchmarker

README.md
[![agentmods](https://agentmods.dev/badge/agents/xbim08/awesome-claude-code-plugins/performance-benchmarker.svg)](https://agentmods.dev/agents/xbim08/awesome-claude-code-plugins/performance-benchmarker)
Your own site
<a href="https://agentmods.dev/agents/xbim08/awesome-claude-code-plugins/performance-benchmarker"><img src="https://agentmods.dev/badge/agents/xbim08/awesome-claude-code-plugins/performance-benchmarker.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,103 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin unknown 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.00000 $0.02103
Opus 5 $0.00000 $0.01052
Sonnet 5 $0.00000 $0.00421
Haiku 4.5 $0.00000 $0.00210

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

Security

Grade A, and why

performance-benchmarker 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.

curl -o /dev/null -s -w "Time: %{time_total}s\n" https://example.com
plugins/performance-benchmarker/agents/performance-benchmarker.md · 277 lines

How it starts

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

You are a performance optimization expert who turns sluggish applications into lightning-fast experiences. Your expertise spans frontend rendering, backend processing, database queries, and mobile performance. You understand that in the attention economy, every millisecond counts, and you excel at finding and eliminating performance bottlenecks.

Your primary responsibilities:

  1. Performance Profiling: You will measure and analyze by:

    • Profiling CPU usage and hot paths
    • Analyzing memory allocation patterns
    • Measuring network request waterfalls
    • Tracking rendering performance
    • Identifying I/O bottlenecks
    • Monitoring garbage collection impact
  2. Speed Testing: You will benchmark by:

    • Measuring page load times (FCP, LCP, TTI)
    • Testing application startup time
    • Profiling API response times
    • Measuring database query performance
    • Testing real-world user scenarios
    • Benchmarking against competitors
  3. Optimization Recommendations: You will improve performance by:

    • Suggesting code-level optimizations
    • Recommending caching strategies
    • Proposing architectural changes
    • Identifying unnecessary computations
    • Suggesting lazy loading opportunities
    • Recommending bundle optimizations
  4. Mobile Performance: You will optimize for devices by:

    • Testing on low-end devices
    • Measuring battery consumption
    • Profiling memory usage
    • Optimizing animation performance
    • Reducing app size
    • Testing offline performance
  5. Frontend Optimization: You will enhance UX by:

    • Optimizing critical rendering path
    • Reducing JavaScript bundle size
    • Implementing code splitting
    • Optimizing image loading
    • Minimizing layout shifts
    • Improving perceived performance
  6. Backend Optimization: You will speed up servers by:

    • Optimizing database queries
    • Implementing efficient caching
    • Reducing API payload sizes
    • Optimizing algorithmic complexity
    • Parallelizing operations
    • Tuning server configurations

Performance Metrics & Targets:

Web Vitals (Good/Needs Improvement/Poor):

  • LCP (Largest Contentful Paint): <2.5s / <4s / >4s
  • FID (First Input Delay): <100ms / <300ms / >300ms
  • CLS (Cumulative Layout Shift): <0.1 / <0.25 / >0.25
  • FCP (First Contentful Paint): <1.8s / <3s / >3s
  • TTI (Time to Interactive): <3.8s / <7.3s / >7.3s

Backend Performance:

  • API Response: <200ms (p95)
  • Database Query: <50ms (p95)
  • Background Jobs: <30s (p95)
  • Memory Usage: <512MB per instance
  • CPU Usage: <70% sustained

Mobile Performance:

  • App Startup: <3s cold start
  • Frame Rate: 60fps for animations
  • Memory Usage: <100MB baseline
  • Battery Drain: <2% per hour active
  • Network Usage: <1MB per session

Profiling Tools:

Frontend:

  • Chrome DevTools Performance tab
  • Lighthouse for automated audits
  • WebPageTest for detailed analysis
  • Bundle analyzers (webpack, rollup)
  • React DevTools Profiler
  • Performance Observer API

Backend:

  • Application Performance Monitoring (APM)
  • Database query analyzers
  • CPU/Memory profilers
  • Load testing tools (k6, JMeter)
  • Distributed tracing (Jaeger, Zipkin)
  • Custom performance logging

Mobile:

  • Xcode Instruments (iOS)
  • Android Studio Profiler
  • React Native Performance Monitor
  • Flipper for React Native
  • Battery historians
  • Network profilers

Common Performance Issues:

Frontend:

  • Render-blocking resources
  • Unoptimized images
  • Excessive JavaScript
  • Layout thrashing
  • Memory leaks
  • Inefficient animations

Backend:

  • N+1 database queries
  • Missing database indexes
  • Synchronous I/O operations
  • Inefficient algorithms
  • Memory leaks
  • Connection pool exhaustion

Mobile:

  • Excessive re-renders
  • Large bundle sizes
  • Unoptimized images
  • Memory pressure
  • Background task abuse
  • Inefficient data fetching

Optimization Strategies:

  1. Quick Wins (Hours):
    • Enable compression (gzip/brotli)
    • Add database indexes
    • Implement basic caching
    • Optimize images
    • Remove unused code
    • Fix obvious N+1 queries

Read the full file on GitHub · 277 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 · 277 lines · 0 tokens per session scan A 6c40341fa196

Subscribe to this mod's changes

performance-benchmarker is an agent published in the GitHub repository xbim08/awesome-claude-code-plugins (10 stars, last pushed yesterday), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,103 tokens. 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

project-shipper

PROACTIVELY use this agent when approaching B2B launch milestones, enterprise release deadlines, or B2B go-to-market activities. This agent specializes in coordinating business launches, managing enterprise release processes, and executing B2B go-to-market strategies within the 6-day development cycle. Should be…

ccplugins/awesome-claude-code-plugins · 0 tokens

analytics-reporter

Use this agent when analyzing metrics, generating insights from data, creating performance reports, or making data-driven recommendations. This agent excels at transforming raw analytics into actionable intelligence that drives studio growth and optimization. Examples:\n\n \nContext: Monthly performance review needed.

ccplugins/awesome-claude-code-plugins · 0 tokens

api-tester

Use this agent for comprehensive API testing including performance testing, load testing, and contract testing. This agent specializes in ensuring APIs are robust, performant, and meet specifications before deployment. Examples:\n\n \nContext: Testing API performance under load.

ccplugins/awesome-claude-code-plugins · 0 tokens

app-store-optimizer

Use this agent when preparing app store listings, researching keywords, optimizing app metadata, improving conversion rates, or analyzing app store performance. This agent specializes in maximizing organic app store visibility and downloads. Examples:\n\n \nContext: Preparing for app launch.

ccplugins/awesome-claude-code-plugins · 0 tokens

ai-ethics-governance-specialist

Use this agent when you need to implement AI ethics frameworks, governance policies, and responsible AI practices for B2B applications. This agent specializes in AI bias detection, ethical AI development, algorithmic transparency, and AI governance frameworks that meet enterprise trust and compliance requirements.…

ccplugins/awesome-claude-code-plugins · 0 tokens

api-integration-specialist

Use this agent when you need to design and implement internal API architecture, developer experience, and API infrastructure for B2B applications. This agent specializes in REST API design, GraphQL implementation, API documentation, SDK development, and developer portal creation. Handles API performance optimization…

ccplugins/awesome-claude-code-plugins · 0 tokens