| name | performance-optimizer |
| description | Profiles application, API, and SQL latency from a measured baseline, then applies N+1 joins, indexes, caching, pagination, memoization, and leak cleanup. Use when endpoints, queries, or UI loops are slow and a before/after metric is required. Not for Core Web Vitals page-asset work (LCP, CLS, INP — performance-and-web-vitals). Never a Lighthouse CI budget gate. |
| version | 1.0.1 |
| category | development |
| risk | safe |
| source | community |
| date_added | 2026-03-05 |
Performance Optimizer
Find and fix performance bottlenecks. Measure, optimize, verify. Never optimize without measuring first.
When to Use
- App is slow or laggy
- User complains about performance
- Page load times are high
- API responses are slow
- Database queries take too long
- User mentions "slow", "lag", "performance", or "optimize"
- Need to prove a measurable improvement before and after a change
Prerequisites
- Access to the codebase or database being optimized
- Ability to run the application or query in a production-like environment
- Profiling or measurement tooling available (browser DevTools,
node --prof, EXPLAIN ANALYZE, etc.)
- Baseline metrics captured before any changes are made
Procedure
1. Measure First
Never optimize without measuring. Capture a baseline for every bottleneck you intend to fix.
console.time('operation');
await slowOperation();
console.timeEnd('operation');
What to measure:
- Page load time
- API response time
- Database query time
- Function execution time
- Memory usage
- Network requests
2. Find the Bottleneck
Use profiling tools to find the slowest parts. Fix the slowest thing first for biggest impact.
Browser:
DevTools → Performance tab → Record → Stop
Look for long tasks (red bars)
Node.js:
node --prof app.js
node --prof-process isolate-*.log > profile.txt
Database:
EXPLAIN ANALYZE SELECT * FROM users WHERE email = 'test@example.com';
3. Apply Optimization
Fix the slowest thing first (biggest impact). See the common patterns below.
Database: N+1 Queries
const users = await db.users.find();
for (const user of users) {
user.posts = await db.posts.find({ userId: user.id });
}
const users = await db.users.find()
.populate('posts');
Database: Missing Index
EXPLAIN SELECT * FROM users WHERE email = 'test@example.com';
CREATE INDEX idx_users_email ON users(email);
EXPLAIN SELECT * FROM users WHERE email = 'test@example.com';
Database: SELECT *
const users = await db.query('SELECT * FROM users');
const users = await db.query('SELECT id, name, email FROM users');
Database: No Pagination
const users = await db.users.find();
const users = await db.users.find()
.limit(20)
.skip((page - 1) * 20);
API: No Caching
app.get('/api/stats', async (req, res) => {
const stats = await db.stats.calculate();
res.json(stats);
});
const cache = new Map();
app.get('/api/stats', async (req, res) => {
const cached = cache.get('stats');
if (cached && Date.now() - cached.time < 300000) {
return res.json(cached.data);
}
const stats = await db.stats.calculate();
cache.set('stats', { data: stats, time: Date.now() });
res.json(stats);
});
API: Sequential Operations
const user = await getUser(id);
const posts = await getPosts(id);
const comments = await getComments(id);
const [user, posts, comments] = await Promise.all([
getUser(id),
getPosts(id),
getComments(id)
]);
API: Large Payloads
res.json(users);
res.json(users.map(u => ({
id: u.id,
name: u.name,
email: u.email
})));
Frontend: Unnecessary Re-renders
function UserList({ users }) {
return users.map(user => <UserCard user={user} />);
}
const UserCard = React.memo(({ user }) => {
return <div>{user.name}</div>;
});
Frontend: Large Bundle
import _ from 'lodash';
import debounce from 'lodash/debounce';
Frontend: No Code Splitting
import HeavyComponent from './HeavyComponent';
const HeavyComponent = React.lazy(() => import('./HeavyComponent'));
Frontend: Unoptimized Images
<img src="photo.jpg" />
<img
src="photo-small.webp"
srcset="photo-small.webp 400w, photo-large.webp 800w"
loading="lazy"
width="400"
height="300"
/>
Algorithm: Inefficient Algorithm
function findDuplicates(arr) {
const duplicates = [];
for (let i = 0; i < arr.length; i++) {
for (let j = i + 1; j < arr.length; j++) {
if (arr[i] === arr[j]) duplicates.push(arr[i]);
}
}
return duplicates;
}
function findDuplicates(arr) {
const seen = new Set();
const duplicates = new Set();
for (const item of arr) {
if (seen.has(item)) duplicates.add(item);
seen.add(item);
}
return Array.from(duplicates);
}
Algorithm: Repeated Calculations
function getTotal(items) {
return items.reduce((sum, item) => sum + item.price * item.quantity, 0);
}
const getTotal = useMemo(() => {
return items.reduce((sum, item) => sum + item.price * item.quantity, 0);
}, [items]);
Memory: Memory Leak
useEffect(() => {
window.addEventListener('scroll', handleScroll);
}, []);
useEffect(() => {
window.addEventListener('scroll', handleScroll);
return () => window.removeEventListener('scroll', handleScroll);
}, []);
Memory: Large Data in Memory
const data = fs.readFileSync('huge-file.txt');
const stream = fs.createReadStream('huge-file.txt');
stream.on('data', chunk => process(chunk));
4. Measure After
Always measure after to prove improvement:
console.time('query');
const users = await db.users.find();
console.timeEnd('query');
console.time('query');
const users = await db.users.find();
console.timeEnd('query');
5. Quick Wins
Easy optimizations with big impact:
- Add database indexes on frequently queried columns
- Enable gzip compression on server
- Add caching for expensive operations
- Lazy load images and heavy components
- Use CDN for static assets
- Minify and compress JavaScript/CSS
- Remove unused dependencies
- Use pagination instead of loading all data
- Optimize images (WebP, proper sizing)
- Enable HTTP/2 on server
Pitfalls
- Never optimize without measuring first. You cannot prove an improvement without a baseline.
- Premature optimization. Optimize when it is actually slow, not speculatively.
- Micro-optimizations. Saving 1ms when a page takes 5 seconds wastes time and harms readability.
- Sacrificing readability for tiny gains. Readable code is more important than negligible speed improvements.
- Profiling in non-production-like environments. Results may not reflect real-world load.
- Ignoring the 80/20 rule. 20% of code causes 80% of slowness. Find that 20%.
- Forgetting to verify functionality. An optimization that breaks features is not an optimization.
- Introducing new bugs. Always run existing tests after applying optimizations.
- N+1 queries hidden behind ORMs. Always check how many queries are actually executed.
- Memory leaks from missing cleanup. Event listeners, intervals, and subscriptions must be cleaned up.
- Loading entire datasets into memory. Use streaming or pagination for large data.
Verification
Confirm each optimization is real and safe:
- Measured current performance — baseline captured before changes.
- Identified bottleneck — profiling output points to the slowest part.
- Applied optimization — change targets the identified bottleneck.
- Measured improvement — post-change metric shows measurable gain.
- Verified functionality still works — existing tests pass, manual smoke test confirms behavior.
- No new bugs introduced — no regressions in related features.
- Documented the change — note what was optimized, why, and the measured improvement.
Performance Budgets
Use these targets as verification thresholds:
Page Load: < 2 seconds
API Response: < 200ms
Database Query: < 50ms
Bundle Size: < 200KB
Time to Interactive: < 3 seconds
Tools
Browser:
- Chrome DevTools Performance tab
- Lighthouse (audit)
- Network tab (waterfall)
Node.js:
node --prof (profiling)
clinic (diagnostics)
autocannon (load testing)
Database:
EXPLAIN ANALYZE (query plans)
- Slow query log
- Database profiler
Monitoring:
- New Relic
- Datadog
- Sentry Performance
When NOT to Optimize
- Premature optimization (optimize when it's actually slow)
- Micro-optimizations (save 1ms when page takes 5 seconds)
- Readable code is more important than tiny speed gains
- If it's already fast enough
Key Principles
- Measure before optimizing
- Fix the biggest bottleneck first
- Measure after to prove improvement
- Don't sacrifice readability for tiny gains
- Profile in production-like environment
- Consider the 80/20 rule (20% of code causes 80% of slowness)
Related Skills
database-design — Query optimization and indexing
codebase-audit-pre-push — Code review before merge
bug-hunter — Debugging and root cause analysis
Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.