Provides system optimization and profiling expertise specializing in deep-dive performance analysis, load testing, and kernel-level tuning using eBPF and Flamegraphs. Identifies and resolves performance bottlenecks in applications and infrastructure.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionperformance-engineerExecute the skills CLI command in your project's root directory to begin installation:
Fetches performance-engineer from 404kidwiz/claude-supercode-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate performance-engineer. Access via /performance-engineer in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
75
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
75
stars
Provides system optimization and profiling expertise specializing in deep-dive performance analysis, load testing, and kernel-level tuning using eBPF and Flamegraphs. Identifies and resolves performance bottlenecks in applications and infrastructure.
What is the bottleneck?
│
├─ **CPU High?**
│ ├─ User Space? → **Language Profiler** (pprof, async-profiler)
│ └─ Kernel Space? → **perf / eBPF** (System calls, Context switches)
│
├─ **Memory High?**
│ ├─ Leak? → **Heap Dump Analysis** (Eclipse MAT, heaptrack)
│ └─ Fragmentation? → **Allocator tuning** (jemalloc, tcmalloc)
│
├─ **I/O Wait?**
│ ├─ Disk? → **iostat / biotop**
│ └─ Network? → **tcpdump / Wireshark**
│
└─ **Latency (Wait Time)?**
└─ Distributed? → **Tracing** (OpenTelemetry, Jaeger)
| Tool | Language | Best For |
|---|---|---|
| K6 | JS | Developer-friendly, CI/CD integration. |
| Gatling | Scala/Java | High concurrency, complex scenarios. |
| Locust | Python | Rapid prototyping, code-based tests. |
| Wrk2 | C | Raw HTTP throughput benchmarking (simple). |
Red Flags → Escalate to database-optimizer:
Goal: Identify which function is consuming 80% CPU.
Steps:
Capture Profile (Linux perf)
# Record stack traces at 99Hz for 30 seconds
perf record -F 99 -a -g -- sleep 30
Generate Flamegraph
perf script > out.perf
./stackcollapse-perf.pl out.perf > out.folded
./flamegraph.pl out.folded > profile.svg
Analysis
profile.svg in browser.json_parse is 40% width → Optimize JSON handling.Goal: Improve Frontend responsiveness (Core Web Vital).
Steps:
Measure
Identify
Optimize
await new Promise(r => setTimeout(r, 0)) or scheduler.postTask().Goal: Fix "Laggy Click" (INP > 200ms) on a React button.
Steps:
Identify Interaction
click handler duration.Break Up Long Tasks
async function handleClick() {
// 1. UI Update (Immediate)
setLoading(true);
// 2. Yield to main thread to let browser paint
await new Promise(r => setTimeout(r, 0));
// 3. Heavy Logic
await heavyCalculation();
setLoading(false);
}
Verify
Web Vitals extension. Check if INP drops below 200ms.What it looks like:
map() with a complex for loop because "it's faster" without measuring.Why it fails:
Correct approach:
What it looks like:
Why it fails:
Correct approach:
What it looks like:
Why it fails:
Correct approach:
Scenario: Production API experiencing 80% CPU utilization causing latency spikes.
Investigation Approach:
Key Findings:
| Function | CPU % | Optimization Action |
|---|---|---|
| json_serialize | 35% | Switch to binary format |
| crypto_hash | 25% | Batch hashing operations |
| regex_match | 20% | Pre-compile patterns |
Results:
Scenario: Distributed system with 15 services experiencing end-to-end latency issues.
Investigation Approach:
Trace Analysis:
Service A (50ms) → Service B (200ms) → Service C (500ms) → Database (1s)
↑
Connection pool exhaustion
Resolution:
Results:
Scenario: E-commerce platform preparing for Black Friday traffic (10x normal load).
Load Testing Approach:
Load Test Results:
| Virtual Users | RPS | P95 Latency | Error Rate |
|---|---|---|---|
| 1,000 | 500 | 150ms | 0.1% |
| 5,000 | 2,400 | 280ms | 0.3% |
| 10,000 | 4,800 | 550ms | 1.2% |
| 15,000 | 6,200 | 1.2s | 5.8% |
Capacity Recommendations:
Profiling:
Load Testing:
Optimization:
Make data-driven prioritization decisions faster
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid when
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
performance-engineer reduced setup friction for our internal harness; good balance of opinion and flexibility.
performance-engineer is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: performance-engineer is focused, and the summary matches what you get after install.
performance-engineer has been reliable in day-to-day use. Documentation quality is above average for community skills.
I recommend performance-engineer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
performance-engineer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added performance-engineer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
performance-engineer has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: performance-engineer is focused, and the summary matches what you get after install.
Useful defaults in performance-engineer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
showing 1-10 of 40