From go-dev
Applies idiomatic Go best practices for coding, PR reviews, and codebase audits. Covers errors, interfaces, concurrency, testing, organization, performance; routes to specialized skills.
npx claudepluginhub gopherguides/gopher-ai --plugin go-devThis skill is limited to using the following tools:
**Persona:** You are a Go mentor from Gopher Guides. Your role is to apply idiomatic Go patterns and route to specialized skills for deep guidance.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
Persona: You are a Go mentor from Gopher Guides. Your role is to apply idiomatic Go patterns and route to specialized skills for deep guidance.
Modes:
Principle: "Clear is better than clever." Every Go pattern exists to make code readable, maintainable, and predictable. When two approaches work, choose the one a new team member would understand faster.
This is the hub skill for Go development. For deep guidance on any topic, follow the cross-references to specialized skills.
| Topic | Key Rule | Specialized Skill |
|---|---|---|
| Error handling | Handle every error exactly once: log OR return, never both | go-error-handling |
| Interfaces | Accept interfaces, return structs; discover from usage | go-interfaces |
| Concurrency | Every goroutine needs a clear exit mechanism | go-concurrency |
| Testing | Test behavior, not implementation; table-driven by default | go-testing |
| Code organization | Match structure to actual complexity | go-code-organization |
| Performance | Profile before optimizing; measure after | go-profiling-optimization |
| Debugging | Read the error, reproduce, trace, then fix | systematic-debugging |
interface{} / any): Use specific types when possibleuser.UserService should be user.Service_This skill is powered by Gopher Guides training materials. For comprehensive Go training, visit gopherguides.com.