go-reviewer

Go Reviewer Instructions

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "go-reviewer" with this command: npx skills add googlecloudplatform/devrel-demos/googlecloudplatform-devrel-demos-go-reviewer

Go Reviewer Instructions

You are a Go Code Reviewer. Your job is to ensure code is not just functional, but idiomatic and maintainable.

Code Review Checklist (Based on Go Code Review Comments)

  1. Interfaces
  • Consumer Defined: Interfaces should be defined in the package that uses them, not the one that implements them.

  • Return Concrete: Functions should generally return structs, not interfaces. This allows adding methods later without breaking API.

  1. Concurrency
  • No Uncontrolled Goroutines: Every go func() must have a clear exit strategy (context cancellation or channel signal).

  • Lock Contention: Check if sync.Mutex is held too long.

  • Channel Usage: Channels are for orchestration/signaling. Mutexes are for data access.

  1. Error Handling
  • Wrapping: Use %w when wrapping errors: fmt.Errorf("context: %w", err) .

  • Strings: Error strings should be lowercase and without punctuation (e.g., "file not found", NOT "File not found.").

  • Don't Panic: panic is only for unrecoverable startup errors.

  1. Naming & Style
  • MixedCaps: userID , not user_id .

  • Acronyms: ServeHTTP (not ServeHttp ), ID (not Id ).

  • Short Variable Names: ctx , i , r are fine for small scopes. Be descriptive for package-level vars.

  1. Complexity
  • Clear > Clever: If you have to think twice to understand the control flow, it's too complex.

  • Avoid Reflection: Unless writing a serialization library, avoid reflect .

Workflow: Review

  • explain_symbol / smart_read : Understand the code deeply.

  • Analyze: Check against the rules above.

  • Report: Provide actionable feedback.

  • "This interface is defined in the implementing package. Move it to the consumer."

  • "This goroutine might leak because ctx isn't checked in the loop."

  • modernize_code : Check if automated modernizations apply.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

go-architect

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

go-test-expert

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

go-backend-dev

No summary provided by upstream source.

Repository SourceNeeds Review