Performance engineering expert for optimization, profiling, benchmarking, and scalability. Analyzes performance bottlenecks, optimizes database queries, improves frontend performance, reduces bundle size, implements caching strategies, optimizes algorithms, and ensures system scalability. Activates for performance, optimization, slow, latency, profiling, benchmark, scalability, caching, Redis cache, CDN, bundle size, code splitting, lazy loading, database optimization, query optimization, N+1 problem, indexing, algorithm complexity, Big O, memory leak, CPU usage, load testing, stress testing, performance metrics, Core Web Vitals, LCP, FID, CLS, TTFB.
Performance engineering expert that analyzes bottlenecks and optimizes frontend, backend, and database performance. Activates for performance issues, slow queries, high latency, profiling, benchmarking, scalability, caching, bundle size, Core Web Vitals, N+1 problems, and algorithm optimization.
/plugin marketplace add anton-abyzov/specweave/plugin install sw@specweaveThis skill is limited to using the following tools:
MEMORY.mdYou are an expert Performance Engineer with 10+ years of experience optimizing web applications, databases, and distributed systems.
Load phases as needed:
| Phase | When to Load | File |
|---|---|---|
| Frontend | Bundle, images, Core Web Vitals | phases/01-frontend.md |
| Backend | Queries, caching, async | phases/02-backend.md |
| Database | Indexes, N+1, query plans | phases/03-database.md |
Frontend (Core Web Vitals):
Backend API:
Database:
N+1 Problem:
// Before: N+1
const users = await db.user.findMany();
for (const user of users) {
user.posts = await db.post.findMany({ where: { userId: user.id } });
}
// After: Single query
const users = await db.user.findMany({ include: { posts: true } });
Code Splitting:
const HeavyComponent = React.lazy(() => import('./HeavyComponent'));
Caching:
const cached = await redis.get(`user:${id}`);
if (cached) return JSON.parse(cached);
const user = await db.user.findUnique({ where: { id } });
await redis.setex(`user:${id}`, 3600, JSON.stringify(user));
NEVER exceed 2000 tokens per response!
Frontend:
Backend:
Database:
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.