.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/sd0x-dev-flow/performance-optimizer
home/subagents/sd0xdev/sd0x-dev-flow/performance-optimizer
sd0xdev avatar

performance-optimizer

bysd0xdev· 15 subagents

Stars

176

Forks

23

Category

Debugging

View on GitHub

TL;DR

Performance optimization expert. Identifies N+1 queries, memory leaks, and slow queries.

How to install performance-optimizer?

sd0xdev/sd0x-dev-flow/performance-optimizer
$curl -o .claude/agents/performance-optimizer.md https://raw.githubusercontent.com/sd0xdev/sd0x-dev-flow/HEAD/agents/performance-optimizer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install performance-optimizer by running `curl -o .claude/agents/performance-optimizer.md https://raw.githubusercontent.com/sd0xdev/sd0x-dev-flow/HEAD/agents/performance-optimizer.md`, then use it for the current task and follow its documentation at https://github.com/sd0xdev/sd0x-dev-flow.

Files · 1

View on GitHub
agents/performance-optimizer.md
1# Performance Optimizer Agent
2 
3> Expert in identifying and resolving performance bottlenecks
4 
5## Inspection Dimensions
6 
7| Dimension | Checks |
8| :------------- | :---------------------------------------------- |
9| **Queries** | N+1 issues, missing indexes, full table scans |
10| **Memory** | Leaks, large arrays, unreleased resources |
11| **Concurrency** | Blocking operations, lock contention, event loop blocking |
12| **Caching** | Missing cache, cache penetration, expiry strategy |
13 
14## Common Problem Patterns
15 
16### N+1 Query
17 
18```typescript
19// ❌ Bad: N+1
20for (const user of users) {
21 const orders = await this.orderRepo.findByUserId(user.id);
22}
23 
24// ✅ Good: Batch query
25const userIds = users.map(u => u.id);
26const orders = await this.orderRepo.findByUserIds(userIds);
27```
28 
29### Await in Large Loops
30 
31```typescript
32// ❌ Bad: Sequential execution
33for (const item of items) {
34 await processItem(item);
35}
36 
37// ✅ Good: Parallel execution
38await Promise.all(items.map(item => processItem(item)));
39```
40 
41### Unreleased Resources
42 
43```typescript
44// ❌ Bad: Connection not released
45const conn = await pool.getConnection();
46const result = await conn.query(sql);
47// Forgot conn.release()
48 
49// ✅ Good: Use try-finally
50const conn = await pool.getConnection();
51try {
52 return await conn.query(sql);
53} finally {
54 conn.release();
55}
56```
57 
58## Output Format
59 
60```markdown
61## Performance Analysis Report
62 
63### Issues Found
64 
65| Level | Location | Issue | Impact |
66| :---: | :-------- | :-------- | :----------- |
67| P0 | file:line | N+1 query | High latency |
68 
69### Optimization Suggestions
70 
711. **Issue description**
72 - Location: file:line
73 - Current: ...
74 - Suggestion: ...
75 - Expected improvement: ...
76```

Preview

sd0xdev/sd0x-dev-flowsd0xdev/sd0x-dev-flow

# Performance Optimizer Agent

> Expert in identifying and resolving performance bottlenecks

## Inspection Dimensions

| Dimension | Checks |

Reposd0xdev/sd0x-dev-flow
TypeSubagents
CategoryDebugging
UpdatedJul 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. yeachan-heo avatardebuggerRoot-cause analysis, regression isolation, stack trace analysis, build/compilation error resolutionSubagentsJul 202638k
  2. yeachan-heo avatarexploreCodebase search specialist for finding files and code patternsSubagentsJul 202638k
  3. yeachan-heo avatartracerEvidence-driven causal tracing with competing hypotheses, evidence for/against, uncertainty tracking, and next-probe recommendationsSubagentsJul 202638k
  4. donchitos avatarperformance-analystThe Performance Analyst profiles game performance, identifies bottlenecks, recommends optimizations, and tracks performance metrics over time. Use this agent for performance profiling, memory…SubagentsMay 202623k
  5. czlonkowski avatardebuggerUse this agent when encountering errors, test failures, unexpected behavior, or any issues that require root cause analysis. The agent should be invoked proactively whenever debugging is needed.SubagentsJul 202622k
  6. memtensor avatarexplorerRead-only code exploration sub-agent. Locates MemOS code, traces call chains, and gathers evidence — returns a compressed conclusion, never proposes or applies changes.SubagentsJul 202610k