perf-profiling
Systematic performance profiling and optimization. Use when performance issues are reported or suspected. Measure first, optimize second. Applies Pareto principle — find the 20% of code causing 80% of slowness, fix that, not the rest.
What this skill does
> **AI-consumed reference.** Optimized for Claude to read during execution. > Human-readable explanation: see [docs/architecture/HIERARCHICAL_PLANNING.md](../../../docs/architecture/HIERARCHICAL_PLANNING.md) > or [docs/getting-started/](../../../docs/getting-started/) depending on topic. # Performance Profiling **Rule 0:** Don't optimize what you haven't measured. Almost all "obvious" optimizations are wrong. --- ## The Protocol ### Step 1 — Define "fast enough" Performance is relative. Before optimizing: - **Current metric** (p50, p95, p99 latency / MB memory / % CPU) - **Target metric** (what's the SLO/SLA/user expectation?) - **Gap** — what needs to close If no target → **ask the user**. Don't optimize without a goal — you'll polish forever. ### Step 2 — Measure baseline Use the appropriate profiler: | Language | Profiler | |----------|----------| | Node.js | `node --prof`, `clinic.js`, `0x` | | Browser JS | Chrome DevTools Performance tab | | Python | `cProfile`, `py-spy`, `memory_profiler` | | Go | `pprof` (built-in) | | Rust | `cargo flamegraph`, `perf` | | CLI | `hyperfine` | | HTTP | `wrk`, `k6`, `vegeta` | Run the profiler under **realistic load**, not trivial input. Capture for 30–60s minimum — short captures miss long-tail events. ### Step 3 — Analyze (flamegraph / top consumers) Identify the top 3 functions by: - **Self time** (function's own CPU, excluding descendants) - **Total time** (self + descendants) - **Call count** (high-frequency cold functions add up) **Pareto check:** Is there a clear 80/20? - Top function takes 50%+ of time → that's your target - Time spread evenly across 100 functions → hard to optimize; likely needs architectural change ### Step 4 — Form optimization hypothesis For the bottleneck: - What's it doing? (read the code) - Why is it slow? (algorithm, I/O, allocations, lock contention, cache miss) - What's a realistic improvement target? Common bottleneck classes + fixes: | Bottleneck | Fix | |-----------|-----| | O(n²) on large n | Change to O(n log n) or O(n) | | Sync I/O in hot path | Async, batch, or remove the I/O | | Allocations in loop | Pre-allocate, object pool, reuse | | Redundant computation | Memoize, cache result | | Lock contention | Lock-free structure, sharding, immutable data | | Large object serialization | Streaming, lazy fields, columnar format | | Database N+1 | Join, prefetch, dataloader pattern | | Cold cache / page fault | Warm up, prefetch, locality | ### Step 5 — Implement one change, re-measure **One change at a time.** Multiple simultaneous changes = unknown which one helped. Measure the same workload after the change. Compute speedup. If < 10% improvement on the targeted bottleneck: wrong hypothesis — revert, try next. ### Step 6 — Verify no regression elsewhere Optimization can break correctness OR slow other paths. Run: - Full test suite (correctness) - Broader benchmark (other metrics didn't degrade — memory, throughput, p99) ### Step 7 — Document In PR or commit message: - Baseline metric - Change made - New metric - Speedup factor - **Why** this change worked (root cause of slowness, not "just faster") --- ## Anti-Patterns - **Micro-optimization without measurement** — replacing `map` with a `for` loop "for speed" when the bottleneck is elsewhere - **Optimizing cold code** — code that runs rarely. Total impact = 0 even if 10× faster per call - **Premature async** — async has overhead. Sync code often wins for CPU-bound small tasks - **Cache everything** — caches add memory, invalidation bugs, staleness. Cache when measured benefit > cost - **One benchmark run** — variance is huge. Run 10+ times, take p50 + std dev - **Microbenchmarking in isolation** — function is fast in a benchmark, slow in production due to cache/JIT/load differences --- ## When Architecture Change Is Needed If profiling shows a flat distribution (no single bottleneck), OR if the target is 10× faster: individual optimizations won't close the gap. Options: - **Algorithm change** — different approach entirely (not a tweak) - **Move work to a different tier** — client → server, server → precomputed, online → offline - **Different data structure** — array → tree, hash → trie, sync → event stream - **Different runtime** — interpreted → compiled, single-threaded → parallel, CPU → GPU These are architectural calls. Use `self-consistency` for trade-off analysis, `tree-of-thoughts` for exploring design branches. --- ## Output Format ```markdown ## Performance Profile: [task / endpoint / function] **Baseline:** p50=Xms, p95=Yms, p99=Zms, memory=N MB **Target:** p95 < Wms (source: [SLO / user request]) **Gap:** Yms − Wms = Kms to close **Bottleneck:** [function/query/operation] — X% of total time **Root Cause:** [why it's slow] **Optimization Applied:** [single change] **After:** p50=X'ms, p95=Y'ms, p99=Z'ms **Speedup:** [factor] **Correctness:** [tests pass] **Broader Impact:** [other metrics checked, no regressions] ``` --- ## Tie-Ins - `skills/self-consistency/SKILL.md` — for architectural decisions - `skills/tree-of-thoughts/SKILL.md` — explore optimization branches - `rules/core/verification.md` — measure before + after, not just after - `commands/check.md` — `/check perf` uses this skill - `rules/core/simplicity-over-complexity.md` — the winning optimization is usually "do less," not "do the same thing with a clever structure"
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.