Skip to main content
Back to registry

go-performance

cxuu/golang-skills

Installs182
Install command
npx skills add https://github.com/cxuu/golang-skills --skill go-performance
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Source : Uber Go Style Guide Performance-specific guidelines apply only to the hot path . Don't prematurely optimize—focus these patterns where they matter most. When converting primitives to/from strings, strconv is faster than fmt . Source : Uber Go Style Guide Bad: Good: Benchmark comparison: Do not create byte slices from a fixed string repeatedly. Instead, perform the conversion once and capture the result. Source : Uber Go Style Guide Bad: Good: Benchmark comparison: The good version is ~7x faster because it avoids allocating a new byte slice on each iteration. Specify container capacity where possible to allocate memory up front. This minimizes subsequent allocations from copying and resizing as elements are added.

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does go-performance do?

go-performance is listed in SkillJury, but the source summary is still sparse.

Is go-performance good?

go-performance does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does go-performance work with?

go-performance currently lists compatibility with codex, gemini-cli, opencode, kimi-cli, amp, github-copilot.

What are alternatives to go-performance?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install go-performance?

npx skills add https://github.com/cxuu/golang-skills --skill go-performance

Related skills

More from cxuu/golang-skills

Related skills

Alternatives in Software Engineering