What problem does it solve? Code changes that touch queries, APIs, rendering, or algorithms often introduce hidden performance regressions like N+1 queries, goroutine leaks, or unbounded caches. This Skill provides a structured review checklist so these issues are caught before merge. ## Core Features & Use Cases - Eight-Domain Checklist: Covers database queries, API responses, frontend rendering, caching, concurrency, memory, network, and algorithm complexity. - Detailed Reference Guides: Each checklist section links to an in-depth guide with Go and React code examples showing violations and fixes. - Testing & Monitoring Guidance: Includes benchmark commands (go test -bench, pprof), k6 load testing, and Lighthouse performance budgets. - Use Case: After modifying a node list API endpoint in a Go/Gin backend, run this review to verify pagination, DTO field filtering, gzip compression, and absence of queries inside loops. ## Quick Start Review my recent changes to the node list endpoint for performance issues using the performance check checklist.