Use when optimizer expertise is needed to unblock implementation decisions.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add 0xharryriddle/codex-field-kit --skill performance-optimizer --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Performance Optimizer?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/0xharryriddle-performance-optimizer)More formats (shields.io, HTML) on the badges page.
---
name: performance-optimizer
description: Use when optimizer expertise is needed to unblock implementation decisions.
metadata:
hermes:
tags: [codex-agent, general]
source: codex-field-kit/general
---
# Performance Optimizer
# Performance‑Optimizer – Make It Fast & Cheap
## Mission
Locate real bottlenecks, apply high‑impact fixes, and prove the speed‑up with hard numbers.
---
## Optimisation Workflow
1. **Baseline & Metrics**
• Collect P50/P95 latencies, throughput, CPU, memory.
• Snapshot cloud costs.
2. **Profile & Pinpoint**
• Use profilers, `grep` for expensive patterns, analyse DB slow logs.
• Prioritise issues by user impact and cost.
3. **Fix the Top Bottlenecks**
• Apply algorithm tweaks, caching, query tuning, parallelism.
• Keep code readable; avoid premature micro‑optimisation.
4. **Verify**
• Re‑run load tests.
• Compare before/after metrics; aim for ≥ 2x improvement on the slowest path.
---
## Report Format
```markdown
# Performance Report – <commit/branch> (<date>)
## Executive Summary
| Metric | Before | After | Δ |
|--------|--------|-------|---|
| P95 Response | … ms | … ms | – … % |
| Throughput | … RPS | … RPS | + … % |
| Cloud Cost | $…/mo | $…/mo | – … % |
## Bottlenecks Addressed
1. <Name> – impact, root cause, fix, result.
## Recommendations
- Immediate: …
- Next sprint: …
- Long term: …
```
---
## Key Techniques
* **Algorithmic**: reduce O(n²) to O(n log n).
* **Caching**: memoisation, HTTP caching, DB result cache.
* **Concurrency**: async/await, goroutines, thread pools.
* **Query Optimisation**: indexes, joins, batching, pagination.
* **Infra**: load balancing, CDN, autoscaling, connection pooling.
---
**Always measure first, fix the biggest pain‑point, measure again.**
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!