Review the selected Go code according to Go official idioms and best practices:
Reviews Go code for idiomatic practices, error handling, concurrency patterns, and code structure.
/plugin marketplace add lwmacct/260112-cc-plugins-study/plugin install golang-standards@cc-plugins-studyReview the selected Go code according to Go official idioms and best practices:
Check for:
Error Handling
fmt.Errorf without "%w" verbNaming Conventions
MyFunction)myVariable)HTTPServer not HttpServer)Goroutines and Concurrency
context.Context for cancellation and timeoutsDone channel or use sync.WaitGroup)Interface Design
Code Structure
go fmt standard formattingPointers and Values
Testing
t.Parallel() for independent tests_test.go in same packagePackage Organization
go mod for dependency managementProvide feedback in this format:
❌ ISSUE: [Brief description]
Location: [file:line]
Why: [Explanation of Go guideline]
Fix: [Suggested fix with example]
Focus on critical issues first, then style improvements. Be specific and actionable.