Go Performance Start with measurement, not rewriting. When to use this skill - Profile Go code with , , flight recording, or IDE-collected pprof-compatible profiles. - Diagnose CPU hot paths, allocation pressure, retained heap growth, goroutine pileups, scheduler delay, or lock/channel contention. - Write or repair Go benchmarks and compare performance changes with . - Decide whether a measured Go optimization is worth the added complexity. When NOT to use this skill - No measurement of an actual performance problem exists yet. Write the benchmark or capture the profile first; do not optimize…