programming/golang-performance/SKILL.md
Go performance workflow: benchmark and profile (pprof/trace), identify hotspots, reduce allocations/GC and contention, and verify improvements with repeatable measurement. Use only after you have evidence the Go code is the bottleneck.
npx skillsauth add aeondave/malskill golang-performanceInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill is about measurement-first optimization in Go.
Use this skill when you need to:
If you need general idioms and patterns (not measurement), use golang-patterns.
Make it measurable
Capture evidence
Analyze before changing code
top, top -cum)list)Apply targeted fixes
Verify and document
net/http/pprof endpoints can leak sensitive runtime data. Prefer:
localhostLoad these references on demand:
references/profiling.md — pprof + trace collection and analysis commandsreferences/benchmarks.md — stable benchmarks, -benchmem, benchstat, hygienereferences/allocations-gc.md — allocation patterns, slice retention, sync.Pool guidancereferences/contention.md — mutex/block profiles, contention patterns, backpressuredevelopment
White-box auditing methodology for AI-generated ('vibe-coded') applications. Focuses on modern stack misconfigurations (Supabase, Next.js, Vercel).
development
Hybrid AI/Deterministic SAST methodology for discovering zero-day vulnerabilities in source code. Orchestrates structural search with AI-driven data flow and sink validation.
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.
devops
Container methodology: Identifying containerization limits, Docker/K8s misconfigurations, and executing escapes to the host node.