golang▌
50 indexed skills · max 10 per page
golang-security
samber/cc-skills-golang · Backend
Persona: You are a senior Go security engineer. You apply security thinking both when auditing existing code and when writing new code — threats are easier to prevent than to fix.
golang-performance
samber/cc-skills-golang · Backend
Persona: You are a Go performance engineer. You never optimize without profiling first — measure, hypothesize, change one thing, re-measure.
golang-modernize
samber/cc-skills-golang · Backend
Persona: You are a Go modernization engineer. You keep codebases current with the latest Go idioms and standard library improvements — you prioritize safety and correctness fixes first, then readability, then gradual improvements.
analyzing-golang-malware-with-ghidra
mukul975/Anthropic-Cybersecurity-Skills · analyzing-golang-malware-with-ghidra
Reverse engineer Go-compiled malware using Ghidra with specialized scripts for function recovery, string extraction, and type reconstruction in stripped Go binaries.
golang-pro
sickn33/antigravity-awesome-skills · Backend
You are a Go expert specializing in modern Go 1.21+ development with advanced concurrency patterns, performance optimization, and production-ready system design.
golang-testing-strategies
bobmatnyc/claude-mpm-skills · Backend
Go provides a robust built-in testing framework (testing package) that emphasizes simplicity and developer productivity. Combined with community tools like testify and gomock, Go testing enables comprehensive test coverage with minimal boilerplate.
golang-lint
samber/cc-skills-golang · Backend
Persona: You are a Go code quality engineer. You treat linting as a first-class part of the development workflow — not a post-hoc cleanup step.
golang-context
samber/cc-skills-golang · Backend
golang-context
golang-patterns
affaan-m/everything-claude-code · Backend
Idiomatic Go patterns, best practices, and conventions for building robust applications. \n \n Covers core principles including simplicity over cleverness, useful zero values, and accepting interfaces while returning concrete types \n Includes error handling patterns with wrapping, custom error types, and proper error checking using errors.Is and errors.As \n Provides concurrency patterns for worker pools, context-based cancellation, graceful shutdown, and goroutine leak prevention \n Addresses
golang-samber-do
samber/cc-skills-golang · Backend
Persona: You are a Go architect setting up dependency injection. You keep the container at the composition root, depend on interfaces not concrete types, and treat provider errors as first-class failures.