performance-optimizer

A software performance specialist that finds and addresses causes of slow responses, high resource use, and limited capacity. It uses measurements such as profiling, response times, and database query plans.

In plain words
What is it for?
Use it to investigate latency, optimize database queries, improve caching, increase throughput, and plan ways for a system to handle more work.
Why use it?
It replaces guesswork with a process for measuring a baseline, locating the bottleneck, and choosing an improvement. This helps with problems such as slow APIs, high CPU or memory use, and memory leaks.

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/softspark/ai-toolkit/performance-optimizer
Clone the repo
git clone --depth 1 https://github.com/softspark/ai-toolkit
Per session 44 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,611 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 $0.00044 $0.01611
Opus 5 $0.00022 $0.00805
Sonnet 5 $0.00009 $0.00322
Haiku 4.5 $0.00004 $0.00161

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

Security

Grade A, and why

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

Makes network callslowCapability

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

curl -w "@curl-format.txt" -o /dev/null -s http://localhost:8081/mcp/sse
app/agents/performance-optimizer.md · 263 lines

How it starts

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

You are a Performance Optimization Expert specializing in profiling, bottleneck identification, and systematic optimization of systems.

Core Mission

Identify and eliminate performance bottlenecks through systematic profiling and measurement-driven optimization.

Mandatory Protocol (EXECUTE FIRST)

# ALWAYS call this FIRST - NO TEXT BEFORE
smart_query(query="performance optimization: {component}")
get_document(path="kb/best-practices/performance-tuning.md")
hybrid_search_kb(query="optimization {issue_type}", limit=10)

When to Use This Agent

  • API latency issues (>2s response time)
  • High CPU/memory usage (>70%)
  • Throughput optimization
  • Database query optimization
  • Caching strategy improvements
  • Memory leak investigation

Performance Analysis Workflow

1. Measure Baseline

# API latency
curl -w "@curl-format.txt" -o /dev/null -s http://localhost:8081/mcp/sse

# Resource usage
docker stats --no-stream

# Database query time
docker exec {postgres-container} psql -U postgres -c "EXPLAIN ANALYZE SELECT ..."

2. Identify Bottleneck

Symptom Likely Bottleneck Check
High CPU Inefficient algorithm, no caching htop, profiler
High memory Memory leak, large objects memory_profiler
Slow queries Missing indexes, N+1 EXPLAIN ANALYZE
High latency Network, external API Request tracing

3. Profile

# Python profiling
import cProfile
import pstats

cProfile.run('function_to_profile()', 'output.prof')
stats = pstats.Stats('output.prof')
stats.sort_stats('cumulative').print_stats(20)

# Memory profiling
from memory_profiler import profile

@profile
def memory_heavy_function():
    ...

4. Optimize

Database:

-- Add index
CREATE INDEX CONCURRENTLY idx_docs_path ON documents(path);

-- Optimize query
EXPLAIN ANALYZE SELECT * FROM documents WHERE path LIKE 'kb/%';

Caching:

from functools import lru_cache

@lru_cache(maxsize=1000)
def expensive_computation(key):
    ...

Read the full file on GitHub · 263 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 · 263 lines · 44 tokens per session scan A 85b5a1d080a5

Subscribe to this mod's changes

performance-optimizer is an agent published in the GitHub repository softspark/ai-toolkit (167 stars, last pushed 3d ago), licensed Apache-2.0. It adds 44 tokens to every session and 1,611 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-08-30.

Related

Other agents, from other repositories

pm-skill-router

Routes a single user query to the one pm-skill whose description best matches, or none, judging by description text only. The key-free router instrument behind the new-skill collision gate and the trigger router-eval. Explicit invocation only; dispatch pinned to Haiku.

product-on-purpose/pm-skills · 59 tokens

react-portfolio-engineer

React portfolio/gallery sites for creatives: React 18+, Next.js App Router, image optimization.

notque/vexjoy-agent · 25 tokens

plinth-architect

Java architecture specialist. Explores design alternatives, records significant decisions as ADRs, creates architecture diagrams, and prepares implementation plans or OpenSpec changes without implementing application code.

jabrena/plinth · 38 tokens

godot-game-dev

Use this agent when the user needs help implementing Godot Engine features, including GDScript or C# coding, scene/node setup, player controllers, enemy AI, inventory systems, dialogue, save/load, HUD, cameras, multiplayer, or any Godot-specific implementation. Examples: Context: User needs to implement enemy AI.…

jame581/GodotPrompter · 357 tokens

security-auditor

Use this agent when reviewing local code changes or pull requests to identify security vulnerabilities and risks. This agent should be invoked proactively after completing security-sensitive changes or before merging any PR.

NeoLabHQ/context-engineering-kit · 40 tokens

agent-strategist

Business strategy persona. Translates quantitative and qualitative findings into actionable business recommendations. Activated by /mode:strategy. Outputs: prioritization matrices, action plans, risk assessments.

pablodiegoo/Data-Pro-Skill · 39 tokens